Deinstallieren Sie MySQL in Ubuntu

1

Ich habe gerade versucht, den MySQL-Client mit zu entfernen

apt-get remove mysql-client-5.1

aber ein Fehler kommt heraus:

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)

Wie vervollständige ich den Löschvorgang?

Peter Mortensen
quelle

Antworten:

2

Es sieht aus wie pycentral ist - aus welchem ​​Grund auch immer - nicht auf Ihrem System installiert, obwohl python-setuptools davon abhängt.

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

sollte das Problem beheben und MySQL entfernen.

phihag
quelle
2

Dies hat nichts mit MySQL zu tun. Sie haben Pakete, deren Konfiguration beim letzten Ausführen noch nicht abgeschlossen war apt-get. Das Problem, das Sie haben, ist, dass Python nicht richtig installiert ist. Installieren Sie pycentral mit apt-get install pycentral und dann sollte das deine probleme beheben.

Darth Android
quelle
0

Das -f apt-get versucht Probleme zu lösen.

apt-get -f install

Von: http://www.linux.com/archive/feed/48910 :

Führen Sie apt-get -f install oder apt-get -f remove aus, ohne ein Paket anzugeben, um den Abschluss der Paketinstallationen zu erzwingen.

SamK
quelle