erro na instalação do xournal

0
root@bt:~# sudo apt-get install xournal

Reading package lists... Done
Building dependency tree       
Reading state information... Done

You might want to run 'apt-get -f install' to correct these:

The following packages have unmet dependencies:

  g++: Depends: cpp (>= 4:4.7.2-1) but 4:4.4.3-1ubuntu1 is to be installed

       Depends: gcc (>= 4:4.7.2-1) but 4:4.4.3-1ubuntu1 is to be installed

       Depends: g++-4.7 (>= 4.7.2-1~) but it is not going to be installed

       Depends: gcc-4.7 (>= 4.7.2-1~) but it is not going to be installed

  google-chrome-stable: Depends: gconf-service but it is not going to be installed

                        Depends: libasound2 (>= 1.0.23)
                        Depends: libgconf-2-4 (>= 2.31.1) but it is not going to be installed
                        Depends: libgcrypt11 (>= 1.4.5) but 1.4.4-5ubuntu2.1 is to be installed
                        Depends: libgdk-pixbuf2.0-0 (>= 2.22.0) but it is not going to be installed
                        Depends: libgtk2.0-0 (>= 2.24.0) but 2.20.1-0ubuntu2.1 is to be installed
                        Depends: libnspr4 (>= 1.8.0.10) but it is not going to be installed
                        Depends: libnss3 (>= 3.14.3) but it is not going to be installed
                        Depends: libstdc++6 (>= 4.6) but 4.4.3-4ubuntu5.1 is to be installed
                        Depends: libx11-6 (>= 2:1.4.99.1) but 2:1.3.2-1ubuntu3 is to be installed

  xournal: Depends: libfontconfig1 (>= 2.9.0) but 2.8.0-2ubuntu1 is to be installed

           Depends: libgdk-pixbuf2.0-0 (>= 2.22.0) but it is not going to be installed
           Depends: libpoppler-glib8 (>= 0.18) but it is not going to be installed
           Depends: ghostscript-x but it is not going to be installed

E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution)

Estou usando

root@bt:~# uname -a
Linux bt 3.2.6 #1 SMP Fri Feb 17 10:34:20 EST 2012 x86_64 GNU/Linux
root@bt:~# lsb_release -sc
lucid
    
por dalayu 30.10.2013 / 06:51

1 resposta

0

Execute os seguintes comandos para instalar o xournal no Lucid

sudo gedit /etc/apt/sources.list

adicione a seguinte linha no arquivo sources.list

deb http://http.us.debian.org/debian squeeze main universe

salve o arquivo sources.list e atualize os repositórios executando o comando abaixo,

sudo apt-get update

Em seguida, instale xournal executando o comando abaixo,

sudo apt-get install xournal

Isto irá instalar o xournal e suas dependências.

Execute os seguintes comandos para desinstalar o xournal no Lucid

desinstalar apenas o xournal

sudo apt-get purge xournal

desinstalar o xournal e suas dependências

sudo apt-get purge --auto-remove xournal
    
por Avinash Raj 07.11.2013 / 07:14