Hi, I was using arch linux with openrc-eudev without systemd until i had a error in the openrc-eudev repository i readed that the repository will not be updated and all about Artix
Perhaps someone can help me with a guide to upgrade to Artix from openrc-eudev
i suppose this step will be no necessary as i dont have systemd Installed
Save a list of your running systemd daemons, you'll need to install the respective openrc scripts afterwards.
systemctl list-units --state=running | grep -v systemd | awk '{print $1}' | grep service > daemon.list
i have my grub installed and a Boot partition in Funtoo linux as i have a triple boot system, Funtoo, arch and freebsd
how should i edit the grub.conf file?
below is my grub.cfg file
set timeout=3
insmod part_gpt
insmod ext2
set root=(hostdisk//dev/sda,gpt4)
search --no-floppy --fs-uuid --set e3d7a984-532d-4b4c-a58d-aaa78480854b
if loadfont /grub/unifont.pf2; then
set gfxmode=text
insmod all_video
terminal_output gfxterm
fi
set menu_color_normal=cyan/blue
set menu_color_highlight=blue/cyan
menuentry "Funtoo Linux - linux-4.4.2-gentoo" {
insmod part_gpt
insmod ext2
set root=(hostdisk//dev/sda,gpt4)
search --no-floppy --fs-uuid --set e3d7a984-532d-4b4c-a58d-aaa78480854b
linux /vmlinuz-4.4.2-gentoo rootfstype=xfs root=/dev/sda6
set gfxpayload=keep
}
menuentry "Funtoo Linux - linux-4.9.34-gentoo" {
insmod part_gpt
insmod ext2
set root=(hostdisk//dev/sda,gpt4)
search --no-floppy --fs-uuid --set e3d7a984-532d-4b4c-a58d-aaa78480854b
linux /vmlinuz-4.9.34-gentoo rootfstype=xfs root=/dev/sda6
set gfxpayload=keep
}
menuentry "arch linux Damian" {
insmod part_gpt
insmod ext2
set root=(hostdisk//dev/sda,gpt1)
search --no-floppy --fs-uuid --set 9c2db628-3db6-48a4-82ec-31bbf9733d64
linux /vmlinuz-linux root=/dev/sda2 rootfstype=ext4
initrd /initramfs-linux.img
set gfxpayload=keep
}
menuentry "FreeBSD" {
insmod part_gpt
set root='(hd1,2)'
kfreebsd /boot/loader
}
i have console display manager installed does elogind change something in my display manager?
best regards