При обработке следующих пакетов произошли ошибки libc bin

After upgrading to Ubuntu 16.04, I cannot update my system. After the usual:

apt-get upgrade

I get this error:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Calculating upgrade... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue? [Y/n] y
Setting up libc-bin (2.23-0ubuntu3) ...
Segmentation fault (core dumped)
/sbin/ldconfig.real: Can't stat /lib/i686-linux-gnu: No such file or directory
/sbin/ldconfig.real: Can't stat /usr/lib/i686-linux-gnu: No such file or directory
/sbin/ldconfig.real: Path `/lib/x86_64-linux-gnu' given more than once
/sbin/ldconfig.real: Path `/usr/lib/x86_64-linux-gnu' given more than once
Segmentation fault (core dumped)
dpkg: error processing package libc-bin (--configure):
 subprocess installed post-installation script returned error exit status 139
Errors were encountered while processing:
 libc-bin
E: Sub-process /usr/bin/dpkg returned an error code (1)

Any ideas on how to fix this? apt-get clean and apt-get -f install did nothing.

asked Jul 30, 2016 at 18:08

Molorius's user avatar

MoloriusMolorius

1311 gold badge1 silver badge5 bronze badges

2

Here the reason seemed to be a corrupted /var/cache/ldconfig/aux-cache.

The solution was to do (as root):

rm /var/cache/ldconfig/aux-cache

And afterwards execute

/sbin/ldconfig

Zanna's user avatar

Zanna

69.4k56 gold badges217 silver badges327 bronze badges

answered May 12, 2018 at 8:23

Christof's user avatar

ChristofChristof

511 silver badge1 bronze badge

2

If it is in WSL, try (tks lifesaver.codes)

sudo mv /var/lib/dpkg/info/libc-bin.* /tmp/

sudo dpkg --remove --force-remove-reinstreq libc-bin

sudo dpkg --purge libc-bin

sudo apt install libc-bin

sudo mv /tmp/libc-bin.* /var/lib/dpkg/info/

Artur Meinild's user avatar

answered May 29, 2022 at 18:18

Bigumangaba's user avatar

4

I used to have the same error here, I did the following command:

 sudo apt-get --reinstall install libc-bin

And it worked, it reinstalled the libc-bin package and solved the issue.

Hope it helps

Vitor Abella's user avatar

Vitor Abella

7,29712 gold badges56 silver badges102 bronze badges

answered Aug 13, 2017 at 18:43

Mario Junior's user avatar

5

I had this problem, it turned out to be limits related. This resolved it:

limit datasize 2000M

answered Mar 13, 2018 at 23:47

Steven Borho's user avatar

I had to run sudo rm /var/cache/ldconfig/aux-cache and sudo /sbin/ldconfig.real on WSL Ubuntu 20.04 .

answered May 22, 2022 at 22:22

Luis Lopes's user avatar

1

I was getting a similar problem to the OP, albeit with a different error code:

$ sudo apt-get install python3.8
...
Setting up libc-bin (2.31-0ubuntu9.9) ...
Aborted (core dumped)
/sbin/ldconfig.real: Can't stat /usr/local/lib/x86_64-linux-gnu: No such file or directory
...
/lib/x86_64-linux-gnu:
Aborted (core dumped)
dpkg: error processing package libc-bin (--configure):
 installed libc-bin package post-installation script subprocess returned error exit status 134

After trying many of the other answers to this question, I found further inspiration in the answer to this question on StackOverflow.

I fixed the Can't stat /usr/local/lib/x86_64-linux-gnu error by manually creating the folder:

sudo mkdir /usr/local/lib/x86_64-linux-gnu

I then checked the /lib/x86_64-linux-gnu folder existed:

ll /lib/x86_64-linux-gnu

After which the dpkg command worked:

$ sudo dpkg --configure -a
Setting up libc-bin (2.31-0ubuntu9.9) ...

answered Jun 30 at 9:32

Charlie Joynt's user avatar

With rm aux-cache I got:

/lib/x86_64-linux-gnu:
Aborted (core dumped)

and only https://askubuntu.com/a/1411267/1423238 helps:

sudo mv /var/lib/dpkg/info/libc-bin.* /tmp/

sudo dpkg --remove --force-remove-reinstreq libc-bin

sudo dpkg --purge libc-bin

sudo apt install libc-bin

sudo mv /tmp/libc-bin.* /var/lib/dpkg/info/

Charlie Joynt's user avatar

answered Jun 23, 2022 at 23:06

dragonfly's user avatar

2

You must log in to answer this question.

Not the answer you’re looking for? Browse other questions tagged

.

After upgrading to Ubuntu 16.04, I cannot update my system. After the usual:

apt-get upgrade

I get this error:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Calculating upgrade... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue? [Y/n] y
Setting up libc-bin (2.23-0ubuntu3) ...
Segmentation fault (core dumped)
/sbin/ldconfig.real: Can't stat /lib/i686-linux-gnu: No such file or directory
/sbin/ldconfig.real: Can't stat /usr/lib/i686-linux-gnu: No such file or directory
/sbin/ldconfig.real: Path `/lib/x86_64-linux-gnu' given more than once
/sbin/ldconfig.real: Path `/usr/lib/x86_64-linux-gnu' given more than once
Segmentation fault (core dumped)
dpkg: error processing package libc-bin (--configure):
 subprocess installed post-installation script returned error exit status 139
Errors were encountered while processing:
 libc-bin
E: Sub-process /usr/bin/dpkg returned an error code (1)

Any ideas on how to fix this? apt-get clean and apt-get -f install did nothing.

asked Jul 30, 2016 at 18:08

Molorius's user avatar

MoloriusMolorius

1311 gold badge1 silver badge5 bronze badges

2

Here the reason seemed to be a corrupted /var/cache/ldconfig/aux-cache.

The solution was to do (as root):

rm /var/cache/ldconfig/aux-cache

And afterwards execute

/sbin/ldconfig

Zanna's user avatar

Zanna

69.4k56 gold badges217 silver badges327 bronze badges

answered May 12, 2018 at 8:23

Christof's user avatar

ChristofChristof

511 silver badge1 bronze badge

2

If it is in WSL, try (tks lifesaver.codes)

sudo mv /var/lib/dpkg/info/libc-bin.* /tmp/

sudo dpkg --remove --force-remove-reinstreq libc-bin

sudo dpkg --purge libc-bin

sudo apt install libc-bin

sudo mv /tmp/libc-bin.* /var/lib/dpkg/info/

Artur Meinild's user avatar

answered May 29, 2022 at 18:18

Bigumangaba's user avatar

4

I used to have the same error here, I did the following command:

 sudo apt-get --reinstall install libc-bin

And it worked, it reinstalled the libc-bin package and solved the issue.

Hope it helps

Vitor Abella's user avatar

Vitor Abella

7,29712 gold badges56 silver badges102 bronze badges

answered Aug 13, 2017 at 18:43

Mario Junior's user avatar

5

I had this problem, it turned out to be limits related. This resolved it:

limit datasize 2000M

answered Mar 13, 2018 at 23:47

Steven Borho's user avatar

I had to run sudo rm /var/cache/ldconfig/aux-cache and sudo /sbin/ldconfig.real on WSL Ubuntu 20.04 .

answered May 22, 2022 at 22:22

Luis Lopes's user avatar

1

I was getting a similar problem to the OP, albeit with a different error code:

$ sudo apt-get install python3.8
...
Setting up libc-bin (2.31-0ubuntu9.9) ...
Aborted (core dumped)
/sbin/ldconfig.real: Can't stat /usr/local/lib/x86_64-linux-gnu: No such file or directory
...
/lib/x86_64-linux-gnu:
Aborted (core dumped)
dpkg: error processing package libc-bin (--configure):
 installed libc-bin package post-installation script subprocess returned error exit status 134

After trying many of the other answers to this question, I found further inspiration in the answer to this question on StackOverflow.

I fixed the Can't stat /usr/local/lib/x86_64-linux-gnu error by manually creating the folder:

sudo mkdir /usr/local/lib/x86_64-linux-gnu

I then checked the /lib/x86_64-linux-gnu folder existed:

ll /lib/x86_64-linux-gnu

After which the dpkg command worked:

$ sudo dpkg --configure -a
Setting up libc-bin (2.31-0ubuntu9.9) ...

answered Jun 30 at 9:32

Charlie Joynt's user avatar

With rm aux-cache I got:

/lib/x86_64-linux-gnu:
Aborted (core dumped)

and only https://askubuntu.com/a/1411267/1423238 helps:

sudo mv /var/lib/dpkg/info/libc-bin.* /tmp/

sudo dpkg --remove --force-remove-reinstreq libc-bin

sudo dpkg --purge libc-bin

sudo apt install libc-bin

sudo mv /tmp/libc-bin.* /var/lib/dpkg/info/

Charlie Joynt's user avatar

answered Jun 23, 2022 at 23:06

dragonfly's user avatar

2

You must log in to answer this question.

Not the answer you’re looking for? Browse other questions tagged

.

ничего не помогает :-\

alex @ ubuntu  ~
└─ $ ▶ sudo apt purge libc-bin
Чтение списков пакетов… Готово
Построение дерева зависимостей       
Чтение информации о состоянии… Готово
Следующие пакеты устанавливались автоматически и больше не требуются:
  alien at debugedit libfl2 librpmbuild8 librpmsign8 lsb-security pax rpm
Для их удаления используйте «sudo apt autoremove».
Будут установлены следующие дополнительные пакеты:
  locales-all
Следующие пакеты будут УДАЛЕНЫ:
  language-pack-en* language-pack-en-base* language-pack-gnome-en* language-pack-gnome-en-base* language-pack-gnome-ru* language-pack-gnome-ru-base* language-pack-kde-ru* language-pack-ru* language-pack-ru-base* libc-bin* libreoffice-help-ru* libreoffice-l10n-ru* locales*
  lsb-core* ubuntu-minimal*
Следующие НОВЫЕ пакеты будут установлены:
  locales-all
ВНИМАНИЕ: Следующие пакеты первой необходимости будут удалены.
НЕ ДЕЛАЙТЕ этого, если вы НЕ представляете себе все возможные последствия!
  libc-bin
Обновлено 0 пакетов, установлено 1 новых пакетов, для удаления отмечено 15 пакетов, и 66 пакетов не обновлено.
Установлено или удалено не до конца 1 пакетов.
Необходимо скачать 10,5 MB архивов.
После данной операции объём занятого дискового пространства возрастёт на 144 MB.
То, что вы хотите сделать, может иметь нежелательные последствия.
Чтобы продолжить, введите фразу «Да, делать, как я говорю!»
 ?] Да, делать, как я говорю!
Пол:1 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 locales-all amd64 2.31-0ubuntu9.9 [10,5 MB]
Получено 10,5 MB за 2с (4 732 kB/s)       
(Чтение базы данных … на данный момент установлено 364004 файла и каталога.)
Удаляется libreoffice-help-ru (1:6.4.7-0ubuntu0.20.04.8) …
Удаляется libreoffice-l10n-ru (1:6.4.7-0ubuntu0.20.04.8) …
Удаляется ubuntu-minimal (1.450.2) …
dpkg: предупреждение: проблема игнорируется, поскольку задан параметр --force:
dpkg: предупреждение: этот пакет является пакетом первой необходимости и не должен быть удалён
Удаляется language-pack-kde-ru (1:19.10.0ubuntu1) …
Удаляется lsb-core (11.1.0ubuntu2) …
dpkg: предупреждение: проблема игнорируется, поскольку задан параметр --force:
dpkg: предупреждение: этот пакет является пакетом первой необходимости и не должен быть удалён
dpkg: предупреждение: проблема игнорируется, поскольку задан параметр --force:
dpkg: предупреждение: этот пакет является пакетом первой необходимости и не должен быть удалён
dpkg: предупреждение: проблема игнорируется, поскольку задан параметр --force:
dpkg: предупреждение: этот пакет является пакетом первой необходимости и не должен быть удалён
Удаляется language-pack-gnome-en-base (1:20.04+20220818) …
Удаляется language-pack-en-base (1:20.04+20220818) …
Удаляется language-pack-gnome-ru-base (1:20.04+20220818) …
Удаляется language-pack-ru-base (1:20.04+20220818) …
dpkg: предупреждение: проблема игнорируется, поскольку задан параметр --force:
dpkg: предупреждение: этот пакет является пакетом первой необходимости и не должен быть удалён
Удаляется language-pack-gnome-en (1:20.04+20220818) …
Удаляется language-pack-en (1:20.04+20220818) …
Удаляется language-pack-gnome-ru (1:20.04+20220818) …
Удаляется language-pack-ru (1:20.04+20220818) …
dpkg: предупреждение: проблема игнорируется, поскольку задан параметр --force:
dpkg: предупреждение: этот пакет является пакетом первой необходимости и не должен быть удалён
dpkg: предупреждение: проблема игнорируется, поскольку задан параметр --force:
dpkg: предупреждение: этот пакет является пакетом первой необходимости и не должен быть удалён
dpkg: предупреждение: проблема игнорируется, поскольку задан параметр --force:
dpkg: предупреждение: этот пакет является пакетом первой необходимости и не должен быть удалён
dpkg: предупреждение: проблема игнорируется, поскольку задан параметр --force:
dpkg: предупреждение: этот пакет является пакетом первой необходимости и не должен быть удалён
dpkg: предупреждение: проблема игнорируется, поскольку задан параметр --force:
dpkg: предупреждение: этот пакет является пакетом первой необходимости и не должен быть удалён
dpkg: предупреждение: проблема игнорируется, поскольку задан параметр --force:
dpkg: предупреждение: этот пакет является пакетом первой необходимости и не должен быть удалён
dpkg: предупреждение: проблема игнорируется, поскольку задан параметр --force:
dpkg: предупреждение: этот пакет является пакетом первой необходимости и не должен быть удалён
dpkg: предупреждение: проблема игнорируется, поскольку задан параметр --force:
dpkg: предупреждение: этот пакет является пакетом первой необходимости и не должен быть удалён
dpkg: предупреждение: проблема игнорируется, поскольку задан параметр --force:
dpkg: предупреждение: этот пакет является пакетом первой необходимости и не должен быть удалён
dpkg: предупреждение: проблема игнорируется, поскольку задан параметр --force:
dpkg: предупреждение: этот пакет является пакетом первой необходимости и не должен быть удалён
dpkg: libc-bin: имеются проблемы с зависимостями, но по вашему указанию
он всё равно будет удалён:
 locales зависит от libc-bin (>> 2.31).

Удаляется libc-bin (2.31-0ubuntu9.9) …
dpkg: locales: имеются проблемы с зависимостями, но по вашему указанию
он всё равно будет удалён:
 libreoffice-l10n-fr зависит от locales | locales-all, однако:
  Пакет locales будет удалён.
  Пакет locales-all не установлен.
 libreoffice-l10n-en-za зависит от locales | locales-all, однако:
  Пакет locales будет удалён.
  Пакет locales-all не установлен.
 libreoffice-l10n-en-gb зависит от locales | locales-all, однако:
  Пакет locales будет удалён.
  Пакет locales-all не установлен.

Удаляется locales (2.31-0ubuntu9.9) …
dpkg: warning: 'ldconfig' not found in PATH or not executable
dpkg: error: 1 expected program not found in PATH or not executable
Note: root's PATH should usually contain /usr/local/sbin, /usr/sbin and /sbin
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LANGUAGE = "ru_RU",
LC_ALL = (unset),
LANG = "ru_RU.UTF-8"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
E: Sub-process /usr/bin/dpkg returned an error code (2)

и второй блок

alex @ ubuntu  ~
└─ $ ▶ sudo apt install libc-bin
Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies:
 libreoffice-l10n-en-gb : Depends: locales but it is not going to be installed or
                                   locales-all
 libreoffice-l10n-en-za : Depends: locales but it is not going to be installed or
                                   locales-all
 libreoffice-l10n-fr : Depends: locales but it is not going to be installed or
                                locales-all
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).
теперь то что я хочу :'(

alex @ ubuntu  ~
└─ # ▶ sudo apt install -y gettext git python3-pip python3-setuptools python3-wheel python3-dev virtualenv pkg-config mesa-utils libcairo2-dev gtk-update-icon-cache desktop-file-utils xdg-utils libgirepository1.0-dev gir1.2-gtk-3.0 gnutls-bin:i386
Reading package lists... Done
Building dependency tree       
Reading state information... Done
gettext is already the newest version (0.19.8.1-10build1).
libcairo2-dev is already the newest version (1.16.0-4ubuntu1).
pkg-config is already the newest version (0.29.1-0ubuntu4).
mesa-utils is already the newest version (8.4.0-1build1).
desktop-file-utils is already the newest version (0.24-1ubuntu3).
gir1.2-gtk-3.0 is already the newest version (3.24.20-0ubuntu1.1).
git is already the newest version (1:2.25.1-1ubuntu3.11).
gtk-update-icon-cache is already the newest version (3.24.20-0ubuntu1.1).
xdg-utils is already the newest version (1.1.3-2ubuntu1.20.04.2).
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies:
 gnutls-bin:i386 : Depends: libgnutls-dane0:i386 (>= 3.5.6) but it is not going to be installed
                   Depends: libopts25:i386 (>= 1:5.18.16) but it is not going to be installed
 libgirepository1.0-dev : Depends: gobject-introspection (= 1.64.1-1~ubuntu20.04.1) but it is not going to be installed
 libreoffice-l10n-en-gb : Depends: locales but it is not going to be installed or
                                   locales-all
 libreoffice-l10n-en-za : Depends: locales but it is not going to be installed or
                                   locales-all
 libreoffice-l10n-fr : Depends: locales but it is not going to be installed or
                                locales-all
 python3-dev : Depends: libpython3-dev (= 3.8.2-0ubuntu2) but it is not going to be installed
               Depends: python3.8-dev (>= 3.8.2-1~) but it is not going to be installed
 python3-pip : Depends: python-pip-whl (= 20.0.2-5ubuntu1.9) but it is not going to be installed
 virtualenv : Depends: python3-virtualenv but it is not going to be installed
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).
ладно

Доброго времени суток всем.
Я пытался настроить доступ к компьютеру с телефона через wi-fi, но что-то пошло не так. Телефон страшно затупил и несколько раз перезагрузился, а на компе перестал открываться system-config-samba. Я хотел через Muon переустановить пакеты samba и system-config-samba, но он сказал, что есть какие-то ошибки. В подробности он вдаваться не стал. Тогда я попробовал это сделать через терминал и вот результат:

Развернуть/свернуть скрытый текст.

~$ sudo apt-get install samba
Чтение списков пакетов… Готово
Построение дерева зависимостей
Чтение информации о состоянии… Готово
Уже установлен пакет samba самой новой версии (2:4.6.7+dfsg-1ubuntu3.1).
Следующие пакеты устанавливались автоматически и больше не требуются:
evolution-data-server evolution-data-server-common libcamel-1.2-60
libebackend-1.2-10 libebook-1.2-19 libebook-contacts-1.2-2 libecal-1.2-19
libedata-book-1.2-25 libedata-cal-1.2-28 libedataserver-1.2-22
libedataserverui-1.2-1 libgdata-common libgdata22 libgeocode-glib0 libgoa-1.0-0b
libgoa-1.0-common libgweather-3-6 libgweather-common libjavascriptcoregtk-4.0-18
liboauth0 libphonenumber7 libwebkit2gtk-4.0-37 linux-headers-4.13.0-16
linux-headers-4.13.0-16-generic linux-image-4.13.0-16-generic
linux-image-extra-4.13.0-16-generic menu
Для их удаления используйте «sudo apt autoremove».
Обновлено 0 пакетов, установлено 0 новых пакетов, для удаления отмечено 0 пакетов, и 0 пакетов не обновлено.
Установлено или удалено не до конца 2 пакетов.
После данной операции, объём занятого дискового пространства возрастёт на 0 B.
Хотите продолжить? [Д/н] д
Настраивается пакет samba (2:4.6.7+dfsg-1ubuntu3.1) …
Failed to preset unit: Unit file /etc/systemd/system/samba-ad-dc.service is masked.
/usr/bin/deb-systemd-helper: error: systemctl preset failed on samba-ad-dc.service: No such file or directory
Job for smbd.service failed because the control process exited with error code.
See «systemctl status smbd.service» and «journalctl -xe» for details.
invoke-rc.d: initscript smbd, action «restart» failed.
● smbd.service — Samba SMB Daemon
Loaded: loaded (/lib/systemd/system/smbd.service; enabled; vendor preset: enabled)
Active: failed (Result: exit-code) since Sat 2017-12-23 22:15:45 +07; 15ms ago
Docs: man:smbd(8)
man:samba(7)
man:smb.conf(5)
Process: 3364 ExecStart=/usr/sbin/smbd $SMBDOPTIONS (code=exited, status=1/FAILURE)
Main PID: 3364 (code=exited, status=1/FAILURE)

дек 23 22:15:45 Alexxa systemd[1]: Starting Samba SMB Daemon…
дек 23 22:15:45 Alexxa systemd[1]: smbd.service: Main process exited, code=exited, status=1/FAILURE
дек 23 22:15:45 Alexxa systemd[1]: Failed to start Samba SMB Daemon.
дек 23 22:15:45 Alexxa systemd[1]: smbd.service: Unit entered failed state.
дек 23 22:15:45 Alexxa systemd[1]: smbd.service: Failed with result ‘exit-code’.
dpkg: ошибка при обработке пакета samba (—configure):
подпроцессОтчёты apport не записаны, так как сообщение об ошибке указывает на повторную ошибку от предыдущего отказа.
установлен сценарий post-installation возвратил код ошибки 1
dpkg: зависимости пакетов не позволяют настроить пакет system-config-samba:
system-config-samba зависит от samba, однако:
Пакет samba пока не настроен.

dpkg: ошибка при обработке пакета system-config-samba (—configure):
проблемы зависимостей — оставляем не настроенным
Обрабатываются триггеры для libc-bin (2.26-0ubuntu2) …
При обработке следующих пакетов произошли ошибки:
samba
system-config-samba
E: Sub-process /usr/bin/dpkg returned an error code (1)

Команда sudo apt-get -f install даёт тот же самый результат.
Эти пакеты удаляются без жалоб и вроде как устанавливаются, apt-get update говорит, что все пакеты имеют последнюю версию, но не настраиваиются, а я пока со всякими конфигурационными файлами не очень разобрался. Подскажите, пожалуйста.

Forum rules
There are no such things as «stupid» questions. However if you think your question is a bit stupid, then this is the right place for you to post it. Stick to easy to-the-point questions that you feel people can answer fast. For long and complicated questions use the other forums in the support section.
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.

sixdigit

Level 1
Level 1
Posts: 3
Joined: Fri Aug 21, 2020 5:08 am

[SOLVED] libc-bin error during upgrade

Hello, new to Linux Mint. Just installed it and I was trying to update via the terminal:

Code: Select all

sudo apt update && sudo apt upgrade -y

Encountered an error with regards to libc-bin

Code: Select all

dpkg: error processing package libc-bin (--configure):
	installed libc-bin package post-installation script subprocess returned error exit status 135
Errors were encountered while processing:
	libc-bin
E: Sub-process /usr/bin/dpkg returned an error code (1)

I tried uninstalling libc-bin but still encountered the same error message.

Appreciate any help I can get. Thanks!

Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 2 times in total.

Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.

hydrurga

Level 5
Level 5
Posts: 743
Joined: Sun Nov 15, 2015 4:08 pm

Re: libc-bin error during upgrade

Post

by hydrurga »

Hi there, and welcome to the forums.

The general fix for such problems is sudo apt-get -f install.

If that doesn’t work, let’s have a look at which packages are not properly installed:

sixdigit

Level 1
Level 1
Posts: 3
Joined: Fri Aug 21, 2020 5:08 am

Re: libc-bin error during upgrade

Post

by sixdigit »

Hello, thanks for your reply. the install command didn’t work. Still encountered the error.

Code: Select all

dpkg -l | grep -v "^ii"

Desired=Unknown/Install/Remove/Purge/Hold
	Status=Not/Install/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
	/Err?=(none)/Reinst-required (Status, Err: uppercase=bad)
	Name					Version				Architecture			Description
if libc-bin						2.31-0ubuntu9			amd64				GNU C Library: Binaries

hydrurga

Level 5
Level 5
Posts: 743
Joined: Sun Nov 15, 2015 4:08 pm

Re: libc-bin error during upgrade

Post

by hydrurga »

Ok. The libc-bin package was unpacked but the configuration failed half-way through leaving the package half-configured.

Let’s try purging it:

If this fails, try instead:

If that fails, try:

Code: Select all

sudo dpkg --purge --force-all libc-bin

If one of the above has worked, reinstall the package with:

Понравилась статья? Поделить с друзьями:
  • При обработке следующих пакетов произошли ошибки install info
  • При отключении аккумулятора сбрасываются ошибки
  • При открытии симс 4 выдает ошибку msvcp120 dll
  • При откате windows 10 произошла ошибка
  • При обработке следующих пакетов произошли ошибки initramfs tools