Debian 测试 + LTS 内核

Debian 测试 + LTS 内核

有没有办法跑Debian 测试(实际是书呆子)但与LTS 内核,比如在 arch linux 中有一个linux-lts包。我想避免不断跳转到非常新的内核。

答案1

您可以尝试使用以下选项之一。

我在 3 台不同的机器上安装了 LTS 内核 1 5.15.49 ( linux-image-5.15.49-xanmod1 ),到目前为止我还没有遇到问题。

  1. XanMod 内核 - xanmod.org

    echo 'deb http://deb.xanmod.org releases main' | sudo tee /etc/apt/sources.list.d/xanmod-kernel.list
    wget -qO - https://dl.xanmod.org/gpg.key | sudo apt-key --keyring /etc/apt/trusted.gpg.d/xanmod-kernel.gpg add -
    apt update
    
  2. Liquorix 内核 - Liquorix.net。

    apt-get install lsb-release apt-transport-https -y
    mkdir -p /etc/apt/{sources.list.d,trusted.gpg.d}
    curl -o /etc/apt/trusted.gpg.d/liquorix-keyring.gpg 'https://liquorix.net/liquorix-keyring.gpg'
    echo "deb https://liquorix.net/debian testing main" > /etc/apt/sources.list.d/liquorix.list
    echo "deb-src https://liquorix.net/debian testing main" >> /etc/apt/sources.list.d/liquorix.list
    apt update
    

和...还可以将测试与 Bullseye 合并,以使用 5.14 或 5.15 等内核。

一切顺利。


  1. https://i.stack.imgur.com/ZKMnt.png

  2. https://rabexc.org/posts/apt-config(当心!)

  3. https://packages.debian.org/search?suite=bullseye-backports&searchon=names&keywords=kernel-image

相关内容