Re: "Replace systemd-dummy with system/elogind? [Y/n] n"
Reply #2 –
Well the migration wiki states this
So I'm not sure about that ?
Anyway I took the plunge and installed elogind. Rebooted and couldn't boot into Plasma (or openbox/KDE) but could just openbox
Quickly found out that /tmp/runtime-user was not being created which stopped Plasma and KDE from starting. Creating the dir (with proper ownership and permissions) allowed Plasma to start.
It didn't make a difference whether elogind was enabled as a service or not (and I tried both default and boot) the dir was not created. Altered my PKGBUILD to include a systemd 'provides' and built and installed it which removed elogind.
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.
# Maintainer: Your Name <[email protected]>
pkgname=myprovides
pkgver=1
pkgrel=3
arch=('x86_64')
license=('WTFPL')
provides=('elogind' 'systemd')
conflicts=('elogind')
package() {
cd $scrdir
}
Everything worked again.
It is most likely something I have done in the past.
I will edit the new elogind PKGBUILD to just install the systemd libs and see what happens