無法完全刪除發行版Regolith;替代會話仍然可用

無法完全刪除發行版Regolith;替代會話仍然可用

我試過風化層在我的虛擬機器上玩 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並成功登入。它功能齊全。如何徹底清除風化層?

系統資訊:

OS: Ubuntu 20.04.3 LTS x86_64
DE: GNOME
WM: Mutter

答案1

原來我安裝的是獨立的i3。我的猜測是,Regolith 以某種方式「附加」到了獨立的 i3,這就是官方卸載過程不起作用的原因。

  1. 按照官方卸載流程:
Log out of the Regolith session and into the default Ubuntu session.


$ sudo apt purge regolith-desktop && sudo apt autoremove
  1. 檢查剩餘的風化層:
apt list --installed | grep regolith

您不應該看到任何剩餘的軟體包。如果您看到任何,請使用以下命令將其刪除sudo apt remove package-name

  1. 刪除先前安裝的 i3。
apt list --installed | grep i3

再次,刪除它們sudo apt remove package-name

註銷後,您不應看到 Regolith 會話可用。

相關內容