You are not logged in.

#1 2021-12-28 15:30:03

MyUsername123
Member
Registered: 2021-12-28
Posts: 9

[SOLVED] How to troubleshoot userspace startup?

Hello guys. Arch linux takes too long to start, userspace takes 90s+. Is there the way to find a process that slows down startup?

 $ systemd-analyze critical-chain
The time when unit became active or started is printed after the "@" character.
The time the unit took to start is printed after the "+" character.

graphical.target @1min 30.397s
└─lightdm.service @1min 30.382s +14ms
  └─systemd-user-sessions.service @1min 30.322s +58ms
    └─network.target @1min 30.321s
      └─NetworkManager.service @477ms +64ms
        └─dbus.service @476ms
          └─basic.target @475ms
            └─sockets.target @475ms
              └─dbus.socket @475ms
                └─sysinit.target @474ms
                  └─systemd-backlight@backlight:amdgpu_bl0.service @3.397s +3ms
                    └─system-systemd\x2dbacklight.slice @2.833s
                      └─system.slice @170ms
                        └─-.slice @170ms
 $ systemd-analyze blame
549ms systemd-rfkill.service
334ms systemd-random-seed.service
208ms systemd-journal-flush.service
152ms upower.service
125ms dev-nvme0n1p4.device
 70ms user@1000.service
 69ms systemd-logind.service
 64ms NetworkManager.service
 59ms ldconfig.service
 58ms systemd-user-sessions.service
 45ms polkit.service
 39ms systemd-udev-trigger.service
 39ms systemd-journald.service
 29ms systemd-udevd.service
 28ms systemd-tmpfiles-clean.service
 24ms modprobe@drm.service
 22ms systemd-tmpfiles-setup.service
 18ms wpa_supplicant.service
 17ms systemd-fsck@dev-disk-by\x2duuid-55352f8f\x2d2619\x2d4e6d\x2da349\x2da32cb0fd4883.service
 14ms lightdm.service
 13ms systemd-tmpfiles-setup-dev.service
  9ms systemd-sysusers.service
  8ms modprobe@fuse.service
  8ms systemd-journal-catalog-update.service
  8ms dev-hugepages.mount
  8ms dev-mqueue.mount
  7ms sys-kernel-debug.mount
  7ms sys-kernel-tracing.mount
  7ms systemd-modules-load.service
  6ms tmp.mount
  6ms kmod-static-nodes.service
  5ms modprobe@configfs.service
  5ms user-runtime-dir@1000.service
  4ms systemd-update-utmp.service
  4ms systemd-backlight@backlight:acpi_video0.service
  4ms home.mount
  3ms systemd-sysctl.service
  3ms systemd-remount-fs.service
  3ms systemd-update-done.service
  3ms systemd-backlight@backlight:amdgpu_bl0.service
  3ms rtkit-daemon.service
  1ms sys-fs-fuse-connections.mount
  1ms sys-kernel-config.mount
 $ systemd-analyze      
Startup finished in 12.315s (firmware) + 17.147s (loader) + 1.275s (kernel) + 1min 30.397s (userspace) = 2min 1.136s 
graphical.target reached after 1min 30.397s in userspace

systemd-analyze plot  SVG image:
https://svgshare.com/i/d8x.svg

Thanks for your attention

Last edited by MyUsername123 (2021-12-28 20:07:42)

Offline

#2 2021-12-28 15:57:38

Trilby
Inspector Parrot
Registered: 2011-11-29
Posts: 30,493
Website

Re: [SOLVED] How to troubleshoot userspace startup?

Criticial chain clearly shows that it's the network initialization.  Is there a problem?  Your WM/DE can be up long before systemd will report the graphical target is complete (particularly when networking tools are in the dependency chain for graphical target).


"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman

Offline

#3 2021-12-28 16:04:47

MyUsername123
Member
Registered: 2021-12-28
Posts: 9

Re: [SOLVED] How to troubleshoot userspace startup?

Trilby wrote:

Criticial chain clearly shows that it's the network initialization.  Is there a problem?  Your WM/DE can be up long before systemd will report the graphical target is complete (particularly when networking tools are in the dependency chain for graphical target).

I tried to start up with disabled NetworkManager.service, nothing changes

Offline

#4 2021-12-28 16:06:39

Trilby
Inspector Parrot
Registered: 2011-11-29
Posts: 30,493
Website

Re: [SOLVED] How to troubleshoot userspace startup?

Nonsense.  It definitely changes - if you get the exact same output from those commands, then networkmanager wasn't actually disabled.

But that's all beside the point.  Why would you disable networkmanager?  Isn't that what you use for networking?

That said, given that it is really 1 minute 30 seconds, I gather a service process is timing out and failing (as 90s is the default for this).  What's the output of `systemctl status network.target`?

Last edited by Trilby (2021-12-28 16:08:52)


"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman

Offline

#5 2021-12-28 16:17:35

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,153

Re: [SOLVED] How to troubleshoot userspace startup?

Disable the wpa_supplicant.service …

Offline

#6 2021-12-28 16:27:37

MyUsername123
Member
Registered: 2021-12-28
Posts: 9

Re: [SOLVED] How to troubleshoot userspace startup?

I meant that system keeps booting 90 seconds, i didn't have internet connection when NM was disabled etc. Later i deleted it and still had 90s boot time.

 $ sudo systemctl status network.target
[sudo] password for username: 
● network.target - Network
     Loaded: loaded (/usr/lib/systemd/system/network.target; static)
     Active: active since Tue 2021-12-28 17:22:40 CET; 1min 42s ago
       Docs: man:systemd.special(7)
             https://www.freedesktop.org/wiki/Software/systemd/NetworkTarget

Dec 28 17:22:40 MyPC systemd[1]: Reached target Network.

Offline

#7 2021-12-28 16:44:42

MyUsername123
Member
Registered: 2021-12-28
Posts: 9

Re: [SOLVED] How to troubleshoot userspace startup?

seth wrote:

Disable the wpa_supplicant.service …

also did this (renamed this service).
I think i should try Systemctl Status every process that shows Systemd-analyze Plot and find the process that is not launched, may be try to disable it

Offline

#8 2021-12-28 16:45:53

Trilby
Inspector Parrot
Registered: 2011-11-29
Posts: 30,493
Website

Re: [SOLVED] How to troubleshoot userspace startup?

MyUsername123 wrote:

I meant that system keeps booting 90 seconds

Is this just what you are seeing in the systemd-analyze output, or are you actually timing it with a watch / wallclock?  Are you actually prevented from logging in and using your GUI for 90 seconds?

Typically one can log in and use the system even if some remaining processes are continuing.  Systemd-analyze reports the time until all of these background processes finish, not the time until you are able to use your system.

But again, 90s seems like too much of a coincidence - some service is likely failing / timing out.  Unfortunately debugging systemd has always seemed to be black magic to me.  Hopefully others can give more specific diagnostics - but if it were me I'd check the journal and check the status of all services to find which one is timing out.

Last edited by Trilby (2021-12-28 16:47:11)


"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman

Offline

#9 2021-12-28 16:47:05

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,153

Re: [SOLVED] How to troubleshoot userspace startup?

renamed this service

https://wiki.archlinux.org/title/Systemd#Using_units

Please post a complete system journal and name the tutorial you followed to install archlinux.

Offline

#10 2021-12-28 16:50:58

apaz
Member
Registered: 2018-07-23
Posts: 130

Re: [SOLVED] How to troubleshoot userspace startup?

From the systemd-analyze plot you can see that "network.target" does not start until the activation of "sys-devices-pci0000:00-0000:00:08.1-0000:04:00.4-usb3-3\x2d2-3\x2d2:1.0-net-wlan1.device" (?) is completed. Try starting without this device to see if there is an improvement.
You can also try the command:

systemd-analyze dot ‘network.target’ | dot -Tsvg > name.svg

It requires the installation of "dot" and "graphviz".

Offline

#11 2021-12-28 17:47:46

MyUsername123
Member
Registered: 2021-12-28
Posts: 9

Re: [SOLVED] How to troubleshoot userspace startup?

apaz wrote:
systemd-analyze dot ‘network.target’ | dot -Tsvg > name.svg

It requires the installation of "dot" and "graphviz".

https://svgshare.com/i/d98.svg

Offline

#12 2021-12-28 17:59:21

MyUsername123
Member
Registered: 2021-12-28
Posts: 9

Re: [SOLVED] How to troubleshoot userspace startup?

apaz wrote:

From the systemd-analyze plot you can see that "network.target" does not start until the activation of "sys-devices-pci0000:00-0000:00:08.1-0000:04:00.4-usb3-3\x2d2-3\x2d2:1.0-net-wlan1.device" (?) is completed. Try starting without this device to see if there is an improvement.

how can i disable it?

$ systemctl status sys-devices-pci0000:00-0000:00:08.1-0000:04:00.4-usb3-3\x2d2-3\x2d2:1.0-net-wlan1.device
○ sys-devices-pci0000:00-0000:00:08.1-0000:04:00.4-usb3-3x2d2-3x2d2:1.0-net-wlan1.device - /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3x2d2/3x2d2:1.0/net/wlan1
     Loaded: loaded
     Active: inactive (dead)

UPD: I've unplugged everything, here is the new plot:
https://svgshare.com/i/d8q.svg

Last edited by MyUsername123 (2021-12-28 18:13:34)

Offline

#13 2021-12-28 18:28:26

MyUsername123
Member
Registered: 2021-12-28
Posts: 9

Re: [SOLVED] How to troubleshoot userspace startup?

Trilby wrote:
MyUsername123 wrote:

I meant that system keeps booting 90 seconds

Is this just what you are seeing in the systemd-analyze output, or are you actually timing it with a watch / wallclock?  Are you actually prevented from logging in and using your GUI for 90 seconds?

It is approximate time. Yes.

Trilby wrote:

Typically one can log in and use the system even if some remaining processes are continuing.  Systemd-analyze reports the time until all of these background processes finish, not the time until you are able to use your system.

It sticks on a black screen, where is written that systemd-backlight@backlight:acpi_video0.service failed to start, and white cursor blanks. I can't even use other TTYs

Offline

#14 2021-12-28 18:33:27

MyUsername123
Member
Registered: 2021-12-28
Posts: 9

Re: [SOLVED] How to troubleshoot userspace startup?

Here is some of journalctl:

-- Boot b400e5ff59804226912282dbf906f660 --
Dec 28 19:06:43 MyPC systemd-xdg-autostart-generator[503]: /home/username/.config/autostart/nm-applet.desktop:9: Unknown key name 'RunHook' in section 'Desktop Entry', ignoring.
Dec 28 19:06:43 MyPC systemd[498]: Queued start job for default target Main User Target.
Dec 28 19:06:43 MyPC systemd[498]: Created slice User Application Slice.
Dec 28 19:06:43 MyPC systemd[498]: Reached target Paths.
Dec 28 19:06:43 MyPC systemd[498]: Reached target Timers.
Dec 28 19:06:43 MyPC systemd[498]: Starting D-Bus User Message Bus Socket...
Dec 28 19:06:43 MyPC systemd[498]: Listening on GnuPG network certificate management daemon.
Dec 28 19:06:43 MyPC systemd[498]: Listening on GCR ssh-agent wrapper.
Dec 28 19:06:43 MyPC systemd[498]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Dec 28 19:06:43 MyPC systemd[498]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Dec 28 19:06:43 MyPC systemd[498]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Dec 28 19:06:43 MyPC systemd[498]: Listening on GnuPG cryptographic agent and passphrase cache.
Dec 28 19:06:43 MyPC systemd[498]: Listening on p11-kit server.
Dec 28 19:06:43 MyPC systemd[498]: Listening on Sound System.
Dec 28 19:06:43 MyPC systemd[498]: Listening on D-Bus User Message Bus Socket.
Dec 28 19:06:43 MyPC systemd[498]: Reached target Sockets.
Dec 28 19:06:43 MyPC systemd[498]: Reached target Basic System.
Dec 28 19:06:43 MyPC systemd[498]: Reached target Main User Target.
Dec 28 19:06:43 MyPC systemd[498]: Startup finished in 97ms.
Dec 28 19:06:43 MyPC systemd[498]: Started D-Bus User Message Bus.
Dec 28 19:06:44 MyPC dbus-daemon[514]: [session uid=1000 pid=514] Activating via systemd: service name='org.a11y.Bus' unit='at-spi-dbus-bus.service' requested by ':1.4' (uid=1000 pid=510 comm="xfce4-session ")
Dec 28 19:06:44 MyPC systemd[498]: Starting Accessibility services bus...
Dec 28 19:06:44 MyPC dbus-daemon[514]: [session uid=1000 pid=514] Successfully activated service 'org.a11y.Bus'
Dec 28 19:06:44 MyPC systemd[498]: Started Accessibility services bus.
Dec 28 19:06:44 MyPC dbus-daemon[514]: [session uid=1000 pid=514] Activating service name='org.xfce.Xfconf' requested by ':1.6' (uid=1000 pid=510 comm="xfce4-session ")
Dec 28 19:06:44 MyPC dbus-daemon[514]: [session uid=1000 pid=514] Successfully activated service 'org.xfce.Xfconf'
Dec 28 19:06:44 MyPC at-spi-bus-launcher[529]: dbus-daemon[529]: Activating service name='org.a11y.atspi.Registry' requested by ':1.0' (uid=1000 pid=510 comm="xfce4-session ")
Dec 28 19:06:44 MyPC at-spi-bus-launcher[529]: dbus-daemon[529]: Successfully activated service 'org.a11y.atspi.Registry'
Dec 28 19:06:44 MyPC at-spi-bus-launcher[539]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Dec 28 19:06:44 MyPC dbus-daemon[514]: [session uid=1000 pid=514] Activating service name='org.xfce.ScreenSaver' requested by ':1.6' (uid=1000 pid=510 comm="xfce4-session ")
Dec 28 19:06:44 MyPC dbus-daemon[514]: [session uid=1000 pid=514] Successfully activated service 'org.xfce.ScreenSaver'
Dec 28 19:06:44 MyPC systemd[498]: Started GnuPG cryptographic agent and passphrase cache.
Dec 28 19:06:44 MyPC gpg-agent[566]: gpg-agent (GnuPG) 2.2.32 starting in supervised mode.
Dec 28 19:06:44 MyPC gpg-agent[566]: using fd 3 for extra socket (/run/user/1000/gnupg/S.gpg-agent.extra)
Dec 28 19:06:44 MyPC gpg-agent[566]: using fd 4 for std socket (/run/user/1000/gnupg/S.gpg-agent)
Dec 28 19:06:44 MyPC gpg-agent[566]: using fd 5 for ssh socket (/run/user/1000/gnupg/S.gpg-agent.ssh)
Dec 28 19:06:44 MyPC gpg-agent[566]: using fd 6 for browser socket (/run/user/1000/gnupg/S.gpg-agent.browser)
Dec 28 19:06:44 MyPC gpg-agent[566]: listening on: std=4 extra=3 browser=6 ssh=5
Dec 28 19:06:44 MyPC systemd[498]: Started GnuPG cryptographic agent and passphrase cache.
Dec 28 19:06:44 MyPC gpg-agent[569]: gpg-agent (GnuPG) 2.2.32 starting in supervised mode.
Dec 28 19:06:44 MyPC gpg-agent[569]: using fd 3 for extra socket (/run/user/1000/gnupg/S.gpg-agent.extra)
Dec 28 19:06:44 MyPC gpg-agent[569]: using fd 4 for std socket (/run/user/1000/gnupg/S.gpg-agent)
Dec 28 19:06:44 MyPC gpg-agent[569]: using fd 5 for ssh socket (/run/user/1000/gnupg/S.gpg-agent.ssh)
Dec 28 19:06:44 MyPC gpg-agent[569]: using fd 6 for browser socket (/run/user/1000/gnupg/S.gpg-agent.browser)
Dec 28 19:06:44 MyPC gpg-agent[569]: listening on: std=4 extra=3 browser=6 ssh=5
Dec 28 19:06:44 MyPC systemd[498]: Created slice User Core Session Slice.
Dec 28 19:06:44 MyPC systemd[498]: Starting Sound Service...
Dec 28 19:06:44 MyPC pulseaudio[592]: Path Mic ACP LED is not a volume control
Dec 28 19:06:45 MyPC pulseaudio[592]: stat('/etc/pulse/default.pa.d'): No such file or directory
Dec 28 19:06:45 MyPC systemd[498]: Started Sound Service.
Dec 28 19:06:45 MyPC pulseaudio[592]: GetManagedObjects() failed: org.freedesktop.systemd1.NoSuchUnit: Unit dbus-org.bluez.service not found.
Dec 28 19:06:45 MyPC dbus-daemon[514]: [session uid=1000 pid=514] Activating service name='org.freedesktop.thumbnails.Thumbnailer1' requested by ':1.18' (uid=1000 pid=605 comm="Thunar --sm-client-id 2606db125-9937-4692-86ae-5a0")
Dec 28 19:06:45 MyPC tumblerd[631]: Failed to load plugin "tumbler-odf-thumbnailer.so": libgsf-1.so.114: cannot open shared object file: No such file or directory
Dec 28 19:06:45 MyPC tumblerd[631]: Failed to load plugin "tumbler-ffmpeg-thumbnailer.so": libffmpegthumbnailer.so.4: cannot open shared object file: No such file or directory
Dec 28 19:06:45 MyPC tumblerd[631]: Failed to load plugin "tumbler-poppler-thumbnailer.so": libpoppler-glib.so.8: cannot open shared object file: No such file or directory
Dec 28 19:06:45 MyPC tumblerd[631]: Failed to load plugin "tumbler-gepub-thumbnailer.so": libgepub-0.6.so.0: cannot open shared object file: No such file or directory
Dec 28 19:06:45 MyPC tumblerd[631]: Failed to load plugin "tumbler-raw-thumbnailer.so": libopenrawgnome.so.9: cannot open shared object file: No such file or directory
Dec 28 19:06:45 MyPC org.freedesktop.thumbnails.Thumbnailer1[631]: Registered thumbnailer /usr/bin/gdk-pixbuf-thumbnailer -s %s %u %o
Dec 28 19:06:45 MyPC org.freedesktop.thumbnails.Thumbnailer1[631]: Registered thumbnailer heif-thumbnailer -s %s %i %o
Dec 28 19:06:45 MyPC org.freedesktop.thumbnails.Thumbnailer1[631]: Registered thumbnailer /usr/bin/gdk-pixbuf-thumbnailer -s %s %u %o
Dec 28 19:06:45 MyPC dbus-daemon[514]: [session uid=1000 pid=514] Successfully activated service 'org.freedesktop.thumbnails.Thumbnailer1'
Dec 28 19:06:45 MyPC pkexec[720]: pam_unix(polkit-1:session): session opened for user root(uid=0) by (uid=1000)
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "downloadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "forcedDownloadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "downloadingMetadataStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "allocatingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "stalledDownloadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "stalledUploadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "uploadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "forcedUploadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "pausedDownloadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "pausedUploadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "errorStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "missingFilesStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "queuedDownloadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "queuedUploadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "checkingDownloadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "checkingUploadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "checkingResumeDataStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "movingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "unknownStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "downloadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "forcedDownloadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "downloadingMetadataStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "allocatingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "stalledDownloadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "stalledUploadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "uploadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "forcedUploadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "pausedDownloadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "pausedUploadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "errorStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "missingFilesStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "queuedDownloadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "queuedUploadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "checkingDownloadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "checkingUploadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "checkingResumeDataStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "movingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "unknownStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "downloadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "forcedDownloadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "downloadingMetadataStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "allocatingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "stalledDownloadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "stalledUploadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "uploadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "forcedUploadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "pausedDownloadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "pausedUploadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "errorStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "missingFilesStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "queuedDownloadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "queuedUploadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "checkingDownloadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "checkingUploadingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "checkingResumeDataStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "movingStateForeground"
Dec 28 19:06:45 MyPC qbittorrent[645]: TransferListWidget(0x55f335bc46f0)  does not have a property named  "unknownStateForeground"
Dec 28 19:11:25 MyPC dbus-daemon[514]: [session uid=1000 pid=514] Activating via systemd: service name='ca.desrt.dconf' unit='dconf.service' requested by ':1.46' (uid=1000 pid=1005 comm="/usr/lib/firefox/firefox ")
Dec 28 19:11:25 MyPC systemd[498]: Starting User preferences database...
Dec 28 19:11:25 MyPC dbus-daemon[514]: [session uid=1000 pid=514] Successfully activated service 'ca.desrt.dconf'
Dec 28 19:11:25 MyPC systemd[498]: Started User preferences database.
Dec 28 19:15:03 MyPC dbus-daemon[514]: [session uid=1000 pid=514] Activating service name='org.freedesktop.secrets' requested by ':1.36' (uid=1000 pid=676 comm="nm-applet ")
Dec 28 19:15:03 MyPC gnome-keyring-daemon[2026]: couldn't access control socket: /run/user/1000/keyring/control: No such file or directory
Dec 28 19:15:03 MyPC gnome-keyring-d[2026]: couldn't access control socket: /run/user/1000/keyring/control: No such file or directory
Dec 28 19:15:03 MyPC dbus-daemon[514]: [session uid=1000 pid=514] Successfully activated service 'org.freedesktop.secrets'
Dec 28 19:18:18 MyPC pkexec[2076]: pam_unix(polkit-1:session): session opened for user root(uid=0) by (uid=1000)
Dec 28 19:18:18 MyPC pkexec[2081]: pam_unix(polkit-1:session): session opened for user root(uid=0) by (uid=1000)
Dec 28 19:18:18 MyPC pkexec[2087]: pam_unix(polkit-1:session): session opened for user root(uid=0) by (uid=1000)
Dec 28 19:18:18 MyPC pkexec[2092]: pam_unix(polkit-1:session): session opened for user root(uid=0) by (uid=1000)
Dec 28 19:18:18 MyPC pkexec[2097]: pam_unix(polkit-1:session): session opened for user root(uid=0) by (uid=1000)
Dec 28 19:18:18 MyPC pkexec[2102]: pam_unix(polkit-1:session): session opened for user root(uid=0) by (uid=1000)
Dec 28 19:18:19 MyPC pkexec[2107]: pam_unix(polkit-1:session): session opened for user root(uid=0) by (uid=1000)
Dec 28 19:18:19 MyPC pkexec[2112]: pam_unix(polkit-1:session): session opened for user root(uid=0) by (uid=1000)
Dec 28 19:18:19 MyPC pkexec[2117]: pam_unix(polkit-1:session): session opened for user root(uid=0) by (uid=1000)
Dec 28 19:18:19 MyPC pkexec[2122]: pam_unix(polkit-1:session): session opened for user root(uid=0) by (uid=1000)
Dec 28 19:18:19 MyPC pkexec[2127]: pam_unix(polkit-1:session): session opened for user root(uid=0) by (uid=1000)
Dec 28 19:18:19 MyPC pkexec[2134]: pam_unix(polkit-1:session): session opened for user root(uid=0) by (uid=1000)
Dec 28 19:18:19 MyPC pkexec[2139]: pam_unix(polkit-1:session): session opened for user root(uid=0) by (uid=1000)
Dec 28 19:20:18 MyPC dbus-daemon[514]: [session uid=1000 pid=514] Activating service name='org.freedesktop.thumbnails.Thumbnailer1' requested by ':1.18' (uid=1000 pid=605 comm="Thunar --sm-client-id 2606db125-9937-4692-86ae-5a0")
Dec 28 19:20:18 MyPC tumblerd[2238]: Failed to load plugin "tumbler-odf-thumbnailer.so": libgsf-1.so.114: cannot open shared object file: No such file or directory
Dec 28 19:20:18 MyPC tumblerd[2238]: Failed to load plugin "tumbler-ffmpeg-thumbnailer.so": libffmpegthumbnailer.so.4: cannot open shared object file: No such file or directory
Dec 28 19:20:18 MyPC tumblerd[2238]: Failed to load plugin "tumbler-poppler-thumbnailer.so": libpoppler-glib.so.8: cannot open shared object file: No such file or directory
Dec 28 19:20:18 MyPC tumblerd[2238]: Failed to load plugin "tumbler-gepub-thumbnailer.so": libgepub-0.6.so.0: cannot open shared object file: No such file or directory
Dec 28 19:20:18 MyPC tumblerd[2238]: Failed to load plugin "tumbler-raw-thumbnailer.so": libopenrawgnome.so.9: cannot open shared object file: No such file or directory
Dec 28 19:20:18 MyPC org.freedesktop.thumbnails.Thumbnailer1[2238]: Registered thumbnailer /usr/bin/gdk-pixbuf-thumbnailer -s %s %u %o
Dec 28 19:20:18 MyPC org.freedesktop.thumbnails.Thumbnailer1[2238]: Registered thumbnailer heif-thumbnailer -s %s %i %o
Dec 28 19:20:18 MyPC org.freedesktop.thumbnails.Thumbnailer1[2238]: Registered thumbnailer /usr/bin/gdk-pixbuf-thumbnailer -s %s %u %o
Dec 28 19:20:18 MyPC dbus-daemon[514]: [session uid=1000 pid=514] Successfully activated service 'org.freedesktop.thumbnails.Thumbnailer1'
Dec 28 19:26:40 MyPC dbus-daemon[514]: [session uid=1000 pid=514] Activating service name='org.freedesktop.thumbnails.Thumbnailer1' requested by ':1.18' (uid=1000 pid=605 comm="Thunar --sm-client-id 2606db125-9937-4692-86ae-5a0")
Dec 28 19:26:40 MyPC tumblerd[2901]: Failed to load plugin "tumbler-odf-thumbnailer.so": libgsf-1.so.114: cannot open shared object file: No such file or directory
Dec 28 19:26:40 MyPC tumblerd[2901]: Failed to load plugin "tumbler-ffmpeg-thumbnailer.so": libffmpegthumbnailer.so.4: cannot open shared object file: No such file or directory
Dec 28 19:26:40 MyPC tumblerd[2901]: Failed to load plugin "tumbler-poppler-thumbnailer.so": libpoppler-glib.so.8: cannot open shared object file: No such file or directory
Dec 28 19:26:40 MyPC tumblerd[2901]: Failed to load plugin "tumbler-gepub-thumbnailer.so": libgepub-0.6.so.0: cannot open shared object file: No such file or directory
Dec 28 19:26:40 MyPC tumblerd[2901]: Failed to load plugin "tumbler-raw-thumbnailer.so": libopenrawgnome.so.9: cannot open shared object file: No such file or directory
Dec 28 19:26:40 MyPC org.freedesktop.thumbnails.Thumbnailer1[2901]: Registered thumbnailer /usr/bin/gdk-pixbuf-thumbnailer -s %s %u %o
Dec 28 19:26:40 MyPC org.freedesktop.thumbnails.Thumbnailer1[2901]: Registered thumbnailer heif-thumbnailer -s %s %i %o
Dec 28 19:26:40 MyPC org.freedesktop.thumbnails.Thumbnailer1[2901]: Registered thumbnailer /usr/bin/gdk-pixbuf-thumbnailer -s %s %u %o
Dec 28 19:26:40 MyPC dbus-daemon[514]: [session uid=1000 pid=514] Successfully activated service 'org.freedesktop.thumbnails.Thumbnailer1'

Offline

#15 2021-12-28 19:02:03

Trilby
Inspector Parrot
Registered: 2011-11-29
Posts: 30,493
Website

Re: [SOLVED] How to troubleshoot userspace startup?

MyUsername123 wrote:

It sticks on a black screen, where is written that systemd-backlight@backlight:acpi_video0.service failed to start, and white cursor blanks. I can't even use other TTYs

*headdesk*  Ya' think you might have mentioned all that from the start.

But really this contradicts what you've been saying from the start.  Is there a 90 second delay to get into your GUI or do you not get there at all?

Last edited by Trilby (2021-12-28 19:02:18)


"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman

Offline

#16 2021-12-28 19:33:11

MyUsername123
Member
Registered: 2021-12-28
Posts: 9

Re: [SOLVED] How to troubleshoot userspace startup?

Trilby wrote:
MyUsername123 wrote:

It sticks on a black screen, where is written that systemd-backlight@backlight:acpi_video0.service failed to start, and white cursor blanks. I can't even use other TTYs

*headdesk*  Ya' think you might have mentioned all that from the start.

But really this contradicts what you've been saying from the start.  Is there a 90 second delay to get into your GUI or do you not get there at all?

It starts as usual linux should start, then goes to that screen:
https://i116.fastpic.org/big/2021/1228/ … a03369.jpg
waits here ~90 seconds (if i press ctrl+alt+f2, i will see just black screen with blanking cursor, no input prompt), then goes to lightdm, and then to xfce. The system works fine
UPD I thought that GUI is always on ctrl+alt+f1, but he is on ctrl+alt+f7. I pressed accidentally ctrl+alt+f1 and found this:
https://i116.fastpic.org/big/2021/1228/ … 3e03f1.jpg
UPD 2 i deleted the netctl profile (i use network manager, i thought i've deleted it) and it solved my problem

Last edited by MyUsername123 (2021-12-28 20:12:13)

Offline

#17 2021-12-28 20:07:59

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 25,296

Re: [SOLVED] How to troubleshoot userspace startup?

That means you have a networking daemon enabled that tries to set up a device that doesn't exist or is handled by NM. Disable all netctl services that are currently active run a

find /etc/systemd -type l -exec test -f {} \; -print | awk -F'/' '{ printf ("%-40s | %s\n", $(NF-0), $(NF-1)) }' | sort -f

to find out what else might be active. The only thing network related in that list should be NetworkManager

Edit: Ah you found it.

Last edited by V1del (2021-12-28 20:08:33)

Offline

Board footer

Powered by FluxBB