You are not logged in.

#1 2024-05-05 16:41:49

ultraaziz
Member
Registered: 2024-05-05
Posts: 18

[SOLVED] KDE plasma not starting on boot, arch boots without a de

I've been using KDE and SDDM for a while but today after rebooting it doesn't start at boot, startplasma-x11 doesn't work while startplasma-wayland works just fine, the desktop environment works as expected after starting manually but it doesn't start up on its own, here's my .xinitrc:

 
#!/bin/sh

userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap

# merge in defaults and keymaps

if [ -f $sysresources ]; then






    xrdb -merge $sysresources

fi

if [ -f $sysmodmap ]; then
    xmodmap $sysmodmap
fi

if [ -f "$userresources" ]; then







    xrdb -merge "$userresources"

fi

if [ -f "$usermodmap" ]; then
    xmodmap "$usermodmap"
fi

# start some nice programs

if [ -d /etc/X11/xinit/xinitrc.d ] ; then
 for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
  [ -x "$f" ] && . "$f"
 done
 unset f
fi

twm &
xclock -geometry 50x50-1+1 &
xterm -geometry 80x50+494+51 &
xterm -geometry 80x20+494-0 &
export DESKTOP_SESSION=plasma
exec startplasma-wayland

EDIT:
Xorg was fixed by deleting the configuration file at /etc/X11/xorg.conf

and sddm was fixed by running this command:

 systemctl set-default graphical.target

Last edited by ultraaziz (2024-05-14 08:08:47)

Offline

#2 2024-05-05 19:46:53

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

Re: [SOLVED] KDE plasma not starting on boot, arch boots without a de

Your .xinitrc is not used by SDDM and using .xinitrc to start a wayland session is logically quite counter productive. What exactly doesn't work? Boot into a "not working" plasma environment and post

sudo journalctl -b

as well as your xorg log: https://wiki.archlinux.org/title/Xorg#General

Offline

#3 2024-05-05 20:25:15

ultraaziz
Member
Registered: 2024-05-05
Posts: 18

Re: [SOLVED] KDE plasma not starting on boot, arch boots without a de

V1del wrote:

Your .xinitrc is not used by SDDM and using .xinitrc to start a wayland session is logically quite counter productive. What exactly doesn't work? Boot into a "not working" plasma environment and post

sudo journalctl -b

as well as your xorg log: https://wiki.archlinux.org/title/Xorg#General

it's not that it isn't working, trying to start an x11 session gives this error:

 $DISPLAY is not set or cannot connect to the X server 

Offline

#4 2024-05-05 21:19:59

Scimmia
Fellow
Registered: 2012-09-01
Posts: 13,655

Re: [SOLVED] KDE plasma not starting on boot, arch boots without a de

Check out

https://wiki.archlinux.org/title/Xinit

You do not want to be running startplasma-wayland there, and you do not want to be running twm or likely xterm or xclock.

Offline

#5 2024-05-06 13:32:06

ultraaziz
Member
Registered: 2024-05-05
Posts: 18

Re: [SOLVED] KDE plasma not starting on boot, arch boots without a de

V1del wrote:

Your .xinitrc is not used by SDDM and using .xinitrc to start a wayland session is logically quite counter productive. What exactly doesn't work? Boot into a "not working" plasma environment and post

sudo journalctl -b

as well as your xorg log: https://wiki.archlinux.org/title/Xorg#General

i just tried to get the log and it doesn't exist

Offline

#6 2024-05-06 13:58:31

ultraaziz
Member
Registered: 2024-05-05
Posts: 18

Re: [SOLVED] KDE plasma not starting on boot, arch boots without a de

Scimmia wrote:

Check out

https://wiki.archlinux.org/title/Xinit

You do not want to be running startplasma-wayland there, and you do not want to be running twm or likely xterm or xclock.

replaced it with startplasma-x11 and removed twm, xterm and xclock, still the same thing

Last edited by ultraaziz (2024-05-06 13:58:49)

Offline

#7 2024-05-06 14:21:30

Head_on_a_Stick
Member
From: The Wirral
Registered: 2014-02-20
Posts: 8,999
Website

Re: [SOLVED] KDE plasma not starting on boot, arch boots without a de

ultraaziz wrote:

i just tried to get the log and it doesn't exist

Please share the full error message.

Last edited by Head_on_a_Stick (2024-05-06 14:22:00)


Jin, Jîyan, Azadî

Offline

#8 2024-05-06 15:21:02

Scimmia
Fellow
Registered: 2012-09-01
Posts: 13,655

Re: [SOLVED] KDE plasma not starting on boot, arch boots without a de

ultraaziz wrote:

replaced it with startplasma-x11 and removed twm, xterm and xclock, still the same thing

Same what thing? So far you've talked about SDDM, startx/xinit, startplasma-x11, and startplasma-wayland, I have no idea what you're actually doing at this point.

Offline

#9 2024-05-06 16:15:14

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 73,878

Re: [SOLVED] KDE plasma not starting on boot, arch boots without a de

V1del wrote:

Boot into a "not working" plasma environment and post

sudo journalctl -b

as well as your xorg log: https://wiki.archlinux.org/title/Xorg#General

Offline

#10 2024-05-07 05:40:42

ultraaziz
Member
Registered: 2024-05-05
Posts: 18

Re: [SOLVED] KDE plasma not starting on boot, arch boots without a de

Scimmia wrote:
ultraaziz wrote:

replaced it with startplasma-x11 and removed twm, xterm and xclock, still the same thing

Same what thing? So far you've talked about SDDM, startx/xinit, startplasma-x11, and startplasma-wayland, I have no idea what you're actually doing at this point.

this error:

 $DISPLAY is not set or cannot connect to the X server 

Offline

#11 2024-05-07 05:47:27

ultraaziz
Member
Registered: 2024-05-05
Posts: 18

Re: [SOLVED] KDE plasma not starting on boot, arch boots without a de

Head_on_a_Stick wrote:
ultraaziz wrote:

i just tried to get the log and it doesn't exist

Please share the full error message.

 grep: Xorg.0.log: No such file or directory 

I also tried a bunch of numbers not just 0 and they still don't exist

Offline

#12 2024-05-07 05:54:06

Head_on_a_Stick
Member
From: The Wirral
Registered: 2014-02-20
Posts: 8,999
Website

Re: [SOLVED] KDE plasma not starting on boot, arch boots without a de

Your reply makes no sense.

We need to see your systemd journal contents.

Please run this command as your root user:

journalctl --no-p

Then post the full output from that command here. Thanks.


Jin, Jîyan, Azadî

Offline

#13 2024-05-07 06:05:32

ultraaziz
Member
Registered: 2024-05-05
Posts: 18

Re: [SOLVED] KDE plasma not starting on boot, arch boots without a de

Head_on_a_Stick wrote:

Your reply makes no sense.

We need to see your systemd journal contents.

Please run this command as your root user:

journalctl --no-p

Then post the full output from that command here. Thanks.

i know this is a dumb question but I should run it in tty and not in the wayland environment right?

Offline

#14 2024-05-07 06:15:32

Head_on_a_Stick
Member
From: The Wirral
Registered: 2014-02-20
Posts: 8,999
Website

Re: [SOLVED] KDE plasma not starting on boot, arch boots without a de

If you only have access to a TTY follow https://wiki.archlinux.org/title/List_o … ted_client to share information from there.

Running the command from Wayland is fine, if that's easier for you.


Jin, Jîyan, Azadî

Offline

#15 2024-05-07 06:24:02

ultraaziz
Member
Registered: 2024-05-05
Posts: 18

Re: [SOLVED] KDE plasma not starting on boot, arch boots without a de

Head_on_a_Stick wrote:

If you only have access to a TTY follow https://wiki.archlinux.org/title/List_o … ted_client to share information from there.

Running the command from Wayland is fine, if that's easier for you.

I did run it on wayland and here's the output:

  
May 07 08:58:35 AzizArch systemd[758]: Stopped target Sockets.
May 07 08:58:35 AzizArch systemd[758]: Stopped target Timers.
May 07 08:58:35 AzizArch systemd[758]: Stopped Cleanup lingering KCrash metadata.
May 07 08:58:35 AzizArch systemd[758]: Closed GnuPG network certificate management daemon.
May 07 08:58:35 AzizArch systemd[758]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers).
May 07 08:58:35 AzizArch systemd[758]: Closed GnuPG cryptographic agent and passphrase cache (restricted).
May 07 08:58:35 AzizArch systemd[758]: Closed GnuPG cryptographic agent (ssh-agent emulation).
May 07 08:58:35 AzizArch systemd[758]: Closed GnuPG cryptographic agent and passphrase cache.
May 07 08:58:35 AzizArch systemd[758]: Closed GnuPG public key management service.
May 07 08:58:35 AzizArch systemd[758]: Closed p11-kit server.
May 07 08:58:35 AzizArch systemd[758]: Closed PipeWire PulseAudio.
May 07 08:58:35 AzizArch systemd[758]: Closed PipeWire Multimedia System Sockets.
May 07 08:58:35 AzizArch dbus-broker[788]: Dispatched 25671 messages @ 7(±12)μs / message.
May 07 08:58:35 AzizArch systemd[758]: Stopping D-Bus User Message Bus...
May 07 08:58:35 AzizArch systemd[758]: Stopped D-Bus User Message Bus.
May 07 08:58:35 AzizArch systemd[758]: dbus-broker.service: Consumed 1.261s CPU time, 4.3M memory peak, 0B memory swap peak.
May 07 08:58:35 AzizArch systemd[758]: Removed slice User Core Session Slice.
May 07 08:58:35 AzizArch systemd[758]: session.slice: Consumed 3min 18.053s CPU time, 1.2G memory peak, 0B memory swap peak.
May 07 08:58:35 AzizArch systemd[758]: Closed D-Bus User Message Bus Socket.
May 07 08:58:35 AzizArch systemd[758]: Removed slice User Application Slice.
May 07 08:58:35 AzizArch systemd[758]: app.slice: Consumed 13min 32.980s CPU time, 4.2G memory peak, 0B memory swap peak.
May 07 08:58:35 AzizArch systemd[758]: Reached target Shutdown.
May 07 08:58:35 AzizArch systemd[758]: Finished Exit the Session.
May 07 08:58:35 AzizArch systemd[758]: Reached target Exit the Session.
May 07 08:58:35 AzizArch (sd-pam)[760]: pam_unix(systemd-user:session): session closed for user Aziz
May 07 08:58:35 AzizArch systemd[1]: user@1000.service: Deactivated successfully.
May 07 08:58:35 AzizArch systemd[1]: Stopped User Manager for UID 1000.
May 07 08:58:35 AzizArch systemd[1]: user@1000.service: Consumed 17min 2.735s CPU time.
May 07 08:58:36 AzizArch systemd[1]: Stopping User Runtime Directory /run/user/1000...
May 07 08:58:36 AzizArch systemd[1]: run-user-1000.mount: Deactivated successfully.
May 07 08:58:36 AzizArch systemd[1]: user-runtime-dir@1000.service: Deactivated successfully.
May 07 08:58:36 AzizArch systemd[1]: Stopped User Runtime Directory /run/user/1000.
May 07 08:58:36 AzizArch systemd[1]: Removed slice User Slice of UID 1000.
May 07 08:58:36 AzizArch systemd[1]: user-1000.slice: Consumed 17min 3.314s CPU time.
May 07 08:58:38 AzizArch login[12187]: pam_unix(login:session): session opened for user root(uid=0) by root(uid=0)
May 07 08:58:38 AzizArch systemd-logind[590]: New session 3 of user root.
May 07 08:58:38 AzizArch systemd[1]: Created slice User Slice of UID 0.
May 07 08:58:38 AzizArch systemd[1]: Starting User Runtime Directory /run/user/0...
May 07 08:58:38 AzizArch systemd[1]: Finished User Runtime Directory /run/user/0.
May 07 08:58:38 AzizArch systemd[1]: Starting User Manager for UID 0...
May 07 08:58:38 AzizArch (systemd)[12207]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[root] ruser=[<unknown>] rhost=[<unknown>]
May 07 08:58:38 AzizArch (systemd)[12207]: pam_unix(systemd-user:session): session opened for user root(uid=0) by root(uid=0)
May 07 08:58:38 AzizArch systemd[12207]: Queued start job for default target Main User Target.
May 07 08:58:38 AzizArch systemd[12207]: Created slice User Application Slice.
May 07 08:58:38 AzizArch systemd[12207]: Started Submitting pending crash events.
May 07 08:58:38 AzizArch systemd[12207]: Cleanup lingering KCrash metadata was skipped because of an unmet condition check (ConditionPathExistsGlob=/root/.cache/kcrash-metadata/*.ini).
May 07 08:58:38 AzizArch systemd[12207]: Submitting pending crash events was skipped because of an unmet condition check (ConditionPathExistsGlob=/root/.cache/drkonqi/sentry-envelopes/*).
May 07 08:58:38 AzizArch systemd[12207]: Reached target Paths.
May 07 08:58:38 AzizArch systemd[12207]: Reached target Timers.
May 07 08:58:38 AzizArch systemd[12207]: Starting D-Bus User Message Bus Socket...
May 07 08:58:38 AzizArch systemd[12207]: Listening on GnuPG network certificate management daemon.
May 07 08:58:38 AzizArch systemd[12207]: Listening on Socket to launch DrKonqi for a systemd-coredump crash.
May 07 08:58:38 AzizArch systemd[12207]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
May 07 08:58:38 AzizArch systemd[12207]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
May 07 08:58:38 AzizArch systemd[12207]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
May 07 08:58:38 AzizArch systemd[12207]: Listening on GnuPG cryptographic agent and passphrase cache.
May 07 08:58:38 AzizArch systemd[12207]: Listening on GnuPG public key management service.
May 07 08:58:38 AzizArch systemd[12207]: Listening on p11-kit server.
May 07 08:58:38 AzizArch systemd[12207]: PipeWire PulseAudio was skipped because of an unmet condition check (ConditionUser=!root).
May 07 08:58:38 AzizArch systemd[12207]: Listening on PipeWire Multimedia System Sockets.
May 07 08:58:38 AzizArch systemd[12207]: Listening on D-Bus User Message Bus Socket.
May 07 08:58:38 AzizArch systemd[12207]: Reached target Sockets.
May 07 08:58:38 AzizArch systemd[12207]: Reached target Basic System.
May 07 08:58:38 AzizArch systemd[12207]: Cleanup lingering KCrash metadata was skipped because of an unmet condition check (ConditionPathExistsGlob=/root/.cache/kcrash-metadata/*.ini).
May 07 08:58:38 AzizArch systemd[1]: Started User Manager for UID 0.
May 07 08:58:38 AzizArch systemd[12207]: Starting Update XDG user dir configuration...
May 07 08:58:38 AzizArch systemd[1]: Started Session 3 of User root.
May 07 08:58:38 AzizArch login[12187]: ROOT LOGIN ON tty1
May 07 08:58:38 AzizArch systemd[12207]: Finished Update XDG user dir configuration.
May 07 08:58:38 AzizArch systemd[12207]: Reached target Main User Target.
May 07 08:58:38 AzizArch systemd[12207]: Startup finished in 215ms.
May 07 08:58:47 AzizArch systemd[1]: Starting Locale Service...
May 07 08:58:47 AzizArch systemd[1]: Started Locale Service.
May 07 08:58:48 AzizArch systemd[12207]: Created slice User Core Session Slice.
May 07 08:58:48 AzizArch systemd[12207]: Starting D-Bus User Message Bus...
May 07 08:58:48 AzizArch dbus-broker-launch[12235]: Service file '/usr/share//dbus-1/services/org.kde.dolphin.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
May 07 08:58:48 AzizArch dbus-broker-launch[12235]: Service file '/usr/share//dbus-1/services/org.kde.kscreen.service' is not named after the D-Bus name 'org.kde.KScreen'.
May 07 08:58:48 AzizArch dbus-broker-launch[12235]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
May 07 08:58:48 AzizArch dbus-broker-launch[12235]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
May 07 08:58:48 AzizArch dbus-broker-launch[12235]: Service file '/usr/share//dbus-1/services/org.kde.plasma.Notifications.service' is not named after the D-Bus name 'org.freedesktop.Notifications'.
May 07 08:58:48 AzizArch systemd[12207]: Started D-Bus User Message Bus.
May 07 08:58:48 AzizArch dbus-broker-launch[12235]: Ready
May 07 08:58:48 AzizArch systemd[12207]: Reloading requested from client PID 12230 ('startplasma-way')...
May 07 08:58:48 AzizArch systemd[12207]: Reloading...
May 07 08:58:48 AzizArch systemd[12207]: Reloading finished in 140 ms.
May 07 08:58:48 AzizArch systemd[12207]: Created slice Slice /app/dbus-:1.2-org.kde.KSplash.
May 07 08:58:48 AzizArch systemd[12207]: Started dbus-:1.2-org.kde.KSplash@0.service.
May 07 08:58:48 AzizArch plasma_waitforname[12243]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                    Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                    If this causes problems, reconfigure your locale. See the locale(1) manual
                                                    for more information.
May 07 08:58:48 AzizArch systemd[12207]: Created slice User Background Tasks Slice.
May 07 08:58:48 AzizArch systemd[12207]: Submitting pending crash events was skipped because of an unmet condition check (ConditionPathExistsGlob=/root/.cache/drkonqi/sentry-envelopes/*).
May 07 08:58:48 AzizArch systemd[12207]: Reached target Session services which should run early before the graphical session is brought up.
May 07 08:58:48 AzizArch systemd[12207]: Starting KDE Global Shortcuts Server...
May 07 08:58:48 AzizArch systemd[12207]: Starting KDE Window Manager...
May 07 08:58:48 AzizArch systemd[12207]: Starting Baloo File Indexer Daemon...
May 07 08:58:48 AzizArch kde-systemd-start-condition[12247]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                             Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                             If this causes problems, reconfigure your locale. See the locale(1) manual
                                                             for more information.
May 07 08:58:48 AzizArch kwin_wayland_wrapper[12246]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                      Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                      If this causes problems, reconfigure your locale. See the locale(1) manual
                                                      for more information.
May 07 08:58:48 AzizArch systemd[12207]: Started KDE Window Manager.
May 07 08:58:48 AzizArch systemd[12207]: Starting KDE Config Module Initialization...
May 07 08:58:48 AzizArch systemd[12207]: Starting Splash screen shown during boot...
May 07 08:58:48 AzizArch baloo_file[12249]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                            Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                            If this causes problems, reconfigure your locale. See the locale(1) manual
                                            for more information.
May 07 08:58:48 AzizArch systemd[12207]: Started KDE Global Shortcuts Server.
May 07 08:58:48 AzizArch systemd[12207]: Started Baloo File Indexer Daemon.
May 07 08:58:48 AzizArch kcminit_startup[12256]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                 Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                 If this causes problems, reconfigure your locale. See the locale(1) manual
                                                 for more information.
May 07 08:58:48 AzizArch systemd[12207]: Starting Portal service...
May 07 08:58:48 AzizArch systemd[12207]: Starting flatpak document portal service...
May 07 08:58:48 AzizArch ksplashqml[12253]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                            Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                            If this causes problems, reconfigure your locale. See the locale(1) manual
                                            for more information.
May 07 08:58:48 AzizArch systemd[12207]: Starting sandboxed app permission store...
May 07 08:58:48 AzizArch systemd[12207]: Started sandboxed app permission store.
May 07 08:58:48 AzizArch systemd[12207]: Started flatpak document portal service.
May 07 08:58:48 AzizArch kwin_wayland[12250]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                              Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                              If this causes problems, reconfigure your locale. See the locale(1) manual
                                              for more information.
May 07 08:58:48 AzizArch rtkit-daemon[840]: Supervising 0 threads of 0 processes of 0 users.
May 07 08:58:48 AzizArch rtkit-daemon[840]: Supervising 0 threads of 0 processes of 0 users.
May 07 08:58:48 AzizArch rtkit-daemon[840]: Supervising 0 threads of 0 processes of 0 users.
May 07 08:58:48 AzizArch kwin_wayland[12250]: No backend specified, automatically choosing drm
May 07 08:58:48 AzizArch kwin_wayland[12250]: OpenGL vendor string:                   Intel
May 07 08:58:48 AzizArch kwin_wayland[12250]: OpenGL renderer string:                 Mesa Intel(R) Graphics (ADL GT2)
May 07 08:58:48 AzizArch kwin_wayland[12250]: OpenGL version string:                  4.6 (Core Profile) Mesa 24.0.6-arch1.2
May 07 08:58:48 AzizArch kwin_wayland[12250]: OpenGL shading language version string: 4.60
May 07 08:58:48 AzizArch kwin_wayland[12250]: Driver:                                 Intel
May 07 08:58:48 AzizArch kwin_wayland[12250]: GPU class:                              Unknown
May 07 08:58:48 AzizArch kwin_wayland[12250]: OpenGL version:                         4.6
May 07 08:58:48 AzizArch kwin_wayland[12250]: GLSL version:                           4.60
May 07 08:58:48 AzizArch kwin_wayland[12250]: Mesa version:                           24.0.6
May 07 08:58:48 AzizArch kwin_wayland[12250]: Requires strict binding:                no
May 07 08:58:48 AzizArch kwin_wayland[12250]: Virtual Machine:                        no
May 07 08:58:48 AzizArch kwin_wayland[12250]: Timer query support:                    yes
May 07 08:58:48 AzizArch systemd[12207]: Started PipeWire Multimedia Service.
May 07 08:58:48 AzizArch systemd[12207]: Started Multimedia Service Session Manager.
May 07 08:58:49 AzizArch kcminit_startup[12256]: Initializing  "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_mouse.so"
May 07 08:58:49 AzizArch kcminit_startup[12256]: Initializing  "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_style.so"
May 07 08:58:49 AzizArch wireplumber[12303]: BlueZ system service is not available
May 07 08:58:49 AzizArch wireplumber[12303]: [0:22:58.868226673] [12303] ERROR IPAModule ipa_module.cpp:172 Symbol ipaModuleInfo not found
May 07 08:58:49 AzizArch wireplumber[12303]: [0:22:58.868244087] [12303] ERROR IPAModule ipa_module.cpp:292 v4l2-compat.so: IPA module has no valid info
May 07 08:58:49 AzizArch wireplumber[12303]: [0:22:58.868269522] [12303]  INFO Camera camera_manager.cpp:284 libcamera v0.2.0
May 07 08:58:49 AzizArch kwin_wayland[12250]: kf.windowsystem: static bool KX11Extras::mapViewport() may only be used on X11
May 07 08:58:49 AzizArch kwin_wayland_wrapper[12347]: The XKEYBOARD keymap compiler (xkbcomp) reports:
May 07 08:58:49 AzizArch kwin_wayland_wrapper[12347]: > Warning:          Unsupported maximum keycode 708, clipping.
May 07 08:58:49 AzizArch kwin_wayland_wrapper[12347]: >                   X11 cannot support keycodes above 255.
May 07 08:58:49 AzizArch kwin_wayland_wrapper[12347]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
May 07 08:58:49 AzizArch kwin_wayland_wrapper[12347]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
May 07 08:58:49 AzizArch kwin_wayland_wrapper[12347]: Errors from xkbcomp are not fatal to the X server
May 07 08:58:49 AzizArch kcminit[12348]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                         Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                         If this causes problems, reconfigure your locale. See the locale(1) manual
                                         for more information.
May 07 08:58:49 AzizArch kcminit_startup[12256]: Initializing  "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_fonts.so"
May 07 08:58:49 AzizArch systemd[12207]: Started KDE Config Module Initialization.
May 07 08:58:49 AzizArch kcminit[12348]: Initializing  "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_fonts.so"
May 07 08:58:49 AzizArch kcminit[12348]: Initializing  "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_style.so"
May 07 08:58:49 AzizArch systemd[12207]: Starting KDE Session Management Server...
May 07 08:58:49 AzizArch systemd[12207]: Started Unlock kwallet from pam credentials.
May 07 08:58:49 AzizArch systemd[12207]: Starting KDE Daemon 6...
May 07 08:58:49 AzizArch kded6[12359]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                       Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                       If this causes problems, reconfigure your locale. See the locale(1) manual
                                       for more information.
May 07 08:58:49 AzizArch ksmserver[12356]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                           Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                           If this causes problems, reconfigure your locale. See the locale(1) manual
                                           for more information.
May 07 08:58:49 AzizArch systemd[12207]: Started KDE Daemon 6.
May 07 08:58:49 AzizArch kded6[12359]: org.kde.libkbolt: Failed to connect to Bolt manager DBus interface:
May 07 08:58:49 AzizArch kded6[12359]: org.kde.bolt.kded: Couldn't connect to Bolt DBus daemon
May 07 08:58:50 AzizArch systemd[12207]: Starting KDE Configuration Module Initialization (Phase 1)...
May 07 08:58:50 AzizArch systemd[1]: Starting Load/Save RF Kill Switch Status...
May 07 08:58:50 AzizArch systemd[12207]: Starting User preferences database...
May 07 08:58:50 AzizArch qdbus[12376]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                       Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                       If this causes problems, reconfigure your locale. See the locale(1) manual
                                       for more information.
May 07 08:58:50 AzizArch kcminit_startup[12256]: Initializing  "/usr/lib/qt6/plugins/plasma/kcms/systemsettings_qwidgets/kcm_kgamma.so"
May 07 08:58:50 AzizArch systemd[12207]: Started User preferences database.
May 07 08:58:50 AzizArch systemd[1]: Started Load/Save RF Kill Switch Status.
May 07 08:58:50 AzizArch systemd[12207]: Started KDE Session Management Server.
May 07 08:58:50 AzizArch systemd[12207]: Starting KDE Plasma Workspace...
May 07 08:58:50 AzizArch kcminit_startup[12256]: Initializing  "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_touchpad.so"
May 07 08:58:50 AzizArch systemd[12207]: Finished KDE Configuration Module Initialization (Phase 1).
May 07 08:58:50 AzizArch plasmashell[12394]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                             Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                             If this causes problems, reconfigure your locale. See the locale(1) manual
                                             for more information.
May 07 08:58:50 AzizArch kded6[12359]: kf.coreaddons: The plugin "/usr/lib/qt6/plugins/kaccounts/daemonplugins/gdrive.so" explicitly states an Id in the embedded metadata, which is different from the one derived from the filename The Id field from the KPlugin object in the metadata should be removed
May 07 08:58:50 AzizArch kded6[12359]: kf.coreaddons: The plugin "/usr/lib/qt6/plugins/kaccounts/daemonplugins/kaccounts_kio_webdav_plugin.so" explicitly states an Id in the embedded metadata, which is different from the one derived from the filename The Id field from the KPlugin object in the metadata should be removed
May 07 08:58:50 AzizArch NetworkManager[588]: <info>  [1715061530.2314] agent-manager: agent[b2dca851e4b4a285,:1.293/org.kde.plasma.networkmanagement/0]: agent registered
May 07 08:58:50 AzizArch kded6[12359]: QDBusObjectPath: invalid path "/modules/plasma-session-shortcuts"
May 07 08:58:50 AzizArch kded6[12359]: kf.dbusaddons: The kded module name "plasma-session-shortcuts" is invalid!
May 07 08:58:50 AzizArch kded6[12359]: System timezone has been changed, new timezone is "Asia/Amman"
May 07 08:58:50 AzizArch kded6[12359]: colord: X11 not detect disabling
May 07 08:58:50 AzizArch plasmashell[12394]: KPackageStructure of KPluginMetaData(pluginId:"org.kde.graphsplasmoid", fileName: "/usr/share/plasma/plasmoids/org.kde.graphsplasmoid/metadata.json") does not match requested format "Plasma/Applet"
May 07 08:58:50 AzizArch plasmashell[12394]: KPackageStructure of KPluginMetaData(pluginId:"org.kde.plasma.kweather_1x4", fileName: "/usr/share/plasma/plasmoids/org.kde.plasma.kweather_1x4/metadata.json") does not match requested format "Plasma/Applet"
May 07 08:58:50 AzizArch plasmashell[12394]: KPackageStructure of KPluginMetaData(pluginId:"org.kde.merkuro.contact", fileName: "/usr/share/plasma/plasmoids/org.kde.merkuro.contact/metadata.json") does not match requested format "Plasma/Applet"
May 07 08:58:50 AzizArch plasmashell[12394]: KPackageStructure of KPluginMetaData(pluginId:"org.kde.plasma.kclock_1x2", fileName: "/usr/share/plasma/plasmoids/org.kde.plasma.kclock_1x2/metadata.json") does not match requested format "Plasma/Applet"
May 07 08:58:50 AzizArch kded6[12359]: org.kde.plasma.printmanager.kded: unable to register service to dbus
May 07 08:58:50 AzizArch systemd[12207]: Starting KActivityManager Activity manager Service...
May 07 08:58:50 AzizArch systemd[12207]: Started KDE Plasma Workspace.
May 07 08:58:50 AzizArch kded6[12359]: QDBusObjectPath: invalid path "/modules/kded_plasma-welcome"
May 07 08:58:50 AzizArch kded6[12359]: kf.dbusaddons: The kded module name "kded_plasma-welcome" is invalid!
May 07 08:58:50 AzizArch systemd[12207]: Started Welcome Center.
May 07 08:58:50 AzizArch systemd[12207]: Reached target KDE Plasma Workspace Core.
May 07 08:58:50 AzizArch plasmashell[12394]: kde.plasmashell: Aborting shell load: The activity manager daemon (kactivitymanagerd) is not running.
May 07 08:58:50 AzizArch plasmashell[12394]: kde.plasmashell: If this Plasma has been installed into a custom prefix, verify that its D-Bus services dir is known to the system for the daemon to be activatable.
May 07 08:58:50 AzizArch systemd[12207]: Started Consume pending crashes using DrKonqi.
May 07 08:58:50 AzizArch systemd[12207]: Started Proxies GTK DBus menus to a Plasma readable format.
May 07 08:58:50 AzizArch systemd[12207]: Starting KDE PolicyKit Authentication Agent...
May 07 08:58:50 AzizArch systemd[12207]: Starting Powerdevil...
May 07 08:58:50 AzizArch kconf_update[12429]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                              Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                              If this causes problems, reconfigure your locale. See the locale(1) manual
                                              for more information.
May 07 08:58:50 AzizArch systemd[12207]: Starting Xdg Desktop Portal For KDE...
May 07 08:58:50 AzizArch kconf_update[12429]: kf.config.kconf_update: /usr/share/kconf_update/ark.upd defined Version=5 but Version=6 was expected
May 07 08:58:50 AzizArch kconf_update[12429]: kf.config.kconf_update: /usr/share/kconf_update/dolphin_detailsmodesettings.upd defined Version=5 but Version=6 was expected
May 07 08:58:50 AzizArch kconf_update[12429]: kf.config.kconf_update: /usr/share/kconf_update/filepicker.upd defined Version=5 but Version=6 was expected
May 07 08:58:50 AzizArch systemd[12207]: Started Handle legacy xembed system tray icons.
May 07 08:58:50 AzizArch kactivitymanagerd[12427]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                   Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                   If this causes problems, reconfigure your locale. See the locale(1) manual
                                                   for more information.
May 07 08:58:50 AzizArch drkonqi-coredump-processor[12430]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                            Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                            If this causes problems, reconfigure your locale. See the locale(1) manual
                                                            for more information.
May 07 08:58:50 AzizArch gmenudbusmenuproxy[12431]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                    Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                    If this causes problems, reconfigure your locale. See the locale(1) manual
                                                    for more information.
May 07 08:58:50 AzizArch xembedsniproxy[12435]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                If this causes problems, reconfigure your locale. See the locale(1) manual
                                                for more information.
May 07 08:58:50 AzizArch polkit-kde-authentication-agent-1[12432]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                                   Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                                   If this causes problems, reconfigure your locale. See the locale(1) manual
                                                                   for more information.
May 07 08:58:50 AzizArch kconf_update[12429]: kf.config.kconf_update: /usr/share/kconf_update/kleopatra.upd defined Version=5 but Version=6 was expected
May 07 08:58:50 AzizArch kconf_update[12429]: kf.config.kconf_update: /usr/share/kconf_update/konsole.upd defined Version=5 but Version=6 was expected
May 07 08:58:50 AzizArch xdg-desktop-portal-kde[12434]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                        Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                        If this causes problems, reconfigure your locale. See the locale(1) manual
                                                        for more information.
May 07 08:58:50 AzizArch kactivitymanagerd[12427]: kf.windowsystem: virtual void KX11Extras::connectNotify(const QMetaMethod&) may only be used on X11
May 07 08:58:50 AzizArch kactivitymanagerd[12427]: kf.windowsystem: virtual void KX11Extras::connectNotify(const QMetaMethod&) may only be used on X11
May 07 08:58:50 AzizArch kwin-6.0-delete-desktop-switching-shortcuts[12456]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                                             Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                                             If this causes problems, reconfigure your locale. See the locale(1) manual
                                                                             for more information.
May 07 08:58:50 AzizArch systemd[12207]: Started KActivityManager Activity manager Service.
May 07 08:58:50 AzizArch plasmashell[12394]: kde.plasmashell: Aborting shell load: The activity manager daemon (kactivitymanagerd) is not running.
May 07 08:58:50 AzizArch plasmashell[12394]: kde.plasmashell: If this Plasma has been installed into a custom prefix, verify that its D-Bus services dir is known to the system for the daemon to be activatable.
May 07 08:58:50 AzizArch org_kde_powerdevil[12433]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                    Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                    If this causes problems, reconfigure your locale. See the locale(1) manual
                                                    for more information.
May 07 08:58:50 AzizArch systemd[12207]: Started Xdg Desktop Portal For KDE.
May 07 08:58:50 AzizArch plasmashell[12394]: kf.coreaddons: The plugin "/usr/lib/qt6/plugins/plasma/applets/plasma_applet_kweather_1x4.so" explicitly states an Id in the embedded metadata, which is different from the one derived from the filename The Id field from the KPlugin object in the metadata should be removed
May 07 08:58:50 AzizArch systemd[12207]: Started KDE PolicyKit Authentication Agent.
May 07 08:58:50 AzizArch polkit-kde-authentication-agent-1[12432]: New PolkitAgentListener  0x59da70ff8d80
May 07 08:58:50 AzizArch polkit-kde-authentication-agent-1[12432]: Adding new listener  PolkitQt1::Agent::Listener(0x59da70ff8770) for  0x59da70ff8d80
May 07 08:58:50 AzizArch polkit-kde-authentication-agent-1[12432]: Listener online
May 07 08:58:50 AzizArch polkitd[824]: Registered Authentication Agent for unix-session:3 (system bus name :1.298 [/usr/lib/polkit-kde-authentication-agent-1], object path /org/kde/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
May 07 08:58:50 AzizArch polkit-kde-authentication-agent-1[12432]: Authentication agent result: true
May 07 08:58:50 AzizArch systemd[12207]: Started Portal service.
May 07 08:58:50 AzizArch systemd[1]: Started dbus-:1.1-org.kde.powerdevil.discretegpuhelper@4.service.
May 07 08:58:50 AzizArch org.kde.powerdevil.discretegpuhelper[12509]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                                      Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                                      If this causes problems, reconfigure your locale. See the locale(1) manual
                                                                      for more information.
May 07 08:58:50 AzizArch systemd[1]: Started dbus-:1.1-org.kde.powerdevil.chargethresholdhelper@4.service.
May 07 08:58:50 AzizArch plasmashell[12394]: kf.plasma.quick: Applet preload policy set to 1
May 07 08:58:50 AzizArch org.kde.powerdevil.chargethresholdhelper[12517]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                                          Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                                          If this causes problems, reconfigure your locale. See the locale(1) manual
                                                                          for more information.
May 07 08:58:50 AzizArch plasmashell[12394]: file:///usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/main.qml:196:25: QML FolderViewDropArea (parent or ancestor of QQuickLayoutAttached): Binding loop detected for property "minimumWidth"
May 07 08:58:50 AzizArch systemd[1]: Started dbus-:1.1-org.kde.powerdevil.backlighthelper@4.service.
May 07 08:58:50 AzizArch org.kde.powerdevil.backlighthelper[12522]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                                    Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                                    If this causes problems, reconfigure your locale. See the locale(1) manual
                                                                    for more information.
May 07 08:58:50 AzizArch org_kde_powerdevil[12433]: org.kde.powerdevil: org.kde.powerdevil.chargethresholdhelper.getthreshold failed "Charge thresholds are not supported by the kernel for this hardware"
May 07 08:58:50 AzizArch kconf_update[12429]: kf.config.kconf_update: /usr/share/kconf_update/okular.upd defined Version=5 but Version=6 was expected
May 07 08:58:50 AzizArch plasma6.0-remove-dpi-settings[12528]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                               Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                               If this causes problems, reconfigure your locale. See the locale(1) manual
                                                               for more information.
May 07 08:58:50 AzizArch plasma6.0-remove-old-shortcuts[12529]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                                Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                                If this causes problems, reconfigure your locale. See the locale(1) manual
                                                                for more information.
May 07 08:58:50 AzizArch systemd[12207]: Started Powerdevil.
May 07 08:58:50 AzizArch systemd[12207]: Reached target KDE Plasma Workspace.
May 07 08:58:50 AzizArch systemd[12207]: Reached target Current graphical user session.
May 07 08:58:50 AzizArch systemd[12207]: Reached target plasma-workspace-wayland.target.
May 07 08:58:50 AzizArch org_kde_powerdevil[12433]: org.kde.powerdevil: Handle button events action could not check for screen configuration
May 07 08:58:50 AzizArch org_kde_powerdevil[12433]: org.kde.powerdevil: org.kde.powerdevil.chargethresholdhelper.getthreshold failed "Charge thresholds are not supported by the kernel for this hardware"
May 07 08:58:50 AzizArch systemd[12207]: Starting AT-SPI D-Bus Bus...
May 07 08:58:50 AzizArch systemd[12207]: Starting Geoclue Demo agent...
May 07 08:58:50 AzizArch systemd[12207]: Starting Accessibility...
May 07 08:58:50 AzizArch systemd[12207]: Starting KAlarm...
May 07 08:58:50 AzizArch systemd[12207]: Starting KMix...
May 07 08:58:50 AzizArch systemd[12207]: Starting Konqueror preloading during desktop environment startup...
May 07 08:58:50 AzizArch systemd[12207]: Starting Discover...
May 07 08:58:50 AzizArch systemd[12207]: Starting Calendar Reminders...
May 07 08:58:50 AzizArch systemd[12207]: Starting Clock...
May 07 08:58:50 AzizArch systemd[12207]: Starting KDE Connect...
May 07 08:58:50 AzizArch systemd[12207]: Starting KGpg...
May 07 08:58:50 AzizArch systemd[12207]: Starting Update Notifier...
May 07 08:58:50 AzizArch systemd[12207]: Starting Update Notifier...
May 07 08:58:50 AzizArch systemd[12207]: Starting Restore Mixer Volumes...
May 07 08:58:50 AzizArch systemd[12207]: Starting Snap user application autostart helper...
May 07 08:58:50 AzizArch kde-systemd-start-condition[12539]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                             Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                             If this causes problems, reconfigure your locale. See the locale(1) manual
                                                             for more information.
May 07 08:58:50 AzizArch systemd[12207]: Starting KSplash "ready" Stage...
May 07 08:58:50 AzizArch systemd[12207]: Starting KDE Session Restoration...
May 07 08:58:50 AzizArch kde-systemd-start-condition[12542]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                             Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                             If this causes problems, reconfigure your locale. See the locale(1) manual
                                                             for more information.
May 07 08:58:50 AzizArch systemd[12207]: app-at\x2dspi\x2ddbus\x2dbus@autostart.service: Skipped due to 'exec-condition'.
May 07 08:58:50 AzizArch systemd[12207]: Condition check resulted in AT-SPI D-Bus Bus being skipped.
May 07 08:58:50 AzizArch qdbus[12555]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                       Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                       If this causes problems, reconfigure your locale. See the locale(1) manual
                                       for more information.
May 07 08:58:50 AzizArch qdbus[12556]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                       Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                       If this causes problems, reconfigure your locale. See the locale(1) manual
                                       for more information.
May 07 08:58:50 AzizArch systemd[12207]: app-org.kde.kgpg@autostart.service: Skipped due to 'exec-condition'.
May 07 08:58:50 AzizArch systemd[12207]: Condition check resulted in KGpg being skipped.
May 07 08:58:50 AzizArch systemd[12207]: app-pamac\x2dtray@autostart.service: Skipped due to 'exec-condition'.
May 07 08:58:50 AzizArch systemd[12207]: Condition check resulted in Update Notifier being skipped.
May 07 08:58:50 AzizArch systemd[12207]: app-pamac\x2dtray\x2dbudgie@autostart.service: Skipped due to 'exec-condition'.
May 07 08:58:50 AzizArch systemd[12207]: Condition check resulted in Update Notifier being skipped.
May 07 08:58:50 AzizArch kclockd[12540]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                         Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                         If this causes problems, reconfigure your locale. See the locale(1) manual
                                         for more information.
May 07 08:58:50 AzizArch kde-systemd-start-condition[12563]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                             Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                             If this causes problems, reconfigure your locale. See the locale(1) manual
                                                             for more information.
May 07 08:58:50 AzizArch kde-systemd-start-condition[12571]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                             Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                             If this causes problems, reconfigure your locale. See the locale(1) manual
                                                             for more information.
May 07 08:58:50 AzizArch systemd[12207]: Finished KDE Session Restoration.
May 07 08:58:50 AzizArch systemd[12207]: app-kalarm.autostart@autostart.service: Skipped due to 'exec-condition'.
May 07 08:58:50 AzizArch kdeconnectd[12541]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                             Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                             If this causes problems, reconfigure your locale. See the locale(1) manual
                                             for more information.
May 07 08:58:50 AzizArch systemd[12207]: Condition check resulted in KAlarm being skipped.
May 07 08:58:50 AzizArch kde-systemd-start-condition[12565]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                             Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                             If this causes problems, reconfigure your locale. See the locale(1) manual
                                                             for more information.
May 07 08:58:50 AzizArch systemd[12207]: app-konqy_preload@autostart.service: Skipped due to 'exec-condition'.
May 07 08:58:50 AzizArch systemd[12207]: Condition check resulted in Konqueror preloading during desktop environment startup being skipped.
May 07 08:58:50 AzizArch systemd[12207]: Started KDE Connect.
May 07 08:58:50 AzizArch systemd[12207]: Started Clock.
May 07 08:58:50 AzizArch systemd[12207]: Started Snap user application autostart helper.
May 07 08:58:50 AzizArch systemd[12207]: Started Geoclue Demo agent.
May 07 08:58:50 AzizArch systemd[12207]: Started Accessibility.
May 07 08:58:50 AzizArch systemd[12207]: Started Discover.
May 07 08:58:50 AzizArch systemd[12207]: Started Calendar Reminders.
May 07 08:58:50 AzizArch kde-systemd-start-condition[12582]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                             Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                             If this causes problems, reconfigure your locale. See the locale(1) manual
                                                             for more information.
May 07 08:58:50 AzizArch systemd[12207]: Started KMix.
May 07 08:58:50 AzizArch kaccess[12561]: Xlib XKB extension major= 1  minor= 0
May 07 08:58:50 AzizArch kaccess[12561]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                         Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                         If this causes problems, reconfigure your locale. See the locale(1) manual
                                         for more information.
May 07 08:58:50 AzizArch systemd[12207]: Started Restore Mixer Volumes.
May 07 08:58:50 AzizArch systemd[12207]: Reached target Startup of XDG autostart applications.
May 07 08:58:50 AzizArch systemd[12207]: Finished KSplash "ready" Stage.
May 07 08:58:50 AzizArch plasma6.0-remove-old-shortcuts[12529]: "next activity"
May 07 08:58:50 AzizArch plasma6.0-remove-old-shortcuts[12529]: "previous activity"
May 07 08:58:50 AzizArch DiscoverNotifier[12575]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                  Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                  If this causes problems, reconfigure your locale. See the locale(1) manual
                                                  for more information.
May 07 08:58:50 AzizArch kmixctrl[12592]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmixctrl[12592]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmixctrl[12592]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmixctrl[12592]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmixctrl[12592]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmixctrl[12592]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmixctrl[12592]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmixctrl[12592]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmixctrl[12592]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmixctrl[12592]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmixctrl[12592]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmixctrl[12592]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmixctrl[12592]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmixctrl[12592]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmixctrl[12592]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmixctrl[12592]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmixctrl[12592]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmixctrl[12592]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmixctrl[12592]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmixctrl[12592]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmix[12588]: percent 5 -> divisor 20
May 07 08:58:50 AzizArch kconf_update[12429]: kf.config.kconf_update: /usr/share/kconf_update/webenginepart.upd defined Version=5 but Version=6 was expected
May 07 08:58:50 AzizArch kded6[12359]:
May 07 08:58:50 AzizArch kmix[12588]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmix[12588]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmix[12588]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmix[12588]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmix[12588]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmix[12588]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmix[12588]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmix[12588]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmix[12588]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmix[12588]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmix[12588]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmix[12588]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmix[12588]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmix[12588]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmix[12588]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmix[12588]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmix[12588]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmix[12588]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmix[12588]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kmix[12588]: org.kde.kmix: no mix devices and not dynamic
May 07 08:58:50 AzizArch kded6[12359]: kf.modemmanagerqt: Failed enumerating MM objects: "org.freedesktop.DBus.Error.NameHasNoOwner"
                                        "Could not activate remote peer 'org.freedesktop.ModemManager1': activation request failed: unknown unit"
May 07 08:58:50 AzizArch kclockd[12540]: Starting kclockd 24.02.2
May 07 08:58:50 AzizArch kclockd[12540]: Requesting portal to run in the background and autostart...
May 07 08:58:50 AzizArch kclockd[12540]: Registered on DBus: true
May 07 08:58:50 AzizArch kclockd[12540]: PowerDevil found, using it for time tracking.
May 07 08:58:50 AzizArch kclockd[12540]: Request for autostart with org.freedesktop.portal.Background results:
May 07 08:58:50 AzizArch kclockd[12540]:    "autostart" : "true"
May 07 08:58:50 AzizArch kclockd[12540]:    "background" : "true"
May 07 08:58:51 AzizArch kded6[12641]: xsettingsd: Loaded 14 settings from /root/.config/xsettingsd/xsettingsd.conf
May 07 08:58:51 AzizArch kded6[12641]: xsettingsd: Created window 0xe00001 on screen 0 with timestamp 1380570
May 07 08:58:51 AzizArch kded6[12641]: xsettingsd: Selection _XSETTINGS_S0 is owned by 0x0
May 07 08:58:51 AzizArch kded6[12641]: xsettingsd: Took ownership of selection _XSETTINGS_S0
May 07 08:58:51 AzizArch plasma-welcome[12428]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                If this causes problems, reconfigure your locale. See the locale(1) manual
                                                for more information.
May 07 08:58:51 AzizArch DiscoverNotifier[12575]: couldn't load "/usr/lib/qt6/plugins/discover-notifier/DiscoverPackageKitNotifier.so" because "Cannot load library /usr/lib/qt6/plugins/discover-notifier/DiscoverPackageKitNotifier.so: libpackagekitqt6.so.1: cannot open shared object file: No such file or directory"
May 07 08:58:51 AzizArch kaccess[12561]: X server XKB extension major= 1  minor= 0
May 07 08:58:51 AzizArch systemd[1]: Started dbus-:1.1-org.kde.kded.smart@4.service.
May 07 08:58:51 AzizArch org.kde.kded.smart[12642]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                    Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                    If this causes problems, reconfigure your locale. See the locale(1) manual
                                                    for more information.
May 07 08:58:51 AzizArch kalendarac[12576]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                            Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                            If this causes problems, reconfigure your locale. See the locale(1) manual
                                            for more information.
May 07 08:58:51 AzizArch kded6[12359]: kf.bluezqt: PendingCall Error: "The name is not activatable"
May 07 08:58:51 AzizArch kded6[12359]: Known activities: QList("38c9f555-fbd0-4206-9dc6-a6247d408d57")
May 07 08:58:51 AzizArch kded6[12359]: kf.bluezqt: PendingCall Error: "Could not activate remote peer 'org.bluez': activation request failed: unknown unit"
May 07 08:58:51 AzizArch kmixctrl[12592]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 1
May 07 08:58:51 AzizArch kmixctrl[12592]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 2
May 07 08:58:51 AzizArch kmixctrl[12592]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 3
May 07 08:58:51 AzizArch kmixctrl[12592]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 4
May 07 08:58:51 AzizArch kmixctrl[12592]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 5
May 07 08:58:51 AzizArch kmixctrl[12592]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 6
May 07 08:58:51 AzizArch kmixctrl[12592]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 7
May 07 08:58:51 AzizArch kmixctrl[12592]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 8
May 07 08:58:51 AzizArch kmixctrl[12592]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 9
May 07 08:58:51 AzizArch kmixctrl[12592]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 10
May 07 08:58:51 AzizArch kmixctrl[12592]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 11
May 07 08:58:51 AzizArch kmixctrl[12592]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 12
May 07 08:58:51 AzizArch kmixctrl[12592]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 13
May 07 08:58:51 AzizArch kmixctrl[12592]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 14
May 07 08:58:51 AzizArch kmixctrl[12592]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 15
May 07 08:58:51 AzizArch kmixctrl[12592]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 16
May 07 08:58:51 AzizArch kmixctrl[12592]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 17
May 07 08:58:51 AzizArch kmixctrl[12592]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 18
May 07 08:58:51 AzizArch kmixctrl[12592]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 19
May 07 08:58:51 AzizArch systemd[12207]: Created slice Slice /app/dbus-:1.2-org.freedesktop.Notifications.
May 07 08:58:51 AzizArch kmix[12588]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 1
May 07 08:58:51 AzizArch kmix[12588]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 2
May 07 08:58:51 AzizArch kmix[12588]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 3
May 07 08:58:51 AzizArch kmix[12588]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 4
May 07 08:58:51 AzizArch kmix[12588]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 5
May 07 08:58:51 AzizArch kmix[12588]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 6
May 07 08:58:51 AzizArch kmix[12588]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 7
May 07 08:58:51 AzizArch kmix[12588]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 8
May 07 08:58:51 AzizArch kmix[12588]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 9
May 07 08:58:51 AzizArch kmix[12588]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 10
May 07 08:58:51 AzizArch kmix[12588]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 11
May 07 08:58:51 AzizArch kmix[12588]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 12
May 07 08:58:51 AzizArch kmix[12588]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 13
May 07 08:58:51 AzizArch kmix[12588]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 14
May 07 08:58:51 AzizArch kmix[12588]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 15
May 07 08:58:51 AzizArch kmix[12588]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 16
May 07 08:58:51 AzizArch kmix[12588]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 17
May 07 08:58:51 AzizArch kmix[12588]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 18
May 07 08:58:51 AzizArch kmix[12588]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 19
May 07 08:58:51 AzizArch kmix[12588]: kf.windowsystem: Could not find any platform plugin
May 07 08:58:51 AzizArch systemd[12207]: Started dbus-:1.2-org.freedesktop.Notifications@0.service.
May 07 08:58:51 AzizArch plasma_waitforname[12675]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                    Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                    If this causes problems, reconfigure your locale. See the locale(1) manual
                                                    for more information.
May 07 08:58:51 AzizArch kmix[12588]: adding 2 mixers
May 07 08:58:51 AzizArch kmix[12588]: mixer "ALSA::sof-hda-dsp:1" "sof-hda-dsp"
May 07 08:58:51 AzizArch kmix[12588]: adding "Master:0" "Master"
May 07 08:58:51 AzizArch kmix[12588]: mixer "MPRIS2::Playback_Streams:1" "Application Streams"
May 07 08:58:51 AzizArch kmix[12588]: org.kde.kmix: No such icon "mixer-master"
May 07 08:58:51 AzizArch kmix[12588]: org.kde.kmix: No such icon "mixer-master"
May 07 08:58:51 AzizArch kmix[12588]: org.kde.kmix: No such icon "mixer-headset"
May 07 08:58:51 AzizArch kmix[12588]: org.kde.kmix: No such icon "mixer-microphone-boost"
May 07 08:58:51 AzizArch kmix[12588]: org.kde.kmix: No such icon "mixer-line"
May 07 08:58:51 AzizArch kmix[12588]: org.kde.kmix: No such icon "mixer-digital"
May 07 08:58:51 AzizArch kmix[12588]: org.kde.kmix: No such icon "mixer-digital"
May 07 08:58:51 AzizArch kmix[12588]: org.kde.kmix: No such icon "mixer-digital"
May 07 08:58:51 AzizArch kmix[12588]: org.kde.kmix: No such icon "mixer-capture"
May 07 08:58:51 AzizArch kmix[12588]: org.kde.kmix: No such icon "mixer-microphone"
May 07 08:58:51 AzizArch kmix[12588]: org.kde.kmix: No such icon "mixer-microphone"
May 07 08:58:51 AzizArch kmix[12588]: org.kde.kmix: No such icon "mixer-master"
May 07 08:58:51 AzizArch kmix[12588]: org.kde.kmix: No such icon "mixer-master"
May 07 08:58:51 AzizArch kmix[12588]: org.kde.kmix: No such icon "mixer-line"
May 07 08:58:51 AzizArch kmix[12588]: org.kde.kmix: No such icon "mixer-line"
May 07 08:58:51 AzizArch kmix[12588]: org.kde.kmix: No such icon "mixer-master"
May 07 08:58:51 AzizArch kmix[12588]: org.kde.kmix: No such icon "mixer-master"
May 07 08:58:51 AzizArch kmix[12588]: org.kde.kmix: No such icon "mixer-master"
May 07 08:58:51 AzizArch systemd[12207]: Created slice Slice /app/dbus-:1.2-org.kde.kded5.
May 07 08:58:51 AzizArch plasma-welcome[12428]: qrc:/qt/qml/org/kde/plasma/welcome/Welcome.qml:14:1: QML Welcome: Binding loop detected for property "implicitHeight"
May 07 08:58:51 AzizArch plasma-welcome[12428]: qrc:/qt/qml/org/kde/plasma/welcome/Welcome.qml:14:1: QML Welcome: Binding loop detected for property "implicitWidth"
May 07 08:58:51 AzizArch systemd[12207]: Started dbus-:1.2-org.kde.kded5@0.service.
May 07 08:58:51 AzizArch plasma-welcome[12428]: qrc:/qt/qml/org/kde/plasma/welcome/PowerfulWhenNeeded.qml:18:1: QML PowerfulWhenNeeded: Binding loop detected for property "implicitWidth"
May 07 08:58:51 AzizArch plasma-welcome[12428]: Qt Quick Layouts: Detected recursive rearrange. Aborting after two iterations.
May 07 08:58:51 AzizArch plasma-discover[12709]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                 Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                 If this causes problems, reconfigure your locale. See the locale(1) manual
                                                 for more information.
May 07 08:58:51 AzizArch plasma-welcome[12428]: kf.kcmutils: Trying to use rootObject before initialization is completed, whilst using setInitializationDelayed. Forcing completion
May 07 08:58:51 AzizArch plasmashell[12708]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                             Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                             If this causes problems, reconfigure your locale. See the locale(1) manual
                                             for more information.
May 07 08:58:51 AzizArch plasma-welcome[12428]: Qt Quick Layouts: Detected recursive rearrange. Aborting after two iterations.
May 07 08:58:51 AzizArch plasma-welcome[12428]: Qt Quick Layouts: Detected recursive rearrange. Aborting after two iterations.
May 07 08:58:51 AzizArch plasma-welcome[12428]: qrc:/qt/qml/org/kde/plasma/welcome/GenericPage.qml:28:9: QML QQuickItem: Binding loop detected for property "height"
May 07 08:58:51 AzizArch plasma-welcome[12428]: Qt Quick Layouts: Detected recursive rearrange. Aborting after two iterations.
May 07 08:58:51 AzizArch plasma-welcome[12428]: Qt Quick Layouts: Detected recursive rearrange. Aborting after two iterations.
May 07 08:58:51 AzizArch plasma-welcome[12428]: qrc:/qt/qml/org/kde/plasma/welcome/GenericPage.qml:28:9: QML QQuickItem: Binding loop detected for property "height"
May 07 08:58:51 AzizArch plasma-welcome[12428]: qrc:/qt/qml/org/kde/plasma/welcome/GenericPage.qml:28:9: QML QQuickItem: Binding loop detected for property "height"
May 07 08:58:51 AzizArch plasma-welcome[12428]: qrc:/qt/qml/org/kde/plasma/welcome/GenericPage.qml:28:9: QML QQuickItem: Binding loop detected for property "height"
May 07 08:58:51 AzizArch plasma-discover[12709]: org.kde.plasma.libdiscover: Didn't find any Discover backend!
May 07 08:58:51 AzizArch plasma-discover[12709]: org.kde.plasma.libdiscover: Couldn't find any backends
May 07 08:58:51 AzizArch plasmashell[12394]: file:///usr/share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/main.qml:162:21: QML KSortFilterProxyModel: Binding loop detected for property "sourceModel"
May 07 08:58:51 AzizArch plasmashell[12394]: file:///usr/share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/main.qml:162:21: QML KSortFilterProxyModel: Binding loop detected for property "sourceModel"
May 07 08:58:51 AzizArch konsole_show_menubar[12753]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                      Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                      If this causes problems, reconfigure your locale. See the locale(1) manual
                                                      for more information.
May 07 08:58:52 AzizArch konsole_show_menubar[12753]: kf.i18n: KLocalizedString: Domain is not set for this string, translation will not work. Please see https://api.kde.org/frameworks/ki18n/html/prg_guide.html msgid: "Your emails" msgid_plural: "" msgctxt: "EMAIL OF TRANSLATORS"
May 07 08:58:52 AzizArch konsole_show_menubar[12753]: kf.i18n: KLocalizedString: Domain is not set for this string, translation will not work. Please see https://api.kde.org/frameworks/ki18n/html/prg_guide.html msgid: "Your names" msgid_plural: "" msgctxt: "NAME OF TRANSLATORS"
May 07 08:58:52 AzizArch plasmashell[12394]: qml: SystemTray ItemLoader: Invalid state, cannot determine source!
May 07 08:58:52 AzizArch plasma-discover[12709]: qrc:/qt/qml/org/kde/discover/qml/LoadingPage.qml:3:1: QML LoadingPage: Created graphical object was not placed in the graphics scene.
May 07 08:58:52 AzizArch kded6[12359]: Registering ":1.43/StatusNotifierItem" to system tray
May 07 08:58:52 AzizArch plasma-discover[12709]: qrc:/qt/qml/org/kde/discover/qml/DiscoverWindow.qml:330:5: QML OverlaySheet: Binding loop detected for property "implicitHeight"
May 07 08:58:52 AzizArch plasmashell[12394]: qt.dbus.integration: Could not connect "org.cups.cupsd.Notifier" to PrinterFinishingsChanged(QString, QString, QString, uint, QString, bool) :
May 07 08:58:52 AzizArch plasmashell[12394]: org.kde.klipper: Failed to load history resource. Clipboard history cannot be read. :  History file does not exist
May 07 08:58:52 AzizArch plasmashell[12394]: kde.plasmashell: Activity added twice "38c9f555-fbd0-4206-9dc6-a6247d408d57"
May 07 08:58:52 AzizArch plasmashell[12394]: The cached device pixel ratio value was stale on window expose.  Please file a QTBUG which explains how to reproduce.
May 07 08:58:52 AzizArch plasmashell[12394]: QFont::setPointSizeF: Point size <= 0 (0.000000), must be greater than 0
May 07 08:58:53 AzizArch kioworker[12833]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                           Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                           If this causes problems, reconfigure your locale. See the locale(1) manual
                                           for more information.
May 07 08:58:53 AzizArch kioworker[12831]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                           Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                           If this causes problems, reconfigure your locale. See the locale(1) manual
                                           for more information.
May 07 08:58:53 AzizArch systemd[12207]: Finished Splash screen shown during boot.
May 07 08:58:53 AzizArch baloo_file_extractor[12844]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                      Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                      If this causes problems, reconfigure your locale. See the locale(1) manual
                                                      for more information.
May 07 08:58:53 AzizArch baloo_file_extractor[12844]: kf.idletime: Could not find any system poller plugin
May 07 08:58:53 AzizArch baloo_file_extractor[12844]: qt.core.qobject.connect: QObject::connect(KAbstractIdleTimePoller, KIdleTime): invalid nullptr parameter
May 07 08:58:53 AzizArch baloo_file_extractor[12844]: qt.core.qobject.connect: QObject::connect(KAbstractIdleTimePoller, KIdleTime): invalid nullptr parameter
May 07 08:58:55 AzizArch systemd[1]: systemd-rfkill.service: Deactivated successfully.
May 07 08:58:56 AzizArch systemd[12207]: Started Falkon - Web Browser.
May 07 08:58:56 AzizArch plasmashell[12852]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
May 07 08:58:56 AzizArch plasmashell[12852]: Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
May 07 08:58:56 AzizArch plasmashell[12852]: If this causes problems, reconfigure your locale. See the locale(1) manual
May 07 08:58:56 AzizArch plasmashell[12852]: for more information.
May 07 08:58:56 AzizArch plasmashell[12852]: Falkon: Creating new profile directory
May 07 08:58:56 AzizArch plasmashell[12852]: Error creating database schema "No query Unable to fetch row"
May 07 08:58:56 AzizArch plasmashell[12852]: Path override failed for key base::DIR_APP_DICTIONARIES and path '/usr/bin/qtwebengine_dictionaries'
May 07 08:58:56 AzizArch plasmashell[12852]: [12852:12852:0507/085856.453632:ERROR:zygote_host_impl_linux.cc(101)] Running as root without --no-sandbox is not supported. See https://crbug.com/638180.
May 07 08:58:57 AzizArch plasmashell[12394]: error creating screencast "Could not find window id 0"
May 07 08:59:00 AzizArch systemd[1]: dbus-:1.1-org.kde.powerdevil.chargethresholdhelper@4.service: Deactivated successfully.
May 07 08:59:00 AzizArch systemd[1]: dbus-:1.1-org.kde.powerdevil.backlighthelper@4.service: Deactivated successfully.
May 07 08:59:00 AzizArch systemd[1]: dbus-:1.1-org.kde.powerdevil.discretegpuhelper@4.service: Deactivated successfully.
May 07 08:59:01 AzizArch systemd[1]: dbus-:1.1-org.kde.kded.smart@4.service: Deactivated successfully.
May 07 08:59:03 AzizArch systemd[12207]: app-org.kde.plasma\x2dwelcome-c670f6387c58437c8dbaaddf791dd366.scope: Consumed 2.454s CPU time.
May 07 08:59:05 AzizArch plasmashell[12394]: qrc:/qt/qml/org/kde/kirigamiaddons/components/Avatar.qml:201:9: QML QQuickImage: Error decoding: qrc:/qt/qml/org/kde/kirigamiaddons/components/Avatar.qml?timestamp=1715061545079: Unsupported image format
May 07 08:59:05 AzizArch plasmashell[12394]: qrc:/qt/qml/org/kde/kirigamiaddons/components/Avatar.qml:201:9: QML QQuickImage: Error decoding: qrc:/qt/qml/org/kde/kirigamiaddons/components/Avatar.qml?timestamp=1715061545079: Unsupported image format
May 07 08:59:05 AzizArch plasmashell[12394]: qrc:/qt/qml/org/kde/kirigamiaddons/components/Avatar.qml:201:9: QML QQuickImage: Error decoding: qrc:/qt/qml/org/kde/kirigamiaddons/components/Avatar.qml?timestamp=1715061545079: Unsupported image format
May 07 08:59:05 AzizArch plasmashell[12394]: qrc:/qt/qml/org/kde/kirigamiaddons/components/Avatar.qml:201:9: QML QQuickImage: Error decoding: qrc:/qt/qml/org/kde/kirigamiaddons/components/Avatar.qml?timestamp=1715061545079: Unsupported image format
May 07 08:59:06 AzizArch plasmashell[12394]: qt.svg.draw: The requested buffer size is too big, ignoring
May 07 08:59:06 AzizArch plasmashell[12394]: qt.svg.draw: The requested buffer size is too big, ignoring
May 07 08:59:06 AzizArch plasmashell[12394]: qt.svg.draw: The requested buffer size is too big, ignoring
May 07 08:59:06 AzizArch plasmashell[12394]: qt.svg.draw: The requested buffer size is too big, ignoring
May 07 08:59:06 AzizArch plasmashell[12394]: qt.svg.draw: The requested buffer size is too big, ignoring
May 07 08:59:06 AzizArch plasmashell[12394]: qt.svg.draw: The requested buffer size is too big, ignoring
May 07 08:59:06 AzizArch plasmashell[12394]: qt.svg.draw: The requested buffer size is too big, ignoring
May 07 08:59:06 AzizArch plasmashell[12394]: qt.svg.draw: The requested buffer size is too big, ignoring
May 07 08:59:06 AzizArch plasmashell[12394]: qt.svg.draw: The requested buffer size is too big, ignoring
May 07 08:59:06 AzizArch plasmashell[12394]: qt.svg.draw: The requested buffer size is too big, ignoring
May 07 08:59:06 AzizArch plasmashell[12394]: qt.svg.draw: The requested buffer size is too big, ignoring
May 07 08:59:06 AzizArch plasmashell[12394]: qt.svg.draw: The requested buffer size is too big, ignoring
May 07 08:59:06 AzizArch plasmashell[12394]: qt.svg.draw: The requested buffer size is too big, ignoring
May 07 08:59:06 AzizArch plasmashell[12394]: qt.svg.draw: The requested buffer size is too big, ignoring
May 07 08:59:06 AzizArch plasmashell[12394]: qt.svg: <input>:24:6: Could not resolve property: #c
May 07 08:59:08 AzizArch plasmashell[12394]: Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
May 07 08:59:08 AzizArch kioworker[12908]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                           Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                           If this causes problems, reconfigure your locale. See the locale(1) manual
                                           for more information.
May 07 08:59:09 AzizArch plasmashell[12394]: kf.kunitconversion: currency conversion table data obtained via network
May 07 08:59:10 AzizArch systemd[12207]: Started Firefox Web Browser - Web Browser.
May 07 08:59:10 AzizArch plasmashell[12916]: [12916, Main Thread] WARNING: Locale not supported by C library.
May 07 08:59:10 AzizArch plasmashell[12916]:         Using the fallback 'C' locale.: 'glib warning', file /usr/src/debug/firefox/firefox-125.0.3/toolkit/xre/nsSigHandlers.cpp:187
May 07 08:59:10 AzizArch firefox[12916]: Locale not supported by C library.
                                                 Using the fallback 'C' locale.
May 07 08:59:10 AzizArch systemd-logind[590]: /boot/loader/loader.conf:3: Unknown line 'yimeout', ignoring.
May 07 08:59:10 AzizArch systemd[1]: Starting Time & Date Service...
May 07 08:59:10 AzizArch systemd[1]: Started Time & Date Service.
May 07 08:59:11 AzizArch systemd[12207]: Starting Accessibility services bus...
May 07 08:59:11 AzizArch systemd[12207]: Started Accessibility services bus.
May 07 08:59:11 AzizArch plasmashell[12394]: error creating screencast "Could not find window id 0"
May 07 08:59:11 AzizArch rtkit-daemon[840]: Supervising 0 threads of 0 processes of 0 users.
May 07 08:59:11 AzizArch rtkit-daemon[840]: Supervising 0 threads of 0 processes of 0 users.
May 07 08:59:11 AzizArch rtkit-daemon[840]: Supervising 0 threads of 0 processes of 0 users.
May 07 08:59:11 AzizArch rtkit-daemon[840]: Supervising 0 threads of 0 processes of 0 users.
May 07 08:59:11 AzizArch rtkit-daemon[840]: Supervising 0 threads of 0 processes of 0 users.
May 07 08:59:11 AzizArch rtkit-daemon[840]: Supervising 0 threads of 0 processes of 0 users.
May 07 08:59:11 AzizArch rtkit-daemon[840]: Successfully made thread 13081 of process 12916 owned by '0' RT at priority 10.
May 07 08:59:11 AzizArch rtkit-daemon[840]: Supervising 1 threads of 1 processes of 1 users.
May 07 08:59:12 AzizArch rtkit-daemon[840]: Supervising 1 threads of 1 processes of 1 users.
May 07 08:59:12 AzizArch rtkit-daemon[840]: Supervising 1 threads of 1 processes of 1 users.
May 07 08:59:14 AzizArch rtkit-daemon[840]: Supervising 1 threads of 1 processes of 1 users.
May 07 08:59:14 AzizArch rtkit-daemon[840]: Supervising 1 threads of 1 processes of 1 users.
May 07 08:59:14 AzizArch rtkit-daemon[840]: Supervising 1 threads of 1 processes of 1 users.
May 07 08:59:14 AzizArch rtkit-daemon[840]: Supervising 1 threads of 1 processes of 1 users.
May 07 08:59:14 AzizArch rtkit-daemon[840]: Supervising 1 threads of 1 processes of 1 users.
May 07 08:59:14 AzizArch rtkit-daemon[840]: Supervising 1 threads of 1 processes of 1 users.
May 07 08:59:21 AzizArch rtkit-daemon[840]: Supervising 1 threads of 1 processes of 1 users.
May 07 08:59:21 AzizArch rtkit-daemon[840]: Supervising 1 threads of 1 processes of 1 users.
May 07 08:59:23 AzizArch kded6[12359]: Registering ":1.56/StatusNotifierItem" to system tray
May 07 08:59:23 AzizArch systemd[1]: systemd-localed.service: Deactivated successfully.
May 07 08:59:37 AzizArch plasmashell[12394]: org.kde.pim.akonadi_search_pim: Xapian Database does not exist at  "/root/.local/share/akonadi/search_db/contacts/"
May 07 08:59:37 AzizArch plasmashell[12394]: org.kde.pim.akonadi_search_pim: Xapian Database does not exist at  "/root/.local/share/akonadi/search_db/emailContacts/"
May 07 08:59:37 AzizArch systemd[12207]: Starting KRunner provider for baloo file indexer...
May 07 08:59:37 AzizArch baloorunner[13310]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                             Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                             If this causes problems, reconfigure your locale. See the locale(1) manual
                                             for more information.
May 07 08:59:37 AzizArch systemd[12207]: Started KRunner provider for baloo file indexer.
May 07 08:59:38 AzizArch plasmashell[12394]: org.kde.pim.akonadi_search_pim: Xapian Database does not exist at  "/root/.local/share/akonadi/search_db/contacts/"
May 07 08:59:38 AzizArch plasmashell[12394]: org.kde.pim.akonadi_search_pim: Xapian Database does not exist at  "/root/.local/share/akonadi/search_db/emailContacts/"
May 07 08:59:40 AzizArch systemd[1]: systemd-timedated.service: Deactivated successfully.
May 07 08:59:41 AzizArch systemd[12207]: Started Konsole - Terminal.
May 07 08:59:41 AzizArch konsole[13325]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                         Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                         If this causes problems, reconfigure your locale. See the locale(1) manual
                                         for more information.
May 07 09:00:12 AzizArch kwin_wayland[12250]: qt.dbus.integration: QDBusConnection: couldn't handle call to Teardown, no slot matched
May 07 09:00:12 AzizArch kwin_wayland[12250]: qt.dbus.integration: QDBusConnection: couldn't handle call to Teardown, no slot matched
May 07 09:00:12 AzizArch kwin_wayland[12250]: qt.dbus.integration: Could not find slot Krunner1Adaptor::Teardown
May 07 09:00:12 AzizArch baloorunner[13310]: qt.dbus.integration: QDBusConnection: couldn't handle call to Teardown, no slot matched
May 07 09:00:12 AzizArch baloorunner[13310]: qt.dbus.integration: QDBusConnection: couldn't handle call to Teardown, no slot matched
May 07 09:00:12 AzizArch baloorunner[13310]: qt.dbus.integration: Could not find slot Krunner1Adaptor::Teardown

as far as my limited knowledge of logs goes there's nothing related to xorg here, i'll try the tty

Offline

#16 2024-05-07 07:55:39

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 73,878

Re: [SOLVED] KDE plasma not starting on boot, arch boots without a de

May 07 08:58:38 AzizArch systemd[1]: Started Session 3 of User root.
May 07 08:58:38 AzizArch login[12187]: ROOT LOGIN ON tty1
…
May 07 08:58:48 AzizArch kde-systemd-start-condition[12247]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                             Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                             If this causes problems, reconfigure your locale. See the locale(1) manual
                                                             for more information.
May 07 08:58:48 AzizArch kwin_wayland_wrapper[12246]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                      Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                      If this causes problems, reconfigure your locale. See the locale(1) manual
                                                      for more information.

Don't run GUI sessions as root!

There's no mention of SDDM presumingly because

it doesn't start at boot, startplasma-x11 doesn't work

startplasma-x11 probably would require a running X11 server and w/o SDDM you'd need a proper xinitrc to run startx/xnit with it.

But maybe we focus on the SDDM situation.

From the tty:

sudo journalctl -b | curl -F 'file=@-' 0x0.st

and post that link.
Also

systemctl status sddm | curl -F 'file=@-' 0x0.st

Offline

#17 2024-05-07 13:44:22

Scimmia
Fellow
Registered: 2012-09-01
Posts: 13,655

Re: [SOLVED] KDE plasma not starting on boot, arch boots without a de

ultraaziz wrote:
Scimmia wrote:
ultraaziz wrote:

replaced it with startplasma-x11 and removed twm, xterm and xclock, still the same thing

Same what thing? So far you've talked about SDDM, startx/xinit, startplasma-x11, and startplasma-wayland, I have no idea what you're actually doing at this point.

this error:

 $DISPLAY is not set or cannot connect to the X server 

You get that when doing WHAT?

Offline

#18 2024-05-08 11:38:43

ultraaziz
Member
Registered: 2024-05-05
Posts: 18

Re: [SOLVED] KDE plasma not starting on boot, arch boots without a de

seth wrote:

From the tty:

sudo journalctl -b | curl -F 'file=@-' 0x0.st

and post that link.

first link:

http://0x0.st/X8a4.txt
seth wrote:

Also

systemctl status sddm | curl -F 'file=@-' 0x0.st

and this one:

http://0x0.st/X8at.txt

Last edited by ultraaziz (2024-05-08 11:39:12)

Offline

#19 2024-05-08 11:39:41

ultraaziz
Member
Registered: 2024-05-05
Posts: 18

Re: [SOLVED] KDE plasma not starting on boot, arch boots without a de

Scimmia wrote:
ultraaziz wrote:
Scimmia wrote:

Same what thing? So far you've talked about SDDM, startx/xinit, startplasma-x11, and startplasma-wayland, I have no idea what you're actually doing at this point.

this error:

 $DISPLAY is not set or cannot connect to the X server 

You get that when doing WHAT?

startplasma-x11
sorry for not being clear

Offline

#20 2024-05-08 14:27:31

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 73,878

Re: [SOLVED] KDE plasma not starting on boot, arch boots without a de

SDDM isn't enabled and not started in that journal.

May 08 14:27:04 AzizArch login[626]: LOGIN ON tty1 BY Aziz

If you want to start plasma/x11 from there edit your xinitrc

# keep the entire head until here
…
# twm &
# xclock -geometry 50x50-1+1 &
# xterm -geometry 80x50+494+51 &
# xterm -geometry 80x20+494-0 &
export DESKTOP_SESSION=plasma
exec startplasma-x11

then run "startx" or "xinit" from teh TTY login.

Offline

#21 2024-05-08 14:44:27

ultraaziz
Member
Registered: 2024-05-05
Posts: 18

Re: [SOLVED] KDE plasma not starting on boot, arch boots without a de

seth wrote:

SDDM isn't enabled and not started in that journal.

May 08 14:27:04 AzizArch login[626]: LOGIN ON tty1 BY Aziz

do i start it with

 systemctl enable sddm

because I tried that before and it didn't do anything

Last edited by ultraaziz (2024-05-08 14:44:47)

Offline

#22 2024-05-08 15:37:13

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 73,878

Re: [SOLVED] KDE plasma not starting on boot, arch boots without a de

V1del wrote:

Your .xinitrc is not used by SDDM

seth wrote:

then run "startx" or "xinit" from teh TTY login.

if you want to know why SDDM doesn't work, enable it and post the journal of a boot that actually covers that failure.
Also your Xorg log, https://wiki.archlinux.org/title/Xorg#General

Offline

#23 2024-05-08 16:25:34

Scimmia
Fellow
Registered: 2012-09-01
Posts: 13,655

Re: [SOLVED] KDE plasma not starting on boot, arch boots without a de

ultraaziz wrote:
Scimmia wrote:
ultraaziz wrote:

this error:

 $DISPLAY is not set or cannot connect to the X server 

You get that when doing WHAT?

startplasma-x11
sorry for not being clear

Just running that from the terminal? That's not supposed to work, the link I gave initially should have made that clear.

Offline

#24 2024-05-12 13:51:38

ultraaziz
Member
Registered: 2024-05-05
Posts: 18

Re: [SOLVED] KDE plasma not starting on boot, arch boots without a de

seth wrote:
V1del wrote:

Your .xinitrc is not used by SDDM

seth wrote:

then run "startx" or "xinit" from teh TTY login.

if you want to know why SDDM doesn't work, enable it and post the journal of a boot that actually covers that failure.
Also your Xorg log, https://wiki.archlinux.org/title/Xorg#General

herre's my Xorg log:

 [   831.837] 
X.Org X Server 1.21.1.13
X Protocol Version 11, Revision 0
[   831.837] Current Operating System: Linux AzizArch 6.8.9-arch1-2 #1 SMP PREEMPT_DYNAMIC Tue, 07 May 2024 21:35:54 +0000 x86_64
[   831.837] Kernel command line: initrd=\initramfs-linux.img root=UUID=ce58bdbb-4286-4091-aa36-1608fe4cd0dd rw
[   831.837]  
[   831.837] Current version of pixman: 0.43.4
[   831.837] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[   831.837] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   831.837] (==) Log file: "/var/log/Xorg.0.log", Time: Sun May 12 16:43:27 2024
[   831.837] (==) Using config file: "/etc/X11/xorg.conf"
[   831.837] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[   831.837] (==) No Layout section.  Using the first Screen section.
[   831.837] (==) No screen section available. Using defaults.
[   831.837] (**) |-->Screen "Default Screen Section" (0)
[   831.837] (**) |   |-->Monitor "<default monitor>"
[   831.837] (==) No device specified for screen "Default Screen Section".
	Using the first device section listed.
[   831.837] (**) |   |-->Device "NVIDIA Card"
[   831.837] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[   831.837] (**) Allowing byte-swapped clients
[   831.837] (==) Automatically adding devices
[   831.837] (==) Automatically enabling devices
[   831.837] (==) Automatically adding GPU devices
[   831.837] (==) Automatically binding GPU devices
[   831.837] (==) Max clients allowed: 256, resource mask: 0x1fffff
[   831.837] (WW) The directory "/usr/share/fonts/misc" does not exist.
[   831.837] 	Entry deleted from font path.
[   831.837] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[   831.837] 	Entry deleted from font path.
[   831.837] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[   831.837] 	Entry deleted from font path.
[   831.837] (==) FontPath set to:
	/usr/share/fonts/TTF,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[   831.837] (==) ModulePath set to "/usr/lib/xorg/modules"
[   831.837] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[   831.837] (II) Module ABI versions:
[   831.837] 	X.Org ANSI C Emulation: 0.4
[   831.837] 	X.Org Video Driver: 25.2
[   831.837] 	X.Org XInput driver : 24.4
[   831.837] 	X.Org Server Extension : 10.0
[   831.838] (++) using VT number 1

[   831.839] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[   831.839] (II) xfree86: Adding drm device (/dev/dri/card2)
[   831.839] (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card2
[   831.839] (II) systemd-logind: got fd for /dev/dri/card2 226:2 fd 13 paused 0
[   831.840] (II) xfree86: Adding drm device (/dev/dri/card1)
[   831.840] (II) Platform probe for /sys/devices/pci0000:00/0000:00:06.2/0000:02:00.0/drm/card1
[   831.840] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 14 paused 0
[   831.840] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[   831.841] (--) PCI:*(0@0:2:0) 8086:46a8:17aa:3e7e rev 12, Mem @ 0x6012000000/16777216, 0x4000000000/268435456, I/O @ 0x00004000/64, BIOS @ 0x????????/131072
[   831.841] (--) PCI: (2@0:0:0) 10de:1f9f:17aa:3e7e rev 161, Mem @ 0x51000000/16777216, 0x6000000000/268435456, 0x6010000000/33554432, I/O @ 0x00003000/128
[   831.841] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[   831.841] (II) LoadModule: "glx"
[   831.841] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[   831.842] (II) Module glx: vendor="X.Org Foundation"
[   831.842] 	compiled for 1.21.1.13, module version = 1.0.0
[   831.842] 	ABI class: X.Org Server Extension, version 10.0
[   831.842] (II) LoadModule: "nvidia"
[   831.842] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[   831.845] (II) Module nvidia: vendor="NVIDIA Corporation"
[   831.845] 	compiled for 1.6.99.901, module version = 1.0.0
[   831.845] 	Module class: X.Org Video Driver
[   831.845] (II) NVIDIA dlloader X Driver  550.78  Sun Apr 14 06:27:13 UTC 2024
[   831.845] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[   831.845] (II) systemd-logind: releasing fd for 226:1
[   831.846] (II) Loading sub module "fb"
[   831.846] (II) LoadModule: "fb"
[   831.846] (II) Module "fb" already built-in
[   831.846] (II) Loading sub module "wfb"
[   831.846] (II) LoadModule: "wfb"
[   831.846] (II) Loading /usr/lib/xorg/modules/libwfb.so
[   831.846] (II) Module wfb: vendor="X.Org Foundation"
[   831.846] 	compiled for 1.21.1.13, module version = 1.0.0
[   831.846] 	ABI class: X.Org ANSI C Emulation, version 0.4
[   831.847] (EE) No devices detected.
[   831.847] (EE) 
Fatal server error:
[   831.847] (EE) no screens found(EE) 
[   831.847] (EE) 
Please consult the The X.Org Foundation support 
	 at http://wiki.x.org
 for help. 
[   831.847] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[   831.847] (EE) 
[   831.850] (EE) Server terminated with error (1). Closing log file.

sorry for taking a while to respond

Offline

#25 2024-05-12 14:19:31

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 73,878

Re: [SOLVED] KDE plasma not starting on boot, arch boots without a de

[   831.837] (==) Using config file: "/etc/X11/xorg.conf"
…
[   831.847] (EE) no screens found(EE) 

Remove that config, try again, post an udpated Xorg log.
Also enable https://wiki.archlinux.org/title/NVIDIA … de_setting - use the "nvidia_drm.modeset=1" kernel parameter (modprobe.conf won't do!)

Offline

Board footer

Powered by FluxBB