Desinstalar o MySQL no Ubuntu

1

Eu apenas tentei remover o cliente MySQL usando

apt-get remove mysql-client-5.1

mas um erro é exibido:

Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libnet-daemon-perl libhtml-template-perl libdbi-perl mysql-client-core-5.1
  libdbd-mysql-perl libplrpc-perl mysql-server-core-5.1
Use 'apt-get autoremove' to remove them.
The following packages will be REMOVED:
  mysql-client-5.1 mysql-server-5.1
0 upgraded, 0 newly installed, 2 to remove and 5 not upgraded.
1 not fully installed or removed.
After this operation, 34.8MB disk space will be freed.
Do you want to continue [Y/n]? y
(Reading database ... 29745 files and directories currently installed.)
Removing mysql-server-5.1 ...
mysql stop/waiting
Removing mysql-client-5.1 ...
Processing triggers for man-db ...
Processing triggers for ureadahead ...
Setting up python-setuptools (0.6.10-4ubuntu1) ...
/var/lib/dpkg/info/python-setuptools.postinst: 10: pycentral: not found
dpkg: error processing python-setuptools (--configure):
 subprocess installed post-installation script returned error exit status 127
Errors were encountered while processing:
 python-setuptools
E: Sub-process /usr/bin/dpkg returned an error code (1)

Como faço para completar a exclusão?

    
por Peter Mortensen 14.06.2011 / 21:20

3 respostas

2

Parece que o pycentral é - por alguma razão - não instalado em seu sistema, embora o python-setuptools dependa dele.

apt-get install -y python-central
apt-get remove -y mysql-client-5.1

deve corrigir o problema e remover o MySQL.

    
por 14.06.2011 / 21:38
2

Isto não está relacionado ao MySQL. Você tem pacotes que não terminaram de configurar a partir da última vez que você executou apt-get . O problema que você está tendo é que o python não está instalado corretamente. Instale o pycentral com apt-get install pycentral e, então, isso deve resolver seus problemas.

    
por 14.06.2011 / 21:38
0

A opção -f do apt-get tentará resolver problemas.

apt-get -f install

De: link :

Run apt-get -f install or apt-get -f remove without specifying a package, to force completion of package installations.

    
por 06.07.2011 / 20:12