Unity não carrega - nenhum Launcher ou Dash aparece [closed]

3

Estou usando o Ubuntu 14.04 LTS de 32 bits no meu desktop simples (3GHz Intel P4, 1 GB de RAM, Intel INbuilt Graphics e NO extra graphic-card) para nada se preocupe com gráficos como nvidia etc.

Aqui está a saída de lspci :

$ lspci
00:00.0 Host bridge: Intel Corporation 82945G/GZ/P/PL Memory Controller Hub (rev 02)
00:02.0 VGA compatible controller: Intel Corporation 82945G/GZ Integrated Graphics Controller (rev 02)
00:1b.0 Audio device: Intel Corporation NM10/ICH7 Family High Definition Audio Controller (rev 01)
00:1c.0 PCI bridge: Intel Corporation NM10/ICH7 Family PCI Express Port 1 (rev 01)
00:1c.1 PCI bridge: Intel Corporation NM10/ICH7 Family PCI Express Port 2 (rev 01)
00:1c.2 PCI bridge: Intel Corporation NM10/ICH7 Family PCI Express Port 3 (rev 01)
00:1c.3 PCI bridge: Intel Corporation NM10/ICH7 Family PCI Express Port 4 (rev 01)
00:1d.0 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #1 (rev 01)
00:1d.1 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #2 (rev 01)
00:1d.2 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #3 (rev 01)
00:1d.3 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #4 (rev 01)
00:1d.7 USB controller: Intel Corporation NM10/ICH7 Family USB2 EHCI Controller (rev 01)
00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev e1)
00:1f.0 ISA bridge: Intel Corporation 82801GB/GR (ICH7 Family) LPC Interface Bridge (rev 01)
00:1f.1 IDE interface: Intel Corporation 82801G (ICH7 Family) IDE Controller (rev 01)
00:1f.2 IDE interface: Intel Corporation NM10/ICH7 Family SATA Controller [IDE mode] (rev 01)
00:1f.3 SMBus: Intel Corporation NM10/ICH7 Family SMBus Controller (rev 01)
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 01)

Instalei o xubuntu-desktop environment, unity-tweak-tool , que está funcionando bem por três meses.

Recentemente eu enfrentei um problema: Unity não carrega, nenhum Launcher, nenhum Dash aparece . Eu tentei as respostas, mas incapaz de resolver o meu problema.

O motivo provável para isso é que instalei ubuntu-tweak recentemente. Então, também eu removi de tty, mas incapaz de resolver este problema.

Eu tenho três maneiras de fazer qualquer coisa:

  1. Usando tty ( Ctrl + Alt F1 )
  2. Instalei o nautilus-open-terminal , portanto, posso iniciar gnome-terminal clicando com o botão direito do mouse na área de trabalho e "Abrir o terminal aqui".
  3. Usando a sessão do Xubuntu.

Eu tentei seguir as coisas:

  • Ativando o unity-plugin ( link ) Mas não solucionado.
  • dconf reset -f /org/compiz/ de gnome-terminal
  • Removido e reinstalado unity , compiz e ubuntu-desktop
  • Cache removido por rm -rf ~/.compiz-1 ~/.config/compiz-1 , sudo rm -fr ~/.compiz , sudo rm -fr ~/.cache/* , sudo rm -fr .cache/*
  • Tentando substituir / redefinir unidade seguindo a partir de gnome-terminal :
    1. unity --replace
    2. setsid unity
    3. ubuntu-tweak-tool --reset-unity

Output-1 , Saída-2

Tudo mostra coisa comum:

compiz (core) - Info: Starting plugin: unityshell
WARN  2014-10-02 12:11:25 unity.glib.dbus.server GLibDBusServer.cpp:579 Can't register object 'org.gnome.Shell' yet as we don't have a connection, waiting for it...
ERROR 2014-10-02 12:11:25 unity.debug.interface DebugDBusInterface.cpp:196 Unable to load entry point in libxpathselect: libxpathselect.so.1.4: cannot open shared object file: No such file or directory
WARN  2014-10-02 12:11:25 xim.controller XIMController.cpp:103 IBus natively supported.
ERROR 2014-10-02 12:11:26 nux.gltexture.resource.manager GLTextureResourceManager.cpp:54 Invalid target, impossible to generate a new texture. Impossible to generate a pixbuf: Failed to open file '': No such file or directory
WARN  2014-10-02 12:11:26 unity.glib.dbus.server GLibDBusServer.cpp:579 Can't register object 'com.canonical.Unity.Launcher' yet as we don't have a connection, waiting for it...
WARN  2014-10-02 12:11:26 unity.glib.dbus.server GLibDBusServer.cpp:579 Can't register object 'com.canonical.Unity.Dash' yet as we don't have a connection, waiting for it...
WARN  2014-10-02 12:11:26 unity.glib.dbus.server GLibDBusServer.cpp:579 Can't register object 'org.gnome.SessionManager.EndSessionDialog' yet as we don't have a connection, waiting for it...
WARN  2014-10-02 12:11:26 unity.glib.dbus.server GLibDBusServer.cpp:579 Can't register object 'com.canonical.Unity.Session' yet as we don't have a connection, waiting for it...
WARN  2014-10-02 12:11:26 unity.glib.dbus.server GLibDBusServer.cpp:579 Can't register object 'org.gnome.ScreenSaver' yet as we don't have a connection, waiting for it...
Segmentation fault (core dumped)

Eu poderia tentar uma reinstalação do sistema operacional inteiro. Ou existe alguma maneira de resolver este problema?

Agora o que fazer? ( Não é possível reinstalar todo o ambiente de área de trabalho da unidade e usar novos D.E. sem esse problema? )

    
por Pandya 01.10.2014 / 09:04

1 resposta

0

Tente:

Restaurar configurações padrão

Execute os seguintes comandos no terminal, um de cada vez.

gconftool --shutdown
sudo killall -r -I gconf
sudo killall -r -I dconf
rm -rf .compiz* .gconf* .config/dconf/ .config/compiz*

Esteja ciente de que os comandos acima removerão as configurações ou configurações que você já fez. Layouts de teclado (se houver) também serão removidos. Embora os comandos acima não apaguem nenhum arquivo, eles irão restaurar as configurações do Unity como estavam quando você instalou o Ubuntu pela primeira vez.

Reinicialize seu sistema para que as alterações entrem em vigor.

A mesma coisa aconteceu comigo uma vez, então aqui está a resposta que eu consegui que funcionou.

    
por Find Me In The Woods 06.10.2014 / 15:09