Network Manager ausente após a atualização: sem conectividade

1

Após uma atualização e reinicialização, descobri que o ícone de rede na parte superior está ausente e, portanto, não consigo me conectar à LAN, Wi-Fi, modem USB, nada. Agora, eu estou inicializando de um Live USB, então chrooted para minha partição original do Ubuntu. Eu tentei instalar wicd por

root@ubuntu:/# apt-get install wicd
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:
wicd : Depends: wicd-daemon (= 1.7.2.3-1ubuntu0.1) but 1.7.2.3-1 is to be installed
wicd-daemon : Depends: python-wicd (= 1.7.2.3-1) but 1.7.2.3-1ubuntu0.1 is to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

Eu tentei

apt-get -f install

mas ainda assim o problema permanece.

Como consertar isso? O que estou fazendo de errado? Eu quero instalar wicd na minha partição original do Ubuntu. Ajuda por favor.

    
por Ajay Srinivasan 14.08.2012 / 14:16

1 resposta

0

Você pode tentar reinstalar o network-manager . Para fazer isso, use os seguintes comandos:

sudo apt-get install --reinstall network-manager
sudo apt-get install --reinstall network-manager-gnome

Para resolver o problema de não conseguir instalar wicd , primeiro instale as dependências.

sudo apt-get install wicd-daemon
sudo apt-get install python-wicd

Agora, tente instalar o wicd .

    
por green 14.08.2012 / 14:50