![无法完全删除发行版 Regolith;替代会话仍然可用](https://linux22.com/image/1184025/%E6%97%A0%E6%B3%95%E5%AE%8C%E5%85%A8%E5%88%A0%E9%99%A4%E5%8F%91%E8%A1%8C%E7%89%88%20Regolith%EF%BC%9B%E6%9B%BF%E4%BB%A3%E4%BC%9A%E8%AF%9D%E4%BB%8D%E7%84%B6%E5%8F%AF%E7%94%A8.png)
我试过风化层在我的虚拟机上玩 i3。我非常喜欢这个发行版,想在我的主机上安装它。我试图在我的虚拟机上删除它。我按照这个官方卸载指南:
Log out of the Regolith session and into the default Ubuntu session.
$ sudo apt purge regolith-desktop && sudo apt autoremove
Now remove the PPA:
$ sudo add-apt-repository --remove ppa:regolith-linux/release
You can now safely delete the directory ~/.config/regolith.
但注销后,我仍然可以更改会话Regolith
并成功登录。它功能齐全。如何彻底删除 Regolith?
系统信息:
OS: Ubuntu 20.04.3 LTS x86_64
DE: GNOME
WM: Mutter
答案1
事实证明我已经安装了独立的 i3。我的猜测是,Regolith 以某种方式“附加”到独立的 i3 上,这就是官方卸载过程不起作用的原因。
- 按照官方的卸载流程进行:
Log out of the Regolith session and into the default Ubuntu session.
$ sudo apt purge regolith-desktop && sudo apt autoremove
- 检查风化层剩余部分:
apt list --installed | grep regolith
您不应该看到任何剩余的包。如果看到任何包,请使用以下命令将其删除sudo apt remove package-name
- 删除先前安装的 i3。
apt list --installed | grep i3
再次使用sudo apt remove package-name
注销后您将不会看到可用的 Regolith 会话。