web-dev-qa-db-ja.com

Gnomeを削除した後、 `ubuntu-desktop`を再インストールします

私はubuntu 14.04のラップトップを持っていますgnomeをインストールして試してみましたが、しばらくしてから削除したいので次のコマンドを使用しました

apt-get remove gnom*

再起動し、ログ画面の前に黒い画面が表示された

私はubuntu-desktopを再インストールしようとしました:

Sudo apt-get install ubuntu-desktop

しかし、私は次のエラーが発生し続けます:

The following packages have unmet dependencies:
ubuntu-desktop :  
    Depends: ubuntu-session but it is not going to be installed
    Depends: unity-control-center but it is not going to be installed
    Depends: unity-settings-daemon but it is not going to be installed
    Recommends: xul-ext-webaccounts but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

満たされていないほとんどの質問を検索しますが、変更はありませんが、私は次のすべてを試しました:

ap-get update , upgrade , remove , auto remove , clean auto , clean  , apt-get -f install, dpkg --configure -a

しかし、それは同じです...

だから私はこの問題をどのように修正できるか考えています

3
Fat Mind

私はこの点に達するまで依存パッケージに従いました

Depends: gnome-settings-daemon-schemas (< 3.10) but 3.12.2-0ubuntu1~trusty3 is to be installed

ubuntu-desktopを再インストールできるようにする次のコマンドを実行しました

Sudo apt-get install gnome-settings-daemon-schemas=3.8.6.1-0ubuntu11.2
Sudo apt-get install ubuntu-desktop

再起動してプロファイルにログインできました

3
Fat Mind