首頁 > 軟體

Ubuntu開機不執行re.local裡的命令

2020-06-16 17:45:24

Ubuntu開機不執行re.local裡的命令

#ls -al /bin/sh

lrwxrwxrwx 1 root root 4 2009-12-11 06:04 /bin/sh -> dash

是的看出,Ubuntu預設的把sh連線到dash,導致不執行rc.local這個shell

解決:

1.執行dpkg-reconfigure dash    選擇no

2.軟連線

rm /bin/sh

ln -s /bin/bash /bin/sh


IT145.com E-mail:sddin#qq.com