-2

After installing Ubuntu 16.04 on my computer to start up my PC takes a lot of time, why is this happening?

Poran
  • 101

1 Answers1

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
Fabby
  • 34,259
fugitive
  • 1,246