如何在 Linux Mint 中启用预发布更新?

如何在 Linux Mint 中启用预发布更新?

在 Ubuntu 中,我可以在“软件源”的“更新”选项卡中执行此操作,但在 Linux Mint 中没有“更新”选项卡。我只想安装内核版本 2.6.38-9。

答案1

Mint 不发布预发布更新 [来源]。

答案2

Ketchup 是一个用于更新 Linux 内核源的实用程序,可通过 Synaptic 包或终端 CLI 命令使用:

sudo apt-get install ketchup

~ $ ketchup -help
Usage:  ketchup [options] [ver]
 -a --archive (/home/username/.ketchup)
   cache directory
 -d --directory (.)
   directory to update
 -f --full-tarball 
   if unpacking a tarball, download the latest
 -g --gpg-path (/usr/bin/gpg)
   path for GnuPG
 -G --no-gpg 
   disable GPG signature verification
 -k --kernel-url (http://www.kernel.org/pub/linux/kernel)
   base url for kernel.org mirror
 -l --list-trees 
   list supported trees
 -m --show-makefile 
   output version in makefile <arg>
 -n --dry-run 
   don't download or apply patches
 -p --show-previous 
   output version previous to <arg>
 -q --quiet 
   reduce output
 -r --rename-directory 
   rename updated directory to linux-<v>
 -s --show-latest 
   output the latest version of <arg>
 -u --show-url 
   output URL for <arg>
 -w --wget (/usr/bin/wget)
   command to use for wget

相关内容