web-dev-qa-db-ja.com

Unityを削除して再インストールする方法を教えてください。

GLX Dockのインストール後、Unityが誤動作します-GLX DockをオフにするとHUDが開かず、パネルに3つのコントロールボタン(閉じる、最小化、最大化)および "Ubuntuデスクトップ" 実行中のアプリがない場合のラベル。トップパネルをクリックして取得する必要があります Super ダッシュを開くキー。

unity --resetおよびunity --replaceコマンドを試しましたが、助けにはなりません。

Unityをアンインストールして再インストールできますか?

24
Paul Girardin

これは、問題が発生したときに使用したものです。

これらのコマンドはCompiz Unityを削除/アンインストールします:

Sudo apt-get remove compizconfig-settings-manager
Sudo apt-get remove compiz-fusion-plugins-extra
Sudo apt-get remove compiz-plugins-extra
Sudo apt-get purge compiz*

次にCompiz Unityを再インストールするには、次を使用します:

Sudo apt-get install unity-2d
Sudo apt-get install ubuntu-desktop
Sudo apt-get install ubuntu-desktop-2d
Sudo apt-get install compizconfig-settings-manager
Sudo apt-get install xserver-xgl
Sudo apt-get install emerald
Sudo apt-get install compiz-fusion-plugins-extra
Sudo apt-get install compiz-plugins-extra
Sudo apt-get install unity
18
Mattlinux1