After installing Ubuntu 16.04 on my computer to start up my PC takes a lot of time, why is this happening?
Asked
Active
Viewed 49 times
1 Answers
2
This systemd
command will sort services with their execution time.
systemd-analyze blame
You can then stop unwanted services by executing:
systemctl stop service_name
To disable it from starting on boot(startup) execute:
systemctl disable service_name
-
Good answer to a crap question... Could you add how to disable services and drop me a comment and I'll come back and upvote! – Fabby Jan 16 '17 at 19:51
-
@Fabby
systemctl stop $some_service
. To disable it from starting on boot :systemctl disable $some_service
– fugitive Jan 16 '17 at 21:17 -
1I'm pretty sure @Fabby meant for you to add the info by [edit] into your answer. If you do, ping me as well. – Elder Geek Jan 16 '17 at 21:19
-
-
1You should be apologizing to @Fabby who did your work for you, not me. ;-) – Elder Geek Jan 16 '17 at 21:30