安裝 Ubuntu 後如何擺脫 Unity 並返回 gnome?

安裝 Ubuntu 後如何擺脫 Unity 並返回 gnome?

安裝最新的 Ubuntu LTS 版本 (12.04) 後,我遇到了一個陌生且難以使用的桌面環境。我相信這就是所謂的團結。然而,我已經使用 gnome 十五年了,我不想轉移到這個新的(對我來說)無法使用的桌面環境。

有什麼快速簡單的方法可以刪除(大部分)Unity 並恢復 gnome,並配置我的顯示管理器預設載入 gnome,環境盡可能接近以前的狀態?

答案1

一個快速有效的方法是安裝 gnome,刪除一堆與 unity 相關的軟體包並執行 lightdm-set-defaults 來更改會話。我確信還有其他方法,我可能忘記了一些包包,但這並不那麼重要。我發現這非常適合我的目的:


sudo apt-get -y install gnome

sudo apt-get -y remove unity \ unity-2d-places \ unity-2d \ unity-2d-panel \ unity-2d-spread \ unity-asset-pool \ unity-services \ unity-lens-files \ unity-lens-music \ unity-lens-applications \ gir1.2-unity-4.0 \ unity-common \ indicator-sound \ indicator-power \ indicator-appmenu \ libindicator7 \ indicator-application \ evolution-indicator \ indicator-datetime \ indicator-messages \ libnux-2.0-0

sudo apt-get -y install tomboy \ transmission

/usr/lib/lightdm/lightdm-set-defaults -s gnome-classic

我們使用 gnome-classic,因為它最接近您在先前的 Ubuntu 版本(例如 10.04 和 8.04)中所習慣的。看來您需要安裝 tomboy 和 Transmission,因為它們可能已在早期的 apt-get remove 階段被刪除。

我上次嘗試時這適用於 Ubuntu 12.04,那是一兩週前的事了。在 12.04 的早期版本中,一些套件名稱發生了變化,例如 libindicator7 之前稱為 libindicator6。不過我相信,由於 12.04 即將發布,軟體包名稱應該已經變得穩定。

答案2

您還可以透過執行以下操作來使用他們的 gnome2 模擬:

sudo apt-get install gnome-panel

從我迄今為止所看到的來看,它做得非常好。是的,它仍然是 Unity,但它的外觀和行為就像您習慣看到的 gnome2。

安裝後,您需要登出,然後為您的會話選擇“Gnome classic”,然後再重新登入。

相關內容