1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Unityのパネルやメニューがなくなった場合の対処方法。 Unityを初期状態に戻す方法.

1
Posted at

以下のサイトを参考させてもらいました。

http://yaplog.jp/nekoashi_1/archive/178
http://cpplover.blogspot.jp/2014/07/ubuntu-1404unity.html

以下の手順で直りました。

  1. Ctrl+Alt+F1キーでコンソール画面に切り替えられる
  2. コンソール画面でログインする
     ※インストール時に登録したログインIDとパスワード入力
  3. 「DISPLAY=:0.0 gnome-terminal」と入力してEnter
  4. Alt+F7を押して、デスクトップ画面に切り替えする
  5. デスクトップ画面のターミナルにて、以下のコマンドを入力
    gconftool-2 --recursive-unset /apps/compiz-1
    gconftool-2 --recursive-unset /apps/compizconfig-1
    rm ~/.compiz-1/session/*
    rm ~/.config/compiz-1/compizconfig/config

※うちの場合、インストール直後だったので下の2行で削除しようとしているファイルは出来ておらず、ファイルがないといったエラーになった。

  1. 再起動する(sudo shutdown -r now)
     ※sudoではパスワードを聞かれるが、ここで必要なのはrootのパスワードではなくログインしているIDのパスワード。
     ※下で入れるコマンドは、ここで一旦再起動してからでないと効かない。(実際続けてやってみたがダメだった)
  2. 再起動後も背景しか出ていないので、再度上記の1)~4)までを実施してターミナルを起動する(たぶんtty1?上でそのままコマンド入力してもいいはず)
  3. ターミナルで「dconf reset -f /org/compiz/」と入力しEnter
  4. また再起動(sudo shutdown -r now)

上記で直らなかったら、以下続けてください。

10)$sudo restart lightdm
11)$sudo shutdown -r now
12)$sudo apt-get install unity-tweak-tool
13)$unity-tweak-tool --reset-unity

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?