You are not logged in.
Pages: 1
Hi everyone !
How it all started...
I Rebooted the computer during the update, got ‘error: file /vmlinuz-linux-g14’ not found'.
As I understood it, something happened to the kernel.
Okay, I took a bootable USB flash drive from a dusty shelf, booted up, mounted the partition.
arch-chroot /mnt crashed with the error ‘mount point doesn't exist'.
After a quick googling, I found a similar problem and made a
‘pacstrap /mnt base linux linux-firmware'After that, arch-chroot turned out. But, since I read the instructions after the build, the pacstrap command, if I understood correctly, created a new shell and now when I call chroot, it has nothing to do with my current system.
And rebuilding the kernel doesn't help. I had a custom kernel from the asus repository. But when trying to rebuild it, it says that the target was not found. grab commands doesn't work either.
In general, help me pls, what to do now (
Offline
You need to mount your root partiition (of your actual system) to /mnt (as well as any others under that, so if you have a boot partition you'd mount that to /mnt/boot after mounting your root to /mnt) before you're able to arch-chroot into your actual installation in oder to reinstall the kernel.
Offline
I Rebooted the computer during the update, got ‘error: file /vmlinuz-linux-g14’ not found'.
There's probaly more damage than just the missing kernel, therefore you cannot chroot.
Also don't use pacstrap.
pacman --root /mnt --cachedir /mnt/var/cache/pacman/pkg/ …Start with an integrity check:
LC_ALL=C pacman --root /mnt --cachedir /mnt/var/cache/pacman/pkg/ -Qkk | grep -v ', 0 altered files'from a dusty shelf
Your hygienic habits don't matter, but if you meant to say that this is a really old install iso, you'll rather not be able to use it to fix the system offline - get a new install iso first.
Offline
Pages: 1