linux之开机自启文件

1、编写要实现开机自启的文件。~vim  xxx.py

2、找到该文件的绝对路径。pwd

3、打开/etc/rc.d/rc.local文件 sudo vim /etc/rc.d/rc.local

4、编写内容。

以py文件为例:

#!/bin/bash
cd /home/xxx/nanhu
/home/xxx/anaconda3/bin/python usemodel.py >> /home/xxx/1.txt &//输出重定向到1.txt用来验证是否自启动成功

5、改变rc.local的权限。

sudo chmod + x rc.local

6、最后就可以重新启动,然后查看/home/xxx/1.txt里的内容,验证是否成功。

shutdown -r now  //重启
cat /home/xxx/1.txt

 

linux之开机自启文件

上一篇:eclipse——exec-maven-plugin和svn-revision-number-maven-plugin插件报错:Plugin execution not covered by lifecycle configuration


下一篇:Linux 提示切换成中文