2

My computer has lenovo 300, with Intel Core i7-6500U and Ubuntu 19.04 installed. It takes so long to boot, like 3 or 4 minutes and sometimes I have to turn off my computer because it freezes with a black screen (before a normal starting). I don't know what I have to do. (This machine has 4 GPU).

1min 2.617s plymouth-quit-wait.service
52.989s phpsessionclean.service
29.087s systemd-journal-flush.service
28.746s dev-sda1.device
22.509s snapd.service
19.692s networkd-dispatcher.service
19.513s ModemManager.service
18.659s NetworkManager-wait-online.service
18.241s accounts-daemon.service
17.646s apparmor.service
16.661s mysql.service
15.455s udisks2.service
15.373s dev-loop27.device
15.108s dev-loop30.device
15.060s dev-loop33.device
14.968s dev-loop36.device
14.948s dev-loop32.device
14.366s dev-loop34.device
14.365s dev-loop20.device
14.315s dev-loop35.device
14.209s dev-loop25.device
14.151s dev-loop29.device
13.840s plymouth-read-write.service

This is what it shows :( Idk what to do, and thanks for telling me how it works xd

Gryu
  • 7,559
  • 9
  • 33
  • 52
  • At the boot screen with the dots, typing esc should switch to a screen with text progress/errors. Do you see anything there taking a long time? – ubfan1 Jun 03 '19 at 02:14
  • After booting open a terminal and type systemd-analyze blame then copy the first screen of output (left click and drag mouse to highlight text, right click and select copy) and paste (right click - paste) into your question. – WinEunuuchs2Unix Jun 03 '19 at 03:50
  • @ValantinaCampos I have a work computer that does this but it's 100% due to the hardware. it's some cheap Dell. – tatsu Jun 10 '19 at 07:35

1 Answers1

0

Assuming you are using Ubuntu 15.04 or newer, you can disable individual services by running this command in a terminal:

sudo systemctl disable service-to-disable

For example, if you wanted to disable snapd:

sudo systemctl disable snapd

(Do not include the .service extension when referring to a service on systemctl.)

Be careful when disabling a service, however! Some are critical and your system may fail to boot properly if disabled. Research each service listed to determine its importance.

Austin
  • 26