赞
踩
在终端中输入:nano /etc/rc.local回车进入rc.local在文本
在文本的exit 0前添加需要启动的程序。
脚本启动方式:/home/find/start.sh start
python程序启动方式:python3 /home/find/b999.py
c/c++程序启动方式:sudo /home/program/main
重启:reboot后,ps -ef|less查看是否程序已经启动。
脚本编辑中:
如上述将所需要启动的程序放置在其中,保存后退出,执行
sudo chmod 777 ./start.sh运行命令后,start.sh的权限就被修改为777(可读可写可执行)。否则脚本将无法被执行。
总结:
将要执行的程序放置于/etc/rc.local中exit 0前即可。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。