Hello Artix people! I recently migrated from Arch, and first of all, hello to the entire community! I'm loving Artix!
Anyway, I'm using dinit as my init system, but I can't log in by simply entering my user's password (the only user) like I did before, and I don't understand where I'm going wrong.
Useful info:
I don't use login or display manager but I log in from tty.
I use River compositor (Wayland) which starts automatically because of these lines in my .zprofile:
if [ -z "$WAYLAND_DISPLAY"] && [ $(tty) = "/dev/tty1" ]; then
exec river > ~/.config/river/.river.log 2>&1
fi
Here's what I did
I created and saved the file agetty-tty1 at the following path: /etc/dinit.d/config/agetty-tty1.conf
with the following content:
#!/bin/sh
# DO NOT REMOVE THIS FILE!
# Note: You can copy and rename this file to the name of the tty you
# want (e.g.: /etc/dinit.d/config/agetty-tty1.conf will make a
# configuration specific to tty1)
GETTY_BAUD=38400
GETTY_TERM=linux
GETTY_ARGS="--skip-login -o '-p -- artix_peter' --noclear"
Heres's the content of /etc/dinit.d/config/agetty-default.conf:
#!/bin/sh
# DO NOT REMOVE THIS FILE!
# Note: You can copy and rename this file to the name of the tty you
# want (e.g.: /etc/dinit.d/config/agetty-tty1.conf will make a
# configuration specific to tty1)
GETTY_BAUD=38400
GETTY_TERM=linux
GETTY_ARGS=
With this configuration when I boot the system, I see the boot messages normally, but when I get to the point where It usually asked me for the user's name, nothing happens. I can type on the keyboard, but the system doesn't respond. I need to change my tty to be able to control the system again.
Could somone can help me figured out where I went wrong?
I'm quite a noob so I apologize if there are some useful informations missing.
Thanks in advance for any kind of help