You are not logged in.
Where would I comment fstab?
Offline
After some research I found my fstab file. Here's its contents:
# Static information about the filesystems.
# See fstab(5) for details.
# <file system> <dir> <type> <options> <dump> <pass>
# /dev/sdb2
UUID=ee3285da-69ed-4174-8a37-2ce1308a7d98 / btrfs rw,relatime,compress=zstd:3,ssd,discard=async,space_cache=v2,subvolid=256,subvol=/@ 0 0
# /dev/sdb2
UUID=ee3285da-69ed-4174-8a37-2ce1308a7d98 /home btrfs rw,relatime,compress=zstd:3,ssd,discard=async,space_cache=v2,subvolid=257,subvol=/@home 0 0
# /dev/sdb2
UUID=ee3285da-69ed-4174-8a37-2ce1308a7d98 /var/log btrfs rw,relatime,compress=zstd:3,ssd,discard=async,space_cache=v2,subvolid=258,subvol=/@log 0 0
# /dev/sdb2
UUID=ee3285da-69ed-4174-8a37-2ce1308a7d98 /var/cache/pacman/pkg btrfs rw,relatime,compress=zstd:3,ssd,discard=async,space_cache=v2,subvolid=259,subvol=/@pkg 0 0
# /dev/sdb2
UUID=ee3285da-69ed-4174-8a37-2ce1308a7d98 /.snapshots btrfs rw,relatime,compress=zstd:3,ssd,discard=async,space_cache=v2,subvolid=260,subvol=/@.snapshots 0 0
# /dev/sdb1
UUID=4494-6361 /boot vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro 0 2Offline
Yea… great … comment the last line.
Offline
My system booted after commenting it out! And it seems that the versions are mismatched as uname -a returns a different version then the one I installled. I attempted to run sudo pacman -S linux and got a “Can’t write to /boot” error.
Offline
The /boot parttion is currently not mounted and you cannot mount it because you lack the vfat module.
cat /proc/cmdline
ls -lR /bootOffline
I was able to fix it by opening a live installation, chrooting into my system, and specifically running
mount /dev/sdb1 /mnt/bootinstead of
mount /dev/sdb2 /mnt/boot(sdb1 is my boot partition). After chrooting running a simple
sudo pacman -S linux linux-headerswhich reinstalls the kernel on the correct partition
Offline