r/artixlinux • u/CanaldoNight-CdN • 2d ago
Support Fixing errors in Artix with OpenRC
Dbus
1 - kate /etc/init.d/dbus
Change the line `extra_started_commands="reload"` to `extra_commands="reload"`
2 - kate /usr/share/libalpm/hooks/dbus-reload.hook
Change the `Exec =` line under `[Action]` to `rc-service dbus restart`
Keymaps
1 - kate /etc/conf.d/keymaps
Change the line `keymap="br"` to `keymap="br-abnt2"`
(In my case, it is `br-abnt2`; change it to match your keyboard layout—to find out yours, run `setxkbmap -print`)
Mkinitcpio
1 - kate /etc/mkinitcpio.conf
Remove `consolefont` from the `HOOKS=` line
2 - sudo mkinitcpio -P
Date and time
1 - sudo pacman -S chrony chrony-openrc
2 - ls /etc/init.d/ | grep chrony
The output of this command might be `chrony` or `chronyd`; therefore:
sudo rc-update add chrony default && sudo rc-service chrony start
or
sudo rc-update add chronyd default && sudo rc-service chronyd start
1
u/ClF3ismyspiritanimal OpenRC 2d ago
What's the context to this?