You are not logged in.
ls -lR /mnt/boot
Printed out files in that directory
LC_ALL=C pacman --root /mnt -Qkk | grep -v ', 0 altered files' | grep -v backup
Printed a lot of stuff about installed packages.
After adding the kernel parameters and booting, it printed stuff about drives after "Loding Linux" appeared.
Offline
Yeah, I know that it prints "stuff", the question is what that "stuff" is.
Post the outputs of the two commands
Edit
ls -lR /mnt/boot > /tmp/stuff
LC_ALL=C pacman --root /mnt -Qkk 2>&1 | grep -v ', 0 altered files' | grep -v backup >> /tmp/stuff
cat /tmp/stuff | curl -F 'file=@-' 0x0.st
Last edited by seth (2024-11-03 07:42:05)
Offline
Post the outputs of the two commands
Yeah, I should have figured that out. https://0x0.st/XGWG.txt
Offline
That's 21MB full of errors…
What happened to that system??
Anyway, none of the deviations looks like it's going to break the boot process - but you'll likely not get a graphical target out of that.
Can you boot the multi-user.target (2nd link below)? In doubt along "nomodeset" and also remove the "quiet" parameter.
Offline
Can you boot the multi-user.target?
No
Edit: forgot to mention, when adding the nomodeset parameter, some text appears above "Loading Linux linux". It says: "Booting a command list". I don't know if that matters.
Last edited by guasap209 (2024-11-03 15:59:43)
Offline
Try to install and boot the LTS kernel.
Offline
Maybe I'm doing something wrong, but after installing limux-lts and running grub-mkconfig -o /boot/grub/grub.cfg there aren't any new entries to boot the new kernel. I'm probably doing something wrong but I con't figure it out.
Offline
Maybe I'm doing something wrong, but after installing limux-lts and running grub-mkconfig -o /boot/grub/grub.cfg there aren't any new entries to boot the new kernel. I'm probably doing something wrong but I con't figure it out.
this hints to writing to the wrong grub.cfg - likely by not/bad/wrong ESP mount or shadowing
from arch install media: mount every partition to its own mountpoint (create required folders in /mnt) and scan them all for grub.cfg - likely you will find at least two or more
Offline
I've found two: one is in /boot/grub. The other one is in
/nix/store/33w6fk9v0gjcwj0h2w3d803yjga8zv6w-nixpkgs/nixpkgs/pkgs/tools/misc/grub/pvgrub_image/configs.
Offline
ls /mnt/boot
cat /mnt/boot/grub/grub.cfg
Offline
Offline
I've found two: one is in /boot/grub. The other one is in
/nix/store/33w6fk9v0gjcwj0h2w3d803yjga8zv6w-nixpkgs/nixpkgs/pkgs/tools/misc/grub/pvgrub_image/configs.
sanity check: are you using VANILLA arch - or do you use NixOS?
Offline
Arch, I don't know why I even installed the package manager.
Offline
You didn't install the LTS kernel into that path and also there's no initramfs.
Boot the install iso, mount sda3 int /mnt, "arch-chroot /mnt"
pacman -S linux-lts 2>&1 | tee /tmp/pacman.log
cat /tmp/pacman.log | curl -F 'file=@-' 0x0.st
Offline
http://0x0.st/XGkU.txt
Pacman gives me an error when I install the lts kernel it didn't give before.
Offline
cat: write error: No space left on device
df -h
Offline
Offline
/dev/sda1 99M 99M 3.0K 100% /boot
Why have you mounted sda1 into /boot?
https://bbs.archlinux.org/viewtopic.php … 5#p2206025
Offline
Because I had it already mounted there from when I was sesrching for the grub.cfg.
Offline
You are not booting from a boot partition.
Don't mount that there, re-install the LTS kernel, post an update on the commands from #35 and #39
Offline
#35:
ls /mnt/boot
gives
efi initramfs-linux.img initramfs-linux-lts.img initramfs-linux-zen.img vmlinuz-linux vmlinuz-linux-zen
grub initramfs-linux-fallback.img initramfs-linux-lts-fallback.img initramfs-linux-fallback.img vmlinuz-linux-lts
The grub.cfg: http://0x0.st/XDrp.txt
Offline
You've a bogus /etc/locale.conf and still need to add the LTS kernel to the grub config, running grub-mkconfig -o /boot/grub/grub.cfg from the chroot should™ do.
Offline
It boots. I booted the lts kernel and it dropped me into a tty instead of sddm appearing. Also the other 2 kernel work and it defaults to the zen one for some reason. Thanks for the help!
Last edited by guasap209 (2024-11-07 15:11:08)
Offline