Видаліть MySQL у Ubuntu


1

Я просто спробував видалити клієнта MySQL за допомогою

apt-get remove mysql-client-5.1

але виникає помилка:

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)

Як завершити видалення?

Відповіді:


2

Це виглядає як pycentral це - з якоїсь причини - не встановлено у вашій системі, хоча від нього залежить і програма python-setuptools.

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

слід усунути проблему і видалити MySQL.


2

Це не стосується MySQL. У вас є пакунки, які не закінчили конфігурацію з останнього запуску apt-get. Проблема в тому, що python не встановлено належним чином. Встановіть pycentral з apt-get install pycentral а потім це має вирішити ваші проблеми.


0

The -f перемикач apt-get спробує вирішити проблеми.

apt-get -f install

Від: http://www.linux.com/archive/feed/48910 :

Запустіть apt-get -f install або apt-get -f remove без вказівки пакета, щоб примусити завершення встановлення пакетів.

Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.