這篇文章主要為大家展示了“Linux中沒(méi)有rc.local文件怎么辦”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“Linux中沒(méi)有rc.local文件怎么辦”這篇文章吧。
成都創(chuàng)新互聯(lián)公司是一家專注于做網(wǎng)站、成都網(wǎng)站建設(shè)與策劃設(shè)計(jì),宿城網(wǎng)站建設(shè)哪家好?成都創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設(shè)十載,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:宿城等地區(qū)。宿城做網(wǎng)站價(jià)格咨詢:18980820575
比較新的Linux發(fā)行版已經(jīng)沒(méi)有rc.local文件了。因?yàn)橐呀?jīng)將其服務(wù)化了。
解決方法:
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、添加啟動(dòng)服務(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. # 下面這條是要開(kāi)機(jī)啟動(dòng)的命令 /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中沒(méi)有rc.local文件怎么辦”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!