You are not logged in.
Pages: 1
Ive been using arch for not a very long time and its the first time i couldnt solve an issue with a simple search,
at first since 6.17.7 til 6.17.9 my kernel had booting issue, which was mounting /boot on boot, was easily solved with booting arch installation usb and remaking initcpio image
now, when i try to upgrade the kernel it gets stuck on start job for /dev/zram0, after that it boots completely fine, but into 6.17.9 and not into 6.18.2, also, i have no internet.
i do not know which logs or command outputs to share here please tell me in replies
Last edited by lobotomiteqt5 (2026-01-03 19:58:22)
Offline
Is there any visible error or something in the last journal ("sudo journalctl --dmesg -b-1")?
Offline
it looks like it didnt even see 6.18.2 and is identical to my current boot, after i downgraded to working version ("Linux version 6.17.9-arch1-1 (linux@archlinux)" in both -b and -b-1)
Offline
You're either booting from a dedicated partition and forgot to mount it into /boot before updating or are booting from the root partition and mount a spurious partition there.
cat /proc/cmdlineOnline
im not sure what is xinitrc going to do since i boot into tty by default and have no xorg desktop environments installed
BOOT_IMAGE=/@/boot/vmlinuz-linux root=UUID=8035711a-2052-47fd-8acd-f64f9142f00d rw rootflags=subvol=@ zswap.enabled=0 rootfstype=btrfs loglevel=3
Offline
The four links at the bottom are my signature…
You're booting from a btrfs subvolume, so what do
lsblk -f
btrfs subvolume list -t /bootlook like before you're updating?
Online
sdb
├─sdb1 vfat FAT32 C110-EE23 933.1M 9% /boot
└─sdb2 btrfs Lee Nucks 8035711a-2052-47fd-8acd-f64f9142f00d 126G 46% /var/cache/pacman/pkg
/var/log
/home
/.snapshots
/
ERROR: not a btrfs filesystem: /boot
ERROR: can't access '/boot'
Offline
Because you're mounting some irrelevant FAT32 partition there.
# umount /boot
# pacman -Syu linuxAnd fix your fstab.
Online
thank you so much stranger, now i have grub in /efi and kernel with initramfs in /boot
this is my fstab now
# Static information about the filesystems.
# See fstab(5) for details.
# <file system> <dir> <type> <options> <dump> <pass>
# /dev/sdb2
UUID=8035711a-2052-47fd-8acd-f64f9142f00d / btrfs rw,relatime,compress=zstd:3,ssd,discard=async,space_cache=v2,subvol=/@ 0 0
# /dev/sdb2
UUID=8035711a-2052-47fd-8acd-f64f9142f00d /.snapshots btrfs rw,relatime,compress=zstd:3,ssd,discard=async,space_cache=v2,subvol=/@.snapshots 0 0
# /dev/sdb2
UUID=8035711a-2052-47fd-8acd-f64f9142f00d /home btrfs rw,relatime,compress=zstd:3,ssd,discard=async,space_cache=v2,subvol=/@home 0 0
# /dev/sdb2
UUID=8035711a-2052-47fd-8acd-f64f9142f00d /var/cache/pacman/pkg btrfs rw,relatime,compress=zstd:3,ssd,discard=async,space_cache=v2,subvol=/@pkg 0 0
# /dev/sdb2
UUID=8035711a-2052-47fd-8acd-f64f9142f00d /var/log btrfs rw,relatime,compress=zstd:3,ssd,discard=async,space_cache=v2,subvol=/@log 0 0
# /dev/sdb1
UUID=C110-EE23 /efi vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro 0 2
# /dev/sda2
UUID=4b66acbd-bddd-4b61-9ffb-5acf4639b380 /hdd ext4 defaults 0 2
i forgot to send this message yesterday for some reason, i wrote the thing but then closed the website
Offline
Please use [code][/code] tags. Edit your post in this regard.
After installing the kernel into the proper location, does the updated kernel now boot ("uname -a") and everything work as expected?
In case and please always remember to mark resolved threads by editing your initial posts subject - so others will know that there's no task left, but maybe a solution to find.
Thanks.
Online
$ uname -a
Linux archlinux 6.18.2-arch2-1 #1 SMP PREEMPT_DYNAMIC Thu, 18 Dec 2025 18:00:18 +0000 x86_64 GNU/Linux
Offline
\o/
Online
Pages: 1