每当我启动我的机器(Linux)时,我都想要一些通知。所以,我创建了一个 php 脚本,它有一些逻辑,我想在我登录机器时在浏览器中查看脚本的输出。
我在 /etc/rc.local 中添加了我的 php 文件。但是我的浏览器在启动后没有打开。可能是它在启动后无法找到 google-chrome 的实例。
任何其他建议,以便我可以在登录后立即弹出?
我的 php 脚本( tasks.php ):
$popUp = "Test task";
$popUp = "<html>$popUp</html>";
$fp = fopen("<path_to_file>/tasks.htm","w");
fwrite($fp,$popUp);
fclose($fp);
exec("google-chrome <path_to_file>/tasks.htm");
/etc/rc.local:
#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.
php <path_to_file>/tasks.php