這篇文章主要講解了“Linux中的rc.local文件丟失了怎么辦”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“Linux中的rc.local文件丟失了怎么辦”吧!
成都創(chuàng)新互聯(lián)公司成都網(wǎng)站建設(shè)按需定制制作,是成都網(wǎng)站營銷公司,為成都活動板房提供網(wǎng)站建設(shè)服務(wù),有成熟的網(wǎng)站定制合作流程,提供網(wǎng)站定制設(shè)計服務(wù):原型圖制作、網(wǎng)站創(chuàng)意設(shè)計、前端HTML5制作、后臺程序開發(fā)等。成都網(wǎng)站建設(shè)熱線:18982081108
解決方法:
1、設(shè)置rc-local.service
sudo vim /etc/systemd/system/rc-local.service [Unit] Description=/etc/rc.local Compatibility ConditionPathExists=/etc/rc.local [Service] Type=forking ExecStart=/etc/rc.local start TimeoutSec=0 StandardOutput=tty RemainAfterExit=yes SysVStartPriority=99 [Install] WantedBy=multi-user.target
2、激活rc-local.service
sudo systemctl enable rc-local.service
3、添加啟動服務(wù)
手工創(chuàng)建或者拷貝已有的/etc/rc.local,并賦予執(zhí)行權(quán)限
#!/bin/sh -e # # rc.local # # This script is executed at the end of each multiuser runlevel. # Make sure that the script will "exit 0" on success or any other # value on error. # # In order to enable or disable this script just change the execution # bits. # # By default this script does nothing. # 下面這條是要開機(jī)啟動的命令/home/selfcs/anaconda3/bin/Python /home/selfcs/t.py > /home/selfcs/auto.log exit 0 #給予腳本執(zhí)行權(quán)限 sudo chmod +x /etc/rc.local
感謝各位的閱讀,以上就是“Linux中的rc.local文件丟失了怎么辦”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對Linux中的rc.local文件丟失了怎么辦這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!