web-dev-qa-db-ja.com

ubuntu 15.10へのアップグレード後に単一性が機能しない

今日、Ubuntu 15.10にアップグレードしましたが、アップグレード中にエラーは発生しませんでしたが、アップグレード後にユーザー名とパスワードを使用してログインできますが、ユニティはランチャーも動作しません。パネルはまったくバックグラウンドではありません。

compiz --replace unityを使用して自分の団結を開始しようとしましたが、libunity.soの関数定義が見つからないというエラーが表示され、ロードに失敗します。

これを手伝ってもらえますか?

[更新]

Sudo apt-cache policy libunity9の出力は

libunity9:
  Installed: 7.1.4+15.10.20151002-0ubuntu1
  Candidate: 7.1.4+15.10.20151002-0ubuntu1
  Version table:
 *** 7.1.4+15.10.20151002-0ubuntu1 0
        500 http://sy.archive.ubuntu.com/ubuntu/ wily/main AMD64 Packages
        100 /var/lib/dpkg/status

[更新]

2つの回答に従うことを試みた後、エラーメッセージは次のように変更されました。

DISPLAY=:0 compiz --replace unityは標準エラーに出力します

  compiz (core) - Info: Loading plugin: core
  compiz (core) - Info: Starting plugin: core
  Invalid MIT-MAGIC-COOKIE-1 keycompiz (core) - Fatal: Couldn't open display :0
  compiz (core) - Info: Stopping plugin: core
  compiz (core) - Info: Unloading plugin: core
3
Mohsen Ibrahim

すでに答えがあるかもしれません。Unityの新規インストールを試してください。

Sudo apt-get update

Sudo apt-get remove unity 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-5.0 unity-common indicator-sound indicator-power indicator-appmenu libindicator7 indicator-application indicator-datetime indicator-messages libnux-2.0-0 nux-tools libunity-misc4 unity-2d-common

Sudo apt-get autoremove

Sudo apt-get autoclean

Sudo apt-get install unity 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-5.0 unity-common indicator-sound indicator-power indicator-appmenu libindicator7 indicator-application indicator-datetime indicator-messages libnux-2.0-0 nux-tools libunity-misc4 unity-2d-common

Sudo apt-get upgrade

これでUnityが復元されます。

ソース

2
Tony Lancer

特定のユーザーファイル(~/.)が原因であるため、再インストールは機能しませんでした。

Ubuntu 15.10へのアップグレード後にUnityランチャーを元に戻すには、仮想端末Ctrl+Alt+F1を開いてログインしてから、次の操作を行います。

Sudo service lightdm stop
cd ~
rm  -rf .gconf .gconfd .compiz .config/compiz .config/dconf
Sudo service lightdm restart

それはすべて、それは私のために働いた!私の古いインストールはおそらくユーザーファイルを台無しにしていたので、それらを削除するのがうまくいきました。

6
J Rivera