Package Details: linux-bin 6.7.12_1-1

Git Clone URL: https://aur.archlinux.org/linux-dfsg.git (read-only, click to copy)
Package Base: linux-dfsg
Description: The Linux kernel and modules
Upstream URL: https://packages.debian.org/source/sid/linux
Licenses: GPL2
Provides: linux
Submitter: myself601
Maintainer: myself601
Last Packager: myself601
Votes: 0
Popularity: 0.000000
First Submitted: 2024-04-25 13:34 (UTC)
Last Updated: 2024-04-25 13:55 (UTC)

Dependencies (3)

Required by (153)

Sources (7)

Latest Comments

myself601 commented on 2024-04-25 13:59 (UTC)

Room for improvement:

  • include patches from Arch

Troubleshooting:

  1. My system won't boot anymore

In case you have trouble booting after installing any kernel, here's how you can revert back to the default one. You need to have a bootable recovery media (SD card, USB key, ...) to access the internal storage, and to know the device path for root (/) and /boot partitions.

sudo mount /dev/NAME /mnt
sudo mount /dev/NAME /mnt/boot
for i in proc dev sys;do sudo mount -B {,/mnt}/$i;done
sudo cp /etc/resolv.conf /mnt/etc
sudo chroot /mnt
pacman -S linux
exit
sudo umount -R /mnt

2 . System lags after rebooting from a successful installation

Replacing /boot/initramfs-linux.img/lib/modules/*/modules.alias.bin with the same file from Debian initrd.img fixes the issue. I don't know what's causing this.