KDE on FreeBSD 13.0 doesn't start at boot

Don't run startx as root or sudo startx, just run startx as a 'regular' user. Make sure things work, then install and enable x11/sddm.
 
Don't run startx as root or sudo startx, just run startx as a 'regular' user. Make sure things work, then install and enable x11/sddm.
Thanks SirDice for your very fast reply! :)

I tried to do "startx" with my normal user but it starts "x" and not "kde" so I must use "sudo startx" with normal user to start KDE maybe I need to fix it before to go further...

GabrieleMax
 

Welcome to FreeBSD Forums.

Part of that guide is sysutils/desktop-installer. Did you follow that part? (If so, SDDM should be installed already.)

FreeBSD bug 260930 – sysutils/desktop-installer update package description



If you start afresh without desktop-installer, try the KDE-provided quick start <https://community.kde.org/FreeBSD/Setup#Quick_start>:
  • graphics
  • KDE and the rest (four steps).
 
I tried to do "startx" with my normal user but it starts "x" and not "kde"
That's called twm, and is the default window manager of Xorg.

A file named ${HOME}/.xinitrc is used to 'select' the window manager or desktop environment you want to run with startx. For KDE it should have this:
Code:
exec ck-launch-session startplasma-x11
See Handbook: 5.7.2. KDE
 
Welcome to FreeBSD Forums.

Part of that guide is sysutils/desktop-installer. Did you follow that part? (If so, SDDM should be installed already.)

FreeBSD bug 260930 – sysutils/desktop-installer update package description



If you start afresh without desktop-installer, try the KDE-provided quick start <https://community.kde.org/FreeBSD/Setup#Quick_start>:
  • graphics
  • KDE and the rest (four steps).
Every daemons are ok:

Code:
pkg install -y kde5 sddm xorg
sysrc dbus_enable="YES" && service dbus start
sysrc sddm_enable="YES" && service sddm start

I followed all guides but I didn't understand what is wrong! :(
 
Back
Top