Como remover pacotes instalados

2

Eu instalei um pacote de workbench MySQL de 32 bits. Mas eu enfrentei muitos problemas e tentei encontrar respostas aqui ... então eu soube que meu Ubuntu é 64 bit ... e baixei a versão do MySQL para 64 bit.

Quando eu digito:

sudo dpkg -i mysql_64_bit.deb 

O sistema me pediu para remover o mais antigo, então eu digitei:

teeba@ubuntu:~/Downloads$ sudo dpkg -r mysql-workbench-community-6.0.9-1ubu1204-i386.deb

Eu recebi o seguinte:

dpkg: error: you must specify packages by their own names, not by quoting the names of the files they come in

Type dpkg --help for help about installing and deinstalling packages [*];
Use 'dselect' or 'aptitude' for user-friendly package management;
Type dpkg -Dhelp for a list of dpkg debug flag values;
Type dpkg --force-help for a list of forcing options;
Type dpkg-deb --help for help about manipulating *.deb files;

Options marked [*] produce a lot of output - pipe it through 'less' or 'more' !

Alguém pode me dar o caminho certo para instalar o caminho certo e remover o mais antigo?

    
por Akari 12.02.2014 / 15:11

2 respostas

4
dpkg --get-selections | grep mysql

O comando acima exibirá todos os pacotes que têm a palavra mysql . A partir daí, você pode encontrar o pacote exato e, em seguida, removê-lo executando

sudo dpkg -P <packageName>

O comando abaixo não remove o pacote mysql instalado,

teeba@ubuntu:~/Downloads$ sudo dpkg -r mysql-workbench-community-6.0.9-1ubu1204-i386.deb
    
por Avinash Raj 12.02.2014 / 15:14
2

Tente fazer isso a partir da ferramenta apt-get, depois de adicionar o repositório para My

sudo apt-get remove --purge mysql-workbench
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install mysql-workbench

Ainda dá erros?

    
por topless 12.02.2014 / 15:14