Erro de instalação do Gnome (1)

4

Estou tentando instalar o Gnome no meu Ubuntu 12.04 P.Pangolin e recebendo os seguintes erros:

    root@***:~# sudo apt-get install gnome-core gnome-session-fallback
Reading package lists... Done
Building dependency tree       
Reading state information... Done
gnome-core is already the newest version.
gnome-session-fallback is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 4 not upgraded.
5 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue [Y/n]? y
Setting up bluez (4.98-2ubuntu7) ...
start: Job failed to start
invoke-rc.d: initscript bluetooth, action "start" failed.
dpkg: error processing bluez (--configure):
 subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of gnome-bluetooth:
 gnome-bluetooth depends on bluez (>= 4.36); however:
  Package bluez is not configured yet.
dpkg: error processing gnome-bluetooth (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of gnome-shell:
 gnome-shell depends on gnome-bluetooth (>= 3.0.0); however:
  Package gnome-bluetooth is not configured yet.
dpkg: error processing gnome-shell (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of gnome-user-share:
 gnome-user-share depends on gnome-bluetooth; however:
  Package gnome-bluetooth is not configured yet.
dpkg: error processing gnome-user-share (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of gnome-core:
 gnome-core depends on gNo apport report written because the error message indicates its a followup error from a previous failure.
                                                                                                                                  No apport report written because the error message indicates its a followup error from a previous failure.
                                                                                                 No apport report written because MaxReports is reached already
                    No apport report written because MaxReports is reached already
                                                                                  nome-bluetooth (>= 3.0); however:
  Package gnome-bluetooth is not configured yet.
 gnome-core depends on gnome-shell (>= 3.0); however:
  Package gnome-shell is not configured yet.
 gnome-core depends on gnome-user-share (>= 3.0); however:
  Package gnome-user-share is not configured yet.
dpkg: error processing gnome-core (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 bluez
 gnome-bluetooth
 gnome-shell
 gnome-user-share
 gnome-core
E: Sub-process /usr/bin/dpkg returned an error code (1)

Syslog:

Oct  5 16:04:17 ks34900 bluetoothd[5176]: Bluetooth daemon 4.98
Oct  5 16:04:17 ks34900 bluetoothd[5176]: Starting SDP server
Oct  5 16:04:17 ks34900 bluetoothd[5176]: opening L2CAP socket: Address family not supported by protocol
Oct  5 16:04:17 ks34900 bluetoothd[5176]: Server initialization failed
Oct  5 16:04:17 ks34900 bluetoothd[5176]: Failed to init alert plugin
Oct  5 16:04:17 ks34900 bluetoothd[5176]: Failed to init time plugin
Oct  5 16:04:17 ks34900 bluetoothd[5176]: Failed to init proximity plugin
Oct  5 16:04:17 ks34900 bluetoothd[5176]: Failed to open control socket: Address family not supported by protocol (97)
Oct  5 16:04:17 ks34900 bluetoothd[5176]: Can't init bnep module
Oct  5 16:04:17 ks34900 bluetoothd[5176]: Failed to init network plugin
Oct  5 16:04:17 ks34900 bluetoothd[5176]: Unable to start SCO server socket
Oct  5 16:04:17 ks34900 bluetoothd[5176]: Failed to init audio plugin
Oct  5 16:04:17 ks34900 bluetoothd[5176]: Failed to init gatt_example plugin
Oct  5 16:04:17 ks34900 bluetoothd[5176]: Can't open HCI socket: Address family not supported by protocol (97)
Oct  5 16:04:17 ks34900 bluetoothd[5176]: adapter_ops_setup failed
Oct  5 16:04:17 ks34900 kernel: init: bluetooth main process (5176) terminated with status 1
Oct  5 16:04:17 ks34900 kernel: init: bluetooth main process ended, respawning
Oct  5 16:04:17 ks34900 bluez: Stopping uarts
Oct  5 16:04:17 ks34900 bluez: Stopping rfcomm

Alguma opinião?

    
por Guy1984 05.10.2012 / 16:21

1 resposta

7

Ok, isso deve funcionar bem, mas você precisa ser cuidadoso e terá que reverter as alterações quando terminar. Isso só corrigirá seu problema de instalação, não o problema com bluetoothd .

sudo mv /usr/sbin/bluetoothd /usr/sbin/bluetoothd-please-rename-me-when-you-are-done
sudo ln -s /bin/true /usr/sbin/bluetoothd

Em seguida, instale:

sudo apt-get install gnome-core gnome-session-fallback

Este passo é opcional, atualização:

sudo apt-get update && sudo apt-get upgrade

Se o seu sistema não tiver nenhum outro problema, a instalação deve ser bem-sucedida. Quando a atualização estiver completa, reverta a pobre bluetoothd :

sudo rm /usr/sbin/bluetoothd
sudo mv /usr/sbin/bluetoothd-please-rename-me-when-you-are-done /usr/sbin/bluetoothd

Agora o problema de instalação deve ser corrigido, mas você ainda tem um problema com bluetoothd , provavelmente este:

Oct  5 16:04:17 ks34900 bluetoothd[5176]: opening L2CAP socket: Address family not supported by protocol

Abra outra pergunta e boa sorte!

    
por Avio 05.10.2012 / 18:24