Archisman Panigrahi Asked: 2024-05-10 00:27:36 +0800 CST2024-05-10 00:27:36 +0800 CST 2024-05-10 00:27:36 +0800 CST 如何在 Ubuntu 24.04 及更高版本中将最新版本的 Thunderbird 安装为传统 deb 包而不使用 snap? 772 在 Ubuntu 24.04 中,Thunderbird 作为 snap 应用程序安装。 如何在没有 snap 的情况下安装 Thunderbird,例如从Mozilla Team PPA? apt 1 个回答 Voted Best Answer Archisman Panigrahi 2024-05-10T00:27:36+08:002024-05-10T00:27:36+08:00 首先,添加Mozilla 团队的 PPA sudo add-apt-repository ppa:mozillateam/ppa 然后,一次性将以下代码复制并粘贴到终端中(不要逐行复制粘贴),以优先考虑 Thunderbird 的 apt 版本而不是 snap 版本。 echo ' Package: * Pin: release o=LP-PPA-mozillateam Pin-Priority: 1001 Package: thunderbird Pin: version 2:1snap* Pin-Priority: -1 ' | sudo tee /etc/apt/preferences.d/thunderbird 接下来,删除snap版本的thunderbird sudo snap remove thunderbird 使用 apt 安装 Thunderbird。 sudo apt install thunderbird 要确保无人值守升级不会重新安装 Thunderbird 的 snap 版本,请输入以下命令。 echo 'Unattended-Upgrade::Allowed-Origins:: "LP-PPA-mozillateam:${distro_codename}";' | sudo tee /etc/apt/apt.conf.d/51unattended-upgrades-thunderbird 要撤消这些更改 取下 PPA。 sudo add-apt-repository -r ppa:mozillateam/ppa 拆下 apt 引脚。 sudo rm -rf /etc/apt/preferences.d/thunderbird 删除 apt 版本并重新安装 snap。 sudo apt remove thunderbird && sudo snap install thunderbird 这个答案基于Firefox 的类似答案。
首先,添加Mozilla 团队的 PPA
然后,一次性将以下代码复制并粘贴到终端中(不要逐行复制粘贴),以优先考虑 Thunderbird 的 apt 版本而不是 snap 版本。
接下来,删除snap版本的thunderbird
使用 apt 安装 Thunderbird。
要确保无人值守升级不会重新安装 Thunderbird 的 snap 版本,请输入以下命令。
要撤消这些更改
这个答案基于Firefox 的类似答案。