LINUX.ORG.RU

Ошибка при обновлении пакетов , не обновляется.

 


0

1

Добрый день! Linux Debian 9 Запускаю обновление пакетов, сразу же выдаёт ошибку и далее ни чего не делает.

 libuuid1-udeb depends on libc6-udeb (>= 2.24); however:
  Package libc6-udeb is not installed.

dpkg: error processing package libuuid1-udeb (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of udev:
 udev depends on libudev1 (= 215-17+deb8u6); however:
  Version of libudev1:i386 on system is 232-25+deb9u1.

dpkg: error processing package udev (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 libuuid1-udeb
 udev

Как можно устранить данную проблему? Помогите пожалуйста. Спасибо!


Где ты достал эту систему? У тебя там мешанина из debian 8, debian 9 и пакетов для установочного диска (они не предназначены для установки в систему и нужны только чтобы установщик работал).

firkax ★★★★★
()
Ответ на: комментарий от oer

libuuid1-udeb depends on libc6-udeb (>= 2.24); however:
Package libc6-udeb is not installed.

поставить пакет libc6-udeb как ни странно, если поможет.

ну и реинсталить пакет libuuid1-udeb (reinstall) из deb9 репозитория, чтобы его версия перешла на deb9 и стала требовать deb9 зависимости…
системе давно делал upgrade ?? какие репозитории подключены ??
полностью согласен с теоретик, смешение deb8 и deb9 ничего хорошего не сулит.
система так полагаю неконститентна :)

pfg ★★★★★
()
Последнее исправление: pfg (всего исправлений: 1)

Дружище, если не попрощавшийся коллега содержал систему в таком виде — он обязательно где нибудь ещё оставил насраллу, и не одну. Могу посоветовать аккуратно всё это забекапить, хотя бы конфиги, и начать переустанавливать

Jameson ★★★★★
()
Ответ на: комментарий от oer

Неудивительно. Ад зависимостей в Debian бывает очень сложно решить, особенно если кто-то «умный» криво намешал ветки.

Для начала – это аппаратный или виртуальный сервер? Есть ли бекапы?

Ну и давай полную диагностику… сразу скажу, не могу обещать, что все починится по моим советам. Есть немалый шанс, что ОС доломается от дальнейших манипуляций, так что наличие рабочего бекапа, который ты можешь восстановить и запустить – обязательно.

Диагностические команды:

uname -a
lsb_release -a
dpkg --print-architecture
dpkg --print-foreign-architectures
grep -v -e '^#' -e '^$' /etc/apt/sources.list
grep -vH -e '^#' -e '^$' /etc/apt/sources.list.d/*
LANG=C apt install -sf
for i in $(LANG=C apt list --installed 2>/dev/null | grep -v "^Listing..." | cut -f 2 -d / | cut -f 1 -d " " | cut -f 1 -d "," | sort | uniq); do echo $i; LANG=C apt list --installed 2>/dev/null | grep "/$i" | wc -l; done

Как правильно копировать вывод терминала

Vsevolod-linuxoid ★★★★★
()
Последнее исправление: Vsevolod-linuxoid (всего исправлений: 1)
Ответ на: комментарий от Vsevolod-linuxoid
Linux warlock 3.16.0-4-686-pae #1 SMP Debian 3.16.36-1+deb8u1 (2016-09-03) i686 GNU/Linux
i386
root@warlock:/home/eagent#   (пусто)
deb-src http://debian.linux.edu.lv/debian/ jessie main
deb http://ftp.no.debian.org/debian/ stable main contrib non-free

deb http://security.debian.org/ stable/updates main contrib non-free
deb-src http://security.debian.org/ stable/updates main contrib non-free
deb http://security.debian.org/ jessie/updates main
deb [signed-by=/usr/share/keyrings/debian-webmin-developers.gpg] https://download.webmin.com/download/newkey/repository stable contrib
grep: /etc/apt/sources.list.d/*: No such file or directory
oer
() автор топика
Ответ на: комментарий от oer
deb http://ftp.no.debian.org/debian/	stable 		main contrib non-free
deb http://security.debian.org/ 	stable/updates	main contrib non-free
deb http://security.debian.org/ 	jessie/updates	main

мда винегрет, пардон.
одна строчка указывает на jessie - 8 дебиан, который не поддерживается и для него нет листингов на оф.репозитории.
другие на stable «текущий стабильный» что на текущий момент являет 12 дебиан.
итог в системе веселуха с пакетами разных веток…

проще установить новый чистый дебиан.
доустановить отсутствующие пакеты и потом дифами посмотреть различия в /etc /home и перенести необходимые изменения на новую систему.

pfg ★★★★★
()
Последнее исправление: pfg (всего исправлений: 1)
Ответ на: комментарий от oer

Сперва качаем нужный пакет с ключами и ставим:

wget http://php.freexian.com/public/freexian-archive-keyring.deb && sudo dpkg -i freexian-archive-keyring.deb

Потом в /etc/apt/sources.list прописываем:

deb [trusted=yes] http://archive.debian.org/debian/ jessie main contrib non-free
deb-src [trusted=yes] http://archive.debian.org/debian/ jessie main contrib non-free

deb [trusted=yes] http://archive.debian.org/debian-security jessie/updates main contrib non-free
deb-src [trusted=yes] http://archive.debian.org/debian-security jessie/updates main contrib non-free

deb http://deb.freexian.com/extended-lts jessie main contrib non-free

Потом делаем

apt-get update
apt-get dist-upgrade
reboot
Vsevolod-linuxoid ★★★★★
()
Последнее исправление: Vsevolod-linuxoid (всего исправлений: 2)
Ответ на: комментарий от Vsevolod-linuxoid
  1. скачал, установилось.
--2024-10-29 09:43:42--  http://php.freexian.com/public/freexian-archive-keyring.deb
Resolving php.freexian.com (php.freexian.com)... 51.159.110.234, 2001:bc8:1201:61:569f:35ff:fe1f:1580
Connecting to php.freexian.com (php.freexian.com)|51.159.110.234|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 4698 (4.6K) [application/octet-stream]
Saving to: āfreexian-archive-keyring.debā

freexian-archive-ke 100%[=====================>]   4.59K  --.-KB/s   in 0s

2024-10-29 09:43:42 (28.8 MB/s) - āfreexian-archive-keyring.debā saved [4698/4698]

Selecting previously unselected package freexian-archive-keyring.
(Reading database ... 190639 files and directories currently installed.)
Preparing to unpack freexian-archive-keyring.deb ...
Unpacking freexian-archive-keyring (2022.06.08) ...
Setting up freexian-archive-keyring (2022.06.08) ...
oer
() автор топика
Ответ на: комментарий от Vsevolod-linuxoid
  1. прописал указанные репозитории
  2. выполнил команды на обновление, получил запрос:
E: The method driver /usr/lib/apt/methods/https could not be found.
N: Is the package apt-transport-https installed?
root@warlock:/home/eagent#
E: The method driver /usr/lib/apt/methods/https could not be found.
N: Is the package apt-transport-https installed?
root@warlock:/home/eagent# ^C
root@warlock:/home/eagent# apt-get dist-upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt-get -f install' to correct these.
The following packages have unmet dependencies:
 libpam-systemd : Depends: systemd (= 215-17+deb8u5) but 215-17+deb8u7 is installed
 libuuid1-udeb : Depends: libc6-udeb (>= 2.24) but it is not installable
 systemd-sysv : Depends: systemd (= 215-17+deb8u6) but 215-17+deb8u7 is installed
 udev : Depends: libudev1 (= 215-17+deb8u6) but 232-25+deb9u1 is installed
E: Unmet dependencies. Try using -f.

oer
() автор топика
Ответ на: комментарий от Vsevolod-linuxoid

Нужно убрать все репозитории, кроме этих, учитывая EOL Debian 8 на обычной поддержке, остальные уже протухли.

Vsevolod-linuxoid ★★★★★
()
Последнее исправление: Vsevolod-linuxoid (всего исправлений: 1)
Ответ на: комментарий от oer

The method driver /usr/lib/apt/methods/https could not be found

В списке репозиториев не может быть https, дебиан его не поддерживает. По крайней мере 8-й. Проверь, что ты вписал в etc/apt/sources.list, закомментируй всё что там было, и скопируй то, что тебе дал Всеволод точь-в-точь. И чтоб никаких https://.

Aceler ★★★★★
()

Запускаю обновление пакетов

обновление

libuuid1-udeb depends on libc6-udeb

Что-то тут не так, что-то не стыкуется. Udeb пакеты применяются только внутри debian-installer и на установленной системе отсутствуют.

Кто-то тут заливает что-то куда-то, но непонятно, зачем. :)

aol ★★★★★
()
Ответ на: комментарий от Vsevolod-linuxoid
# Line commented out by installer because it failed to verify:
# Line commented out by installer because it failed to verify:
# jessie-updates, previously known as 'volatile'
# Line commented out by installer because it failed to verify:
# Line commented out by installer because it failed to verify:
deb [signed-by=/usr/share/keyrings/debian-webmin-developers.gpg] https://download.webmin.com/download/newkey/repository stable contrib
deb http://archive.debian.org/debian/ jessie main contrib non-free
deb http://archive.debian.org/debian-security jessie updates main contrib non-free
deb http://deb.freexian.com/extended-lts jessie main contrib non-free
oer
() автор топика
Ответ на: комментарий от Aceler

закомментировал первую строку с webmin

# Line commented out by installer because it failed to verify:
# Line commented out by installer because it failed to verify:
# jessie-updates, previously known as 'volatile'
# Line commented out by installer because it failed to verify:
# Line commented out by installer because it failed to verify:
#deb [signed-by=/usr/share/keyrings/debian-webmin-developers.gpg] https://download.webmin.com/download/newkey/repository stable contrib
deb http://archive.debian.org/debian/ jessie main contrib non-free
deb http://archive.debian.org/debian-security jessie updates main contrib non-free
deb http://deb.freexian.com/extended-lts jessie main contrib non-free

остались только из указанного ранее

oer
() автор топика
Ответ на: комментарий от oer

Ты криво скопировал.

deb [trusted=yes] http://archive.debian.org/debian/ jessie main contrib non-free
deb [trusted=yes] http://archive.debian.org/debian-security jessie/updates main contrib non-free
deb http://deb.freexian.com/extended-lts jessie main contrib non-free

Без [trusted=yes] не будет ставить, так как из-за EOL протухли сертификаты в архиве. И не jessie updates, а jessie/updates

Vsevolod-linuxoid ★★★★★
()
Ответ на: комментарий от Vsevolod-linuxoid

исправил,

# Line commented out by installer because it failed to verify:
# Line commented out by installer because it failed to verify:
# jessie-updates, previously known as 'volatile'
# Line commented out by installer because it failed to verify:
# Line commented out by installer because it failed to verify:
#deb [signed-by=/usr/share/keyrings/debian-webmin-developers.gpg] https://download.webmin.com/download/newkey/repository stable contrib
deb [trusted=yes] http://archive.debian.org/debian/ jessie main contrib non-free
deb [trusted=yes] http://archive.debian.org/debian-security jessie/updates main contrib non-free
deb http://deb.freexian.com/extended-lts jessie main contrib non-free
oer
() автор топика
Ответ на: комментарий от Vsevolod-linuxoid
Ign http://archive.debian.org jessie InRelease
Get:1 http://archive.debian.org jessie/updates InRelease [44.9 kB]
Get:2 http://archive.debian.org jessie Release.gpg [2,420 B]
Ign http://archive.debian.org jessie/updates InRelease
Hit http://archive.debian.org jessie Release
Ign http://archive.debian.org jessie Release
Ign http://archive.debian.org jessie/updates/main i386 Packages/DiffIndex
Ign http://archive.debian.org jessie/updates/contrib i386 Packages/DiffIndex
Ign http://archive.debian.org jessie/updates/non-free i386 Packages/DiffIndex
Hit http://deb.freexian.com jessie InRelease
Hit http://archive.debian.org jessie/updates/contrib Translation-en
Hit http://archive.debian.org jessie/updates/main Translation-en
Hit http://archive.debian.org jessie/updates/non-free Translation-en
Hit http://deb.freexian.com jessie/main i386 Packages
Ign http://archive.debian.org jessie/main i386 Packages/DiffIndex
Ign http://archive.debian.org jessie/contrib i386 Packages/DiffIndex
Ign http://archive.debian.org jessie/non-free i386 Packages/DiffIndex
Hit http://archive.debian.org jessie/contrib Translation-en
Hit http://deb.freexian.com jessie/contrib i386 Packages
Hit http://archive.debian.org jessie/main Translation-en
Hit http://archive.debian.org jessie/non-free Translation-en
Hit http://deb.freexian.com jessie/non-free i386 Packages
Hit http://archive.debian.org jessie/updates/main i386 Packages
Hit http://archive.debian.org jessie/updates/contrib i386 Packages
Hit http://archive.debian.org jessie/updates/non-free i386 Packages
Hit http://archive.debian.org jessie/main i386 Packages
Hit http://archive.debian.org jessie/contrib i386 Packages
Hit http://archive.debian.org jessie/non-free i386 Packages
Ign http://archive.debian.org jessie/updates/contrib Translation-en_US
Ign http://archive.debian.org jessie/updates/main Translation-en_US
Ign http://archive.debian.org jessie/updates/non-free Translation-en_US
Ign http://archive.debian.org jessie/contrib Translation-en_US
Ign http://archive.debian.org jessie/main Translation-en_US
Ign http://archive.debian.org jessie/non-free Translation-en_US
Ign http://deb.freexian.com jessie/contrib Translation-en_US
Ign http://deb.freexian.com jessie/contrib Translation-en
Ign http://deb.freexian.com jessie/main Translation-en_US
Ign http://deb.freexian.com jessie/main Translation-en
Ign http://deb.freexian.com jessie/non-free Translation-en_US
Ign http://deb.freexian.com jessie/non-free Translation-en
Fetched 47.3 kB in 3s (12.9 kB/s)
Reading package lists... Done
W: GPG error: http://archive.debian.org jessie/updates InRelease: The following signatures were invalid: KEYEXPIRED 1668892417 The following signatures couldn't be verified because the public key is not available: NO_PUBKEY AA8E81B4331F7F50
W: GPG error: http://archive.debian.org jessie Release: The following signatures were invalid: KEYEXPIRED 1587841717
root@warlock:/home/eagent#
oer
() автор топика
Ответ на: комментарий от oer

Судя по выводу, ты переключился на root через su – это неправильно, не все переменные при таком задаются корректно, нужно su - использовать.

А так, ожидаемые ошибки. Что теперь выдает apt-get install -f

Vsevolod-linuxoid ★★★★★
()
Ответ на: комментарий от Vsevolod-linuxoid
Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... Done
The following packages were automatically installed and are no longer required:
  autopoint diffstat dmz-cursor-theme gdebi gettext gir1.2-vte-2.90 gnote gtk2-engines-murrine hardening-includes hyphen-en-us
  intltool-debian libarchive-zip-perl libasprintf-dev libclone-perl libdpkg-perl libemail-valid-perl libfile-fcntllock-perl
  libgettextpo-dev libgettextpo0 libgexiv2-2 libipc-run-perl liblightdm-gobject-1-0 liblist-moreutils-perl libnet-dns-perl
  libnet-domain-tld-perl libnet-ip-perl libperlio-gzip-perl libpolkit-backend-1-0 libraw10 libtext-levenshtein-perl libuuid-perl
  lightdm-gtk-greeter lintian linux-base mate-icon-theme mate-themes murrine-themes patchutils shotwell shotwell-common t1utils
  x11-apps x11-session-utils xbitmaps xinit
Use 'apt-get autoremove' to remove them.
The following extra packages will be installed:
  consolekit gir1.2-polkit-1.0 libck-connector0 libhpmud0 libpam-ck-connector libpolkit-agent-1-0 libpolkit-backend-1-0
  libpolkit-gobject-1-0 libsane libsane-common makedev printer-driver-hpijs sysvinit-core
Suggested packages:
  hpoj hpijs-ppds hplip-doc
The following packages will be REMOVED:
  bluez brasero cinnamon cinnamon-control-center cinnamon-core cinnamon-desktop-environment cinnamon-session colord gdm3 gnome
  gnome-bluetooth gnome-color-manager gnome-control-center gnome-core gnome-disk-utility gnome-music gnome-packagekit
  gnome-packagekit-session gnome-power-manager gnome-session gnome-session-bin gnome-settings-daemon gnome-shell
  gnome-shell-extension-weather gnome-shell-extensions gnome-sushi gnome-system-log gnome-user-share gvfs gvfs-backends
  gvfs-daemons gvfs-fuse hplip initramfs-tools libcanberra-pulse libpam-systemd libuuid1-udeb lightdm linux-image-3.16.0-4-686-pae
  linux-image-686-pae media-player-info nautilus nautilus-sendto nemo nemo-fileroller network-manager network-manager-gnome
  packagekit packagekit-tools policykit-1 policykit-1-gnome printer-driver-postscript-hp pulseaudio pulseaudio-module-x11 rhythmbox
  rhythmbox-plugin-cdrecorder rhythmbox-plugins systemd systemd-sysv task-cinnamon-desktop task-desktop task-gnome-desktop udev
  udisks2 upower xorg xserver-xorg xserver-xorg-core xserver-xorg-input-all xserver-xorg-input-evdev xserver-xorg-input-mouse
  xserver-xorg-input-synaptics xserver-xorg-input-vmmouse xserver-xorg-input-wacom xserver-xorg-video-all xserver-xorg-video-ati
  xserver-xorg-video-cirrus xserver-xorg-video-fbdev xserver-xorg-video-geode xserver-xorg-video-intel xserver-xorg-video-mach64
  xserver-xorg-video-mga xserver-xorg-video-modesetting xserver-xorg-video-neomagic xserver-xorg-video-nouveau
  xserver-xorg-video-openchrome xserver-xorg-video-qxl xserver-xorg-video-r128 xserver-xorg-video-radeon xserver-xorg-video-savage
  xserver-xorg-video-siliconmotion xserver-xorg-video-sisusb xserver-xorg-video-tdfx xserver-xorg-video-trident
  xserver-xorg-video-vesa xserver-xorg-video-vmware
The following NEW packages will be installed:
  consolekit libck-connector0 libpam-ck-connector makedev sysvinit-core
The following packages will be upgraded:
  gir1.2-polkit-1.0 libhpmud0 libpolkit-agent-1-0 libpolkit-backend-1-0 libpolkit-gobject-1-0 libsane libsane-common
  printer-driver-hpijs
8 upgraded, 5 newly installed, 96 to remove and 574 not upgraded.
2 not fully installed or removed.
Need to get 3,677 kB/4,201 kB of archives.
After this operation, 249 MB disk space will be freed.
Do you want to continue? [Y/n] y
Get:1 http://archive.debian.org/debian/ jessie/main sysvinit-core i386 2.88dsf-59 [133 kB]
Get:2 http://deb.freexian.com/extended-lts/ jessie/main gir1.2-polkit-1.0 i386 0.105-15~deb8u5 [16.5 kB]
Get:3 http://archive.debian.org/debian/ jessie/main libck-connector0 i386 0.4.6-5 [59.8 kB]
Get:4 http://archive.debian.org/debian-security/ jessie/updates/main libsane i386 1.0.24-8+deb8u3 [2,113 kB]
Get:5 http://deb.freexian.com/extended-lts/ jessie/main libpolkit-agent-1-0 i386 0.105-15~deb8u5 [25.4 kB]
Get:6 http://deb.freexian.com/extended-lts/ jessie/main libpolkit-gobject-1-0 i386 0.105-15~deb8u5 [45.8 kB]
Get:7 http://deb.freexian.com/extended-lts/ jessie/main libpolkit-backend-1-0 i386 0.105-15~deb8u5 [50.8 kB]
Get:8 http://archive.debian.org/debian-security/ jessie/updates/main libsane-common all 1.0.24-8+deb8u3 [1,001 kB]
Get:9 http://archive.debian.org/debian/ jessie/main makedev all 2.3.1-93 [42.6 kB]
Get:10 http://archive.debian.org/debian/ jessie/main consolekit i386 0.4.6-5 [129 kB]
Get:11 http://archive.debian.org/debian/ jessie/main libpam-ck-connector i386 0.4.6-5 [60.4 kB]
Fetched 3,677 kB in 0s (8,722 kB/s)
Reading changelogs... Done
oer
() автор топика
Ответ на: комментарий от oer
Preconfiguring packages ...
(Reading database ... 190643 files and directories currently installed.)
Removing libuuid1-udeb (2.29.2-5+b1) ...
Removing task-gnome-desktop (3.31+deb8u1) ...
Removing gnome (1:3.14+3) ...
Removing gnome-core (1:3.14+3) ...
Removing gnome-user-share (3.14.0-2) ...
Removing gnome-bluetooth (3.14.0-2) ...
Removing bluez (5.23-2+b1) ...
Removing task-cinnamon-desktop (3.31+deb8u1) ...
Removing task-desktop (3.31+deb8u1) ...
Removing xorg (1:7.7+7) ...
Removing xserver-xorg (1:7.7+7) ...
Removing xserver-xorg-video-all (1:7.7+7) ...
Removing xserver-xorg-video-vmware (1:13.0.2-3.1) ...
Removing xserver-xorg-video-vesa (1:2.3.3-1+b3) ...
Removing xserver-xorg-input-all (1:7.7+7) ...
Removing xserver-xorg-input-vmmouse (1:13.0.0-1+b3) ...
Removing brasero (3.11.4-1.1) ...
Removing cinnamon-desktop-environment (2.2.4) ...
Removing cinnamon-core (2.2.4) ...
Removing gdm3 (3.14.1-7) ...
Please be sure to run "dpkg-reconfigure lightdm".
Removing cinnamon (2.2.16-5) ...
Removing cinnamon-control-center (2.2.11-4) ...
Removing cinnamon-session (2.2.2-5) ...
update-alternatives: using /usr/bin/gnome-session to provide /usr/bin/x-session-manager (x-session-manager) in auto mode
Removing gnome-control-center (1:3.14.2-3) ...
Removing gnome-color-manager (3.14.1-1) ...
Removing colord (1.2.1-1+b2) ...
Removing gnome-disk-utility (3.12.1-1+b1) ...
Removing gnome-music (3.14.1-1) ...
Removing gnome-packagekit (3.14.0-1) ...
Removing gnome-packagekit-session (3.14.0-1) ...
Removing gnome-power-manager (3.14.1-1) ...
Removing gnome-shell-extensions (3.14.2-1) ...
Removing gnome-session (3.14.0-2) ...
Removing gnome-session-bin (3.14.0-2) ...
Removing gnome-shell-extension-weather (0~20151125.gitccaa1eb-1~deb8u1) ...
Removing gnome-shell (3.14.4-1~deb8u1) ...
Removing gnome-settings-daemon (3.14.2-3) ...
Removing gnome-sushi (3.12.0-2+b1) ...
Removing gnome-system-log (3.9.90-2) ...
Removing gvfs-fuse (1.22.2-1) ...
Removing gvfs-backends (1.22.2-1) ...
Removing printer-driver-postscript-hp (3.14.6-1) ...
Removing hplip (3.14.6-1+b2) ...
Removing linux-image-686-pae (3.16+63) ...
Removing linux-image-3.16.0-4-686-pae (3.16.36-1+deb8u1) ...
Aborting removal of running kernel image.
dpkg: error processing package linux-image-3.16.0-4-686-pae (--remove):
 subprocess installed pre-removal script returned error exit status 1
Removing libcanberra-pulse:i386 (0.30-2.1) ...
Removing packagekit-tools (1.0.1-2) ...
Removing packagekit (1.0.1-2) ...
Removing lightdm (1.10.3-3) ...
Removing rhythmbox-plugins (3.1-1) ...
Removing rhythmbox-plugin-cdrecorder (3.1-1) ...
Removing rhythmbox (3.1-1) ...
Removing media-player-info (22-2) ...
Removing nautilus-sendto (3.8.2-1) ...
Removing nautilus (3.14.1-2) ...
Removing nemo-fileroller (1.8.0-1) ...
Removing nemo (2.2.4-2) ...
Removing network-manager-gnome (0.9.10.0-2) ...
Removing network-manager (0.9.10.0-7) ...
Removing policykit-1-gnome (0.105-2) ...
Removing pulseaudio-module-x11 (5.0-13) ...
Removing pulseaudio (5.0-13) ...
Removing gvfs:i386 (1.22.2-1) ...
Removing gvfs-daemons (1.22.2-1) ...
Removing udisks2 (2.1.3-5) ...
Removing policykit-1 (0.105-15~deb8u2) ...
Removing libpam-systemd:i386 (215-17+deb8u5) ...
dpkg: udev: dependency problems, but removing anyway as you requested:
 fuse depends on udev | makedev; however:
  Package udev is to be removed.
  Package makedev is not installed.
 systemd depends on udev (>= 208-8).
 xserver-xorg-core depends on udev (>= 149).
 upower depends on udev.
 initramfs-tools depends on udev.
 libsane:i386 depends on udev | makedev; however:
  Package udev is to be removed.
  Package makedev is not installed.

Removing udev (215-17+deb8u6) ...
dpkg: initramfs-tools: dependency problems, but removing anyway as you requested:
 linux-image-3.16.0-4-686-pae depends on initramfs-tools (>= 0.110~) | linux-initramfs-tool; however:
  Package initramfs-tools is to be removed.
  Package linux-initramfs-tool is not installed.
  Package initramfs-tools which provides linux-initramfs-tool is to be removed.
 linux-image-3.16.0-4-686-pae depends on initramfs-tools (>= 0.110~) | linux-initramfs-tool; however:
  Package initramfs-tools is to be removed.
  Package linux-initramfs-tool is not installed.
  Package initramfs-tools which provides linux-initramfs-tool is to be removed.

Removing initramfs-tools (0.120+deb8u2) ...
dpkg: systemd-sysv: dependency problems, but removing anyway as you requested:
 init depends on systemd-sysv | sysvinit-core | upstart; however:
  Package systemd-sysv is to be removed.
  Package sysvinit-core is not installed.
  Package upstart is not installed.

Removing systemd-sysv (215-17+deb8u6) ...
dpkg: xserver-xorg-core: dependency problems, but removing anyway as you requested:
 xserver-xorg-video-ati depends on xorg-video-abi-18; however:
  Package xorg-video-abi-18 is not installed.
  Package xserver-xorg-core which provides xorg-video-abi-18 is to be removed.
 xserver-xorg-video-ati depends on xserver-xorg-core (>= 2:1.15.99.903); however:
  Package xserver-xorg-core is to be removed.
 xserver-xorg-video-mach64 depends on xorg-video-abi-18; however:
  Package xorg-video-abi-18 is not installed.
  Package xserver-xorg-core which provides xorg-video-abi-18 is to be removed.
 xserver-xorg-video-mach64 depends on xserver-xorg-core (>= 2:1.15.99.903); however:
  Package xserver-xorg-core is to be removed.
 xserver-xorg-input-synaptics depends on xorg-input-abi-21; however:
  Package xorg-input-abi-21 is not installed.
  Package xserver-xorg-core which provides xorg-input-abi-21 is to be removed.
 xserver-xorg-input-synaptics depends on xserver-xorg-core (>= 2:1.15.99.903); however:
  Package xserver-xorg-co
Removing xserver-xorg-core (2:1.16.4-1) ...
Processing triggers for hicolor-icon-theme (0.13-1) ...
Processing triggers for gnome-menus (3.13.3-6) ...
Processing triggers for desktop-file-utils (0.22-1) ...
Processing triggers for mime-support (3.58) ...
Processing triggers for libglib2.0-0:i386 (2.42.1-1+b1) ...
Processing triggers for man-db (2.7.0.2-5) ...
Processing triggers for dbus (1.10.18-1) ...
Processing triggers for cups (1.7.5-11+deb8u1) ...
E: Sub-process /usr/bin/dpkg returned an error code (1)
oer
() автор топика
Ответ на: комментарий от oer

Эм… я не советовал соглашаться, не читая. Я просто спросил, что он предлагает сделать.

The following packages will be REMOVED:
  bluez brasero cinnamon cinnamon-control-center cinnamon-core cinnamon-desktop-environment cinnamon-session colord gdm3 gnome
  gnome-bluetooth gnome-color-manager gnome-control-center gnome-core gnome-disk-utility gnome-music gnome-packagekit
  gnome-packagekit-session gnome-power-manager gnome-session gnome-session-bin gnome-settings-daemon gnome-shell
  gnome-shell-extension-weather gnome-shell-extensions gnome-sushi gnome-system-log gnome-user-share gvfs gvfs-backends
  gvfs-daemons gvfs-fuse hplip initramfs-tools libcanberra-pulse libpam-systemd libuuid1-udeb lightdm linux-image-3.16.0-4-686-pae
  linux-image-686-pae media-player-info nautilus nautilus-sendto nemo nemo-fileroller network-manager network-manager-gnome
  packagekit packagekit-tools policykit-1 policykit-1-gnome printer-driver-postscript-hp pulseaudio pulseaudio-module-x11 rhythmbox
  rhythmbox-plugin-cdrecorder rhythmbox-plugins systemd systemd-sysv task-cinnamon-desktop task-desktop task-gnome-desktop udev
  udisks2 upower xorg xserver-xorg xserver-xorg-core xserver-xorg-input-all xserver-xorg-input-evdev xserver-xorg-input-mouse
  xserver-xorg-input-synaptics xserver-xorg-input-vmmouse xserver-xorg-input-wacom xserver-xorg-video-all xserver-xorg-video-ati
  xserver-xorg-video-cirrus xserver-xorg-video-fbdev xserver-xorg-video-geode xserver-xorg-video-intel xserver-xorg-video-mach64
  xserver-xorg-video-mga xserver-xorg-video-modesetting xserver-xorg-video-neomagic xserver-xorg-video-nouveau
  xserver-xorg-video-openchrome xserver-xorg-video-qxl xserver-xorg-video-r128 xserver-xorg-video-radeon xserver-xorg-video-savage
  xserver-xorg-video-siliconmotion xserver-xorg-video-sisusb xserver-xorg-video-tdfx xserver-xorg-video-trident
  xserver-xorg-video-vesa xserver-xorg-video-vmware

Ты себе все GUI снес.

Vsevolod-linuxoid ★★★★★
()
Ответ на: комментарий от oer

Восстанавливай систему из бекапа. Ты её убил.

И я спросил «Что выдает apt-get install -f?», а не «Выполни apt-get install -f не глядя».

Removing udev (215-17+deb8u6) ...
dpkg: initramfs-tools: dependency problems, but removing anyway as you requested:
 linux-image-3.16.0-4-686-pae depends on initramfs-tools (>= 0.110~) | linux-initramfs-tool; however:
  Package initramfs-tools is to be removed.
  Package linux-initramfs-tool is not installed.
  Package initramfs-tools which provides linux-initramfs-tool is to be removed.
 linux-image-3.16.0-4-686-pae depends on initramfs-tools (>= 0.110~) | linux-initramfs-tool; however:
  Package initramfs-tools is to be removed.
  Package linux-initramfs-tool is not installed.
  Package initramfs-tools which provides linux-initramfs-tool is to be removed.

Removing initramfs-tools (0.120+deb8u2) ...
dpkg: systemd-sysv: dependency problems, but removing anyway as you requested:
 init depends on systemd-sysv | sysvinit-core | upstart; however:
  Package systemd-sysv is to be removed.
  Package sysvinit-core is not installed.
  Package upstart is not installed.

Removing systemd-sysv (215-17+deb8u6) ...
dpkg: xserver-xorg-core: dependency problems, but removing anyway as you requested:
 xserver-xorg-video-ati depends on xorg-video-abi-18; however:
  Package xorg-video-abi-18 is not installed.
  Package xserver-xorg-core which provides xorg-video-abi-18 is to be removed.
 xserver-xorg-video-ati depends on xserver-xorg-core (>= 2:1.15.99.903); however:
  Package xserver-xorg-core is to be removed.
 xserver-xorg-video-mach64 depends on xorg-video-abi-18; however:
  Package xorg-video-abi-18 is not installed.
  Package xserver-xorg-core which provides xorg-video-abi-18 is to be removed.
 xserver-xorg-video-mach64 depends on xserver-xorg-core (>= 2:1.15.99.903); however:
  Package xserver-xorg-core is to be removed.
 xserver-xorg-input-synaptics depends on xorg-input-abi-21; however:
  Package xorg-input-abi-21 is not installed.
  Package xserver-xorg-core which provides xorg-input-abi-21 is to be removed.
 xserver-xorg-input-synaptics depends on xserver-xorg-core (>= 2:1.15.99.903); however:
  Package xserver-xorg-co

Такого она точно не могла пережить.

Vsevolod-linuxoid ★★★★★
()
Последнее исправление: Vsevolod-linuxoid (всего исправлений: 1)