Como remover completamente o pacote jitsi *?

1

Estou usando o Debian 8 Jessie OS. Eu corrompi a instalação do pacote jitsi. Eu preciso desinstalar o jitsi do meu PC. Eu não posso fazer isso. Essa é a minha saída do terminal:

root@debian:~# apt-get purge --remove jitsi*
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Note, selecting 'jitsi-meet-prosody' for regex 'jitsi*'
Note, selecting 'jitsi-meet' for regex 'jitsi*'
Note, selecting 'jitsi-meet-tokens' for regex 'jitsi*'
Note, selecting 'jitsi-videobridge' for regex 'jitsi*'
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 jicofo : PreDepends: jitsi-videobridge but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
root@debian:~# apt-get -f install
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Correcting dependencies... Done
The following extra packages will be installed:
  lua-event lua-expat lua-filesystem lua-sec lua-socket lua5.1 prosody
Suggested packages:
  lua-zlib lua-dbi-postgresql lua-dbi-mysql lua-dbi-sqlite3
Recommended packages:
  lua5.1-sec lua5.1-event
The following packages will be REMOVED:
  jitsi-meet-tokens
The following NEW packages will be installed:
  lua-event lua-expat lua-filesystem lua-sec lua-socket lua5.1 prosody
0 upgraded, 7 newly installed, 1 to remove and 8 not upgraded.
2 not fully installed or removed.
Need to get 0 B/417 kB of archives.
After this operation, 2,175 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
(Reading database ... 174595 files and directories currently installed.)
Removing jitsi-meet-tokens (1.0.1073-1) ...
dpkg: error processing package jitsi-meet-tokens (--remove):
 subprocess installed post-removal script returned error exit status 10
Errors were encountered while processing:
 jitsi-meet-tokens
======  How can you help?  (doc: https://wiki.debian.org/how-can-i-help ) ======

-----  Show old opportunities as well as new ones: how-can-i-help --old  -----
E: Sub-process /usr/bin/dpkg returned an error code (1)
root@debian:~# apt-get purge jigasi jitsi-meet jicofo jitsi-videobridge
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package jigasi
root@debian:~# apt-get purge jitsi-meet jicofo jitsi-videobridge
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:
 jitsi-meet-prosody : Depends: prosody but it is not going to be installed or
                               prosody-trunk but it is not installable
                      Depends: jitsi-videobridge but it is not going to be installed
                      Depends: jicofo but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
root@debian:~# apt-get purge jitsi-meet jicofo jitsi-videobridge
Reading package lists... Done
Building dependency tree       
Reading state information... Done
^[[AYou might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 jitsi-meet-prosody : Depends: prosody but it is not going to be installed or
                               prosody-trunk but it is not installable
                      Depends: jitsi-videobridge but it is not going to be installed
                      Depends: jicofo but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

Não consigo remover este pacote. Posso acessar este pacote da árvore de diretórios e removê-lo manualmente?

    
por user196497 22.10.2016 / 18:14

2 respostas

1

Comece com dpkg --configure -a para eliminar quaisquer vestígios dessa falha.

Depois disso, adicione explicitamente o pacote jitsi-meet-prosody à invocação de apt-get purge , para que ele saiba que sua intenção é removê-lo também - caso contrário, ele tenta manter o estado existente.

De fato, a julgar pela sua intenção, você pode querer apenas limpar 'jitsi.*' para não perseguir cada novo subpacote. (NB: apt-get usa expressões regulares, dpkg usa globs.)

    
por 22.10.2016 / 19:29
0

Se nada tiver funcionado ... faça o seguinte: Faça o backup do seu arquivo de status:

$ sudo cp /var/lib/dpkg/status /var/lib/dpkg/status_bk

Verifique se o seu arquivo de backup existe

$ ls /var/lib/dpkg/

Você também pode abrir o arquivo de status de backup

$ less /var/lib/dpkg/status_bk

Abra o arquivo de status atual usando xed ( xed é o editor de texto padrão do Linux Mint 18, mas você pode usar outros como gedit ou vi se você tiver esse disponível em seu sistema):

$ sudo xed /var/lib/dpkg/status

Pressione Ctrl + f para encontrar o pacote que deseja remover.
Por exemplo: jitsi-meet-tokens

Excluir ou remover todo o texto da entrada sobre o pacote de destino.
Nesse caso (o pacote de destino é jitsi-meet-tokens), exclua esta seção do texto a seguir no arquivo de status.

Package: jitsi-meet-tokens
Status: deinstall ok half-installed
Priority: extra
Section: net
Installed-Size: 53
Maintainer: Jitsi Team <[email protected]>
Architecture: all
Source: jitsi-meet
Version: 1.0.1073-1
Depends: debconf (>= 0.5) | debconf-2.0, prosody-trunk (>= 1nightly607), libssl-dev, luarocks, jitsi-meet-prosody
Description: Prosody token authentication plugin for Jitsi Meet
Homepage: https://jitsi.org/meet

Em seguida, pressione Ctrl + s para salvar, e agora vamos verificar se o erro do pacote foi resolvido.

$ sudo apt-get update

Aproveite!
link

    
por 06.11.2016 / 19:10

Tags