web-dev-qa-db-ja.com

XFCEをインストールしてUnityを完全に削除するにはどうすればよいですか

私はUbuntu 12.04を使用しています(パフォーマンス上の理由から14.04にアップグレードしていません)が、Unityは好きではありません。 XFCEをデフォルトのグラフィックシステムとしてインストールし、Unityを完全に削除するにはどうすればよいですか?

5
wwwjsw

次のコマンドを使用して、xfce ubuntuパッケージ全体をインストールできます。

Sudo apt-get update
Sudo apt-get install xfce4

または、xubuntuパッケージ全体をインストールできます。

Sudo apt-get install xubuntu-desktop

Unityをアンインストールするには:

Sudo apt-get purge ubuntu-desktop unity-*
9
mchid

これをテストします:

コンピューターの電源を入れます。

Shiftキーを押したままにすると、Grubメニューが表示されます。

Grubメニューで---- Advanced optionsで始まる行を選択します。

----(回復モード)で終わる行を選択します:

Linux 3.2.0-26-generic(回復モード)を使用したUbuntu GNU/Linux

Enterキーを押すと、マシンが起動プロセスを開始します。

あなたのPCは多くのオプションを含むメニューを表示するはずです。

行を選択します----ルートシェルプロンプトにドロップし、このオプションを強調表示してEnterキーを押します。

ターミナルで実行します:

mount -o remount, rw /
mount --all
apt-get update
apt-get install --reinstall aptitude deborphan

aptitude remove '?and(?reverse-depends(gnome),?not(?reverse-depends(?exact-name(xubuntu-desktop))))'

aptitude remove '?and(?reverse-depends(ubuntu),?not(?reverse-depends(?exact-name(xubuntu-desktop))))'

apt-get install --reinstall xubuntu-desktop
apt-get dist-upgrade
deborphan
apt-get --purge remove $(deborphan)
deborphan --libdevel
apt-get --purge remove $(deborphan --libdevel)
deborphan --find-config
dpkg --purge $(deborphan --find-config)
apt-get autoremove
apt-get clean
reboot
0
kyodake