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

おすすめ記事