Não consigo remover meu skype no Ubuntu 12.04

1

Pela primeira vez eu sei que há uma boa notícia que podemos usar o mais novo skype para o ubuntu, então eu preciso remover o ubuntu mais recente para obter segurança de instalação, mas enquanto eu tento desinstalar skype via terminal tudo o que tenho é

> santos@santos:~$ sudo apt-get remove skype [sudo] password for santos:
> Reading package lists... Done Building dependency tree        Reading
> state information... Done Package skype is not installed, so not
> removed 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
> 3 not fully installed or removed. After this operation, 0 B of
> additional disk space will be used. Setting up virtualbox
> (4.1.12-dfsg-2ubuntu0.2) ... Traceback (most recent call last):   File
> "/usr/bin/pycentral", line 2372, in <module>
>     main()   File "/usr/bin/pycentral", line 2366, in main
>     rv = action.run(global_options)   File "/usr/bin/pycentral", line 1529, in run
>     self.options.exclude, byte_compile_default=True)   File "/usr/bin/pycentral", line 1097, in install
>     rt.byte_compile(linked_files, bc_option, exclude_regex, ignore_errors)   File "/usr/bin/pycentral", line 231, in byte_compile
>     shell=False, stdin=subprocess.PIPE)   File "/usr/lib/python2.7/subprocess.py", line 679, in __init__
>     errread, errwrite)   File "/usr/lib/python2.7/subprocess.py", line 1249, in _execute_child
>     raise child_exception OSError: [Errno 2] No such file or directory dpkg: error processing virtualbox (--configure):  subprocess installed
> post-installation script returned error exit status 1 dpkg: dependency
> problems prevent configuration of virtualbox-qt:  virtualbox-qt
> depends on virtualbox (= 4.1.12-dfsg-2ubuntu0.2); however:   Package
> virtualbox is not configured yet. dpkg: error processing virtualbox-qt
> (--configure):  dependency problems - leaving unconfigured dpkg:
> dependency problems prevent configuration of virtualbox-dkms: 
> virtualbox-dkms depends on virtualbox (>= 4.1.12-dfsg-2ubuntu0.2);
> however:   Package virtualbox is not configured yet. dpkg: error
> processing virtualbox-dkms (--configure):  dependency problems -
> leaving unconfigured No 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.
>                                                     Errors were encountered while processing:  virtualbox  virtualbox-qt 
> virtualbox-dkms E: Sub-process /usr/bin/dpkg returned an error code
> (1) santos@santos:~$

o que era isso tudo e por que isso se relacionava com o virtualbox .. bem, eu tenho, mas há muito tempo não o uso até agora.

    
por santosamaru 15.11.2012 / 18:29

1 resposta

2

Não sei por que você quer ou precisa remover o antigo skype para instalar o novo, mas, de qualquer forma, o problema que você tem aqui não tem nada a ver com o Skype. Sua instalação de virtualbox está de alguma forma quebrada, e isso está quebrando o sistema de empacotamento.

Você precisa corrigir o problema da caixa virtual primeiro. Se você não está usando o VirtualBox, o mais fácil é removê-lo:

$ sudo apt-get remove virtualbox

Caso contrário, tente forçar uma reinstalação para executar novamente os scripts de pós-instalação:

$ sudo apt-get update
$ sudo apt-get install --reinstall virtualbox

Isso deve limpar o virtualbox.

Depois disso, você pode remover o skype, se necessário, da maneira que estava tentando antes.

    
por Peter Jenkins 15.11.2012 / 18:47