我读到,该ungoogled-chromium
网络浏览器不仅不受 Google 服务和跟踪的约束,而且与其他 Chromium 分支不同,它本质上是 Chromium 的直接替代品,具有改进隐私、控制和透明度的调整。在 Ubuntu 20.04 中是否有任何安装和更新程序?提前谢谢您。
有关它的帖子并没有澄清我的疑虑。
答案1
如果安装了 Ungoogled-chromium,它可能会与 Chromium 冲突,因此您应该先将其卸载。
为此,打开一个终端并在其中运行:
sudo apt-get autoremove --purge chromium
该项目位于 openSUSE 存储库中,要从那里安装它,您必须执行一系列指令:
原则上,将存储库添加到终端中运行的 sources.list 文件中:
echo 'deb http://download.opensuse.org/repositories/home:/ungoogled_chromium/Ubuntu_Focal/ /' | sudo tee /etc/apt/sources.list.d/home:ungoogled_chromium.list
然后我们必须通过在终端中执行以下命令来添加公钥:
sudo wget -nv https://download.opensuse.org/repositories/home:ungoogled_chromium/Ubuntu_Focal/Release.key -O "/etc/apt/trusted.gpg.d/home:ungoogled_chromium.asc"
现在只剩下更新系统并安装它,在终端中运行:
sudo apt update
sudo apt install ungoogled-chromium
使用此方法,您可以确保项目团队不断更新每个新版本。
在此站点上,您可以获得有关该程序的信息,以及获取手动安装该程序的二进制文件:
https://github.com/Eloston/ungoogled-chromium#feature-overview
答案2
如果你访问 ungoogled-chromium github 页面(此处:https://github.com/Eloston/ungoogled-chromium),您将看到指向特定于分发的说明的链接(此处:https://github.com/ungoogled-software/ungoogled-chromium-debian),其中展示了如何添加存储库并使用 apt 安装。这些是针对 Ubuntu Focal (20.04) 的说明:
# echo 'deb http://download.opensuse.org/repositories/home:/ungoogled_chromium/Ubuntu_Focal/ /' | sudo tee /etc/apt/sources.list.d/home-ungoogled_chromium.list > /dev/null
# curl -s 'https://download.opensuse.org/repositories/home:/ungoogled_chromium/Ubuntu_Focal/Release.key' | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/home-ungoogled_chromium.gpg > /dev/null
# sudo apt update
# sudo apt install -y ungoogled-chromium