ubuntu mate 改善關機速度

每次樹莓的ubuntu mate在關機的時候,都會顯示一個逾期時間

要等1分半才會關機,導致關機時間都好久。

解法:

只要去修改system.conf裡的設定就可以了

開啟Terminal:

sudo gedit/etc/systemd/system.conf

打開後把
#DefaultTimeoutStartSec=90s
#DefaultTimeoutStopSec=90s

改成自己想要的等待時間,比如說30秒


#DefaultTimeoutStartSec=30s
#DefaultTimeoutStopSec=30s

改完後記得存檔後離開。

另外,在開機期間如果有連網路,關機的時候也會因network-manager的關係造成關機速度變慢。

sudo gedit /etc/init/network-manager.conf

並在

top on stopping dbus下面加入

kill timeout 1

加入這行的意思是,縮短Upstart在關閉network-manager進程之前的等待時間到1秒

存檔並關閉,記得重開機後這些指令才會生效喔

PS1: 如果想知道開機時啟動哪些東西花了多少時間,可以下指令systemd-analyze blame

PS2: 顯示系統硬體規格的指令inxi -ACDMNSG

參考 references:

主要參考
http://fygul.blogspot.com/2017/10/ubuntu-slow-shutdown.html

DefaultTimeout指令
https://ubuntu-mate.community/t/help-with-slow-boot-and-shutdown-of-16-04/5622

system-analyze指令
http://manpages.ubuntu.com/manpages/disco/en/man1/systemd-analyze.1.html

inxi指令
http://manpages.ubuntu.com/manpages/xenial/en/man1/inxi.1.html

留言

熱門文章