Como remover ou reparar com segurança o pacote plymouth?

2

Eu tenho um pacote quebrado ... Até agora nada horrível. O problema é que é Plymouth, e parece que se eu removê-lo, vou remover metade dos pacotes do meu sistema ... Então aqui está a minha pergunta: se eu realmente remover, ou mesmo purgar plymouth ; terei pelo menos um terminal para reinstalá-lo? Ou eu estou definitivamente condenado?

Apenas para ilustrar o que eu digo; aqui é o resultado de um

  

apt-get --reinstall instala o plymouth:

julien@julien-desktop:~$ sudo apt-get --reinstall install plymouth
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Reinstallation of plymouth is not possible, it cannot be downloaded.
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 plymouth : Depends: libdrm-nouveau1 (>= 2.4.11-1ubuntu1~) but it is not installable
            Recommends: plymouth-themes-all but it is not installable
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

ou um

  

apt-get -f install

(bem basicamente é o mesmo)

julien@julien-desktop:~$ sudo apt-get -f install
[sudo] password for julien: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Correcting dependencies... failed.
The following packages have unmet dependencies:
 plymouth : Depends: libdrm-nouveau1 (>= 2.4.11-1ubuntu1~) but it is not installable
            Recommends: plymouth-themes-all but it is not installable
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
E: Unable to correct dependencies
julien@julien-desktop:~$ 

Qualquer ideia seria muito bem vinda ...

    
por Julien Gorenflot 09.04.2012 / 21:42

1 resposta

2

É possível removê-lo. O relatório de erros # 556372 descreve o problema. Dave Lentz tem um PPA que trabalha em torno desses problemas. Então você tem que adicionar o PPA:

sudo apt-add-repository ppa:dtl131/mediahacks
sudo aptitude update

Agora você precisa atualizar mountall para a versão (a partir de abril de 2012): 2.25ubuntu2 ~ mediahacks1. Quando isto estiver terminado, você poderá desinstalar o plymouth sem desinstalar a metade do seu sistema.

    
por qbi 10.04.2012 / 00:30