准备需要启动执行的shell。
例如:
-PC:~$ sudo vi auto-start-shell.sh
#!/bin/bash
echo "系统启动shell自动运行时间:$(date)" >> /home/{用户名}/Desktop/ceshi/cs.txt
exit
方案1:
1、创建脚本启动文件。
-PC:~$ sudo vi auto-start-shell.desktop
[Desktop Entry]
Encoding=UTF-8
Exec=/usr/bin/auto-start-shell.sh
Type=Application
Name=auto-start-shell
2、将shell脚本放到/usr/bin/,脚本启动文件放到/etc/xdg/autostart/。
sudo cp -f auto-start-shell.sh /usr/bin/
sudo cp -f auto-start-shell.desktop /etc/xdg/autostart/
3、重启系统三次,验证shell执行情况,本例查看~/Desktop/ceshi/cs.txt
4、说明:
该方法在需要用户登陆时,在登陆后才会执行。
方案2:
1、配置开机启动服务。
-PC:~$ sudo vim /etc/systemd/system/rc-local.service
增加以下内容:
[Install]
WantedBy=multi-user.target
Alias=rc-local.service
2、配置/etc/rc.local文件。(不存在则手动创建)
文件中配置需要执行的内容。如:
#!/bin/bash
/usr/bin/auto-start-shell.sh
exit 0
3、启动rc-local服务
sudo systemctl start rc-local
sudo systemctl status rc-local
4、重启系统验证是否生效。文章来源:https://www.toymoban.com/news/detail-542147.html
5、说明:
该方法默认执行用户为root,如需要普通用户执行需要在脚本中切换用户。文章来源地址https://www.toymoban.com/news/detail-542147.html
到了这里,关于shell脚本开机自启动运行的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!