View linux boot time


View boot time:

systemd-analyze

View boot time by service

systemd-analyze blame


To disable a service:
sudo systemctl disable NetworkManager-wait-online.service 

To enable:
sudo systemctl enable NetworkManager-wait-online.service 

 

Apt only upgrade selected packages

 apt list --upgradable | cut -d"/" -f1 > /tmp/apt pico /tmp/apt cat /tmp/apt | tr "\n" " " apt install --on...

Mais vistos