instala o desktop gnome no kubuntu

0

Estou tentando instalar o desktop gnome do kubuntu. Então eu fiz isso: sudo apt-get install ubuntu-desktop correu bem, mas agora eu estou recebendo este erro:

sudeep@sudeep:~$ sudo apt-get install ubuntu-desktop 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
ubuntu-desktop is already the newest version.
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 firefox-globalmenu : Depends: firefox (= 20.0+build1-0ubuntu0.12.10.3) but it is not going to be installed
 firefox-gnome-support : Depends: firefox but it is not going to be installed
 lightdm-remote-session-uccsconfigure : Depends: firefox but it is not going to be installed
 xul-ext-websites-integration : Depends: firefox (>= 9.0) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

EDITAR sudo apt-get -f install ubuntu-desktop

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Correcting dependencies... Done
The following packages were automatically installed and are no longer required:
  linux-headers-3.5.0-17 linux-headers-3.5.0-17-generic
Use 'apt-get autoremove' to remove them.
The following extra packages will be installed:
  firefox
Suggested packages:
  latex-xft-fonts
The following NEW packages will be installed:
  firefox
0 upgraded, 1 newly installed, 0 to remove and 14 not upgraded.
509 not fully installed or removed.
Need to get 0 B/24.5 MB of archives.
After this operation, 51.3 MB of additional disk space will be used.
Do you want to continue [Y/n]? y
(Reading database ... 239358 files and directories currently installed.)
Unpacking firefox (from .../firefox_20.0+build1-0ubuntu0.12.10.3_i386.deb) ...
dpkg: error processing /var/cache/apt/archives/firefox_20.0+build1-0ubuntu0.12.10.3_i386.deb (--unpack):
 trying to overwrite '/usr/share/applications/firefox.desktop', which is also in package kubuntu-firefox-installer 12.04ubuntu1
No apport report written because MaxReports is reached already
                                                              dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Errors were encountered while processing:
 /var/cache/apt/archives/firefox_20.0+build1-0ubuntu0.12.10.3_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

Por favor me ajude a corrigir isso.

    
por sudeepdino008 04.04.2013 / 21:29

3 respostas

0

O primeiro comando que você executou está correto!

Ele afirmou que ubuntu-desktop já está instalado - você precisa selecioná-lo na sua tela de login do Kubuntu.

    
por 04.04.2013 / 22:08
0

Remova o pacote kubuntu-firefox-installer .

    
por 14.04.2013 / 17:25
0

Verifique se você tem repositórios Universe e Multiverse habilitados.

$ su -
# nano /etc/apt/sources.list

Exemplo de saída do Xubuntu 12.04, que é preciso, certifique-se de que a linha esteja descomentada, com o nome da versão correta.

Ubuntu 10.04 lucid
Ubuntu 12.04 precise
Ubuntu 12.10 quantal
Ubuntu 13.04 raring

deb http://us.archive.ubuntu.com/ubuntu/ precise universe
deb-src http://us.archive.ubuntu.com/ubuntu/ precise universe
deb http://us.archive.ubuntu.com/ubuntu/ precise-updates universe
deb-src http://us.archive.ubuntu.com/ubuntu/ precise-updates universe

deb http://us.archive.ubuntu.com/ubuntu/ precise multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ precise multiverse
deb http://us.archive.ubuntu.com/ubuntu/ precise-updates multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ precise-updates multiverse

Depois de ter certeza que você ativou os repositórios Universe e Multiverse em /etc/apt/sources.list, agora podemos instalar o gnome.

# apt-get update
# apt-get install ubuntu-desktop
O pacote

ubuntu-desktop instalará softwares completos de adição de desktop gnome como firefox, libreoffice, rhythmbox. Se você quer apenas o ambiente de desktop gnome limpo sem esses softwares, você pode executar este comando.

# apt-get update
# apt-get install ubuntu-desktop --without-recommends

funciona para mim link

    
por 16.11.2013 / 13:40