web-dev-qa-db-ja.com

起動とログインに時間がかかるUbuntu 16.04

Ubuntu 16.04 64ビットは、ログイン画面からデスクトップまで約20秒かかり、grubからログイン画面まで約20秒かかります。

安全に無効にできるサービスを教えてください。virtualboxとbluetoothを頻繁に使用しません。他のすべてのものはプリンター、wifiなどのように使用されます。
systemd-analyzeの出力

Startup finished in 5.145s (kernel) + 14.138s (userspace) = 19.284s

および出力

systemd-analyze blame


 5.837s accounts-daemon.service
          5.444s dev-sda6.device
          4.864s grub-common.service
          4.105s lightdm.service
          4.075s ModemManager.service
          4.001s preload.service
          3.844s apparmor.service
          3.566s networking.service
          3.468s apport.service
          3.332s ondemand.service
          3.272s rsyslog.service
          3.269s systemd-logind.service
          3.253s alsa-restore.service
          3.241s gpu-manager.service
          3.226s avahi-daemon.service
          3.185s systemd-user-sessions.service
          3.185s pppd-dns.service
          2.508s NetworkManager.service
          2.003s [email protected]
          1.640s plymouth-quit-wait.service
          1.245s colord.service
           712ms systemd-update-utmp.service
           687ms systemd-udevd.service
           669ms udisks2.service
           632ms polkitd.service
           602ms brltty.service
           572ms systemd-localed.service
           567ms systemd-backlight@backlight:intel_backlight.service
           543ms systemd-rfkill.service
           527ms systemd-tmpfiles-setup-dev.service
           519ms thermald.service
           490ms systemd-tmpfiles-setup.service
           464ms systemd-modules-load.service
           454ms systemd-tmpfiles-clean.service
           450ms systemd-timesyncd.service
           428ms systemd-journald.service
           371ms wpa_supplicant.service
           340ms ufw.service
           317ms systemd-random-seed.service
           284ms console-setup.service
           281ms plymouth-start.service
           270ms dev-hugepages.mount
           270ms sys-kernel-debug.mount
           224ms systemd-udev-trigger.service
           177ms dev-mqueue.mount
           168ms plymouth-read-write.service
           165ms upower.service
           131ms dns-clean.service
           103ms systemd-sysctl.service
           102ms dev-disk-by\x2duuid-8bd6db03\x2da87b\x2d4614\x2d927a\x2dd5916f3
            68ms systemd-hostnamed.service
            49ms systemd-journal-flush.service
            47ms kmod-static-nodes.service
            47ms snapd.socket
            32ms systemd-remount-fs.service
            28ms rc-local.service
            10ms resolvconf.service
            10ms rtkit-daemon.service
             9ms systemd-update-utmp-runlevel.service
             6ms ureadahead-stop.service
             4ms sys-fs-Fuse-connections.mount lines 39-61/61 (END)

と同様:

systemd-analyze critical-chain

the time after the unit is active or started is printed after the "@" character.
The time the unit takes to start is printed after the "+" character.

graphical.target @14.124s
└─lightdm.service @10.018s +4.105s
  └─systemd-user-sessions.service @6.731s +3.185s
    └─basic.target @6.625s
      └─sockets.target @6.625s
        └─snapd.socket @6.576s +47ms
          └─sysinit.target @6.574s
            └─swap.target @6.574s
              └─dev-disk-by\x2duuid-8bd6db03\x2da87b\x2d4614\x2d927a\x2dd5916f3c
                └─dev-disk-by\x2duuid-8bd6db03\x2da87b\x2d4614\x2d927a\x2dd5916f
lines 1-13/13 (END)

私は7200 RPMのHDDを使用しています、ブート時間は大丈夫だと思いますが、ログイン画面の後、空白の画面で20秒経過する必要があります、ORCA、BLUETOOTH、バックアップモニター、アクセシビリティなどのいくつかのスタートアップアイテムをすでに無効にしています個人ファイルの共有やユーザーフォルダの更新など、まだ何も改善されていない、犯人を診断して治療する方法。

18
Kanhiya

いくつかの未使用の依存関係と孤立パッケージを削除してみてください。これは役立ちます。
私の場合はうまくいきました。実行:

Sudo apt autoremove && Sudo apt autoclean

また、GtkorphanSudo apt-get install gtkorphan)をインストールして、他のアプリによって残されたすべての孤立パッケージと依存関係を削除できます。

5
Collin