一些信息:
- 西班牙语
- Ubuntu 17.04
- KDE Plasma:5.9.4
- 内核版本:4.10.0.19-generic
- 操作系统:64位
- 硬件:Intel Core i7-4700HQ --- CPU 2.40 Ghz
问题:
我尝试更新sudo apt-get update
并且一切正常,但是当我尝试升级时出现以下问题:
$ sudo apt-get upgrade
E: No se pudo bloquear /var/lib/dpkg/lock - open (11: Recurso no disponible temporalmente)
E: No se pudo bloquear el directorio de administración (/var/lib/dpkg/), ¿quizás haya algún otro proceso utilizándolo?
我尝试了sudo apt-get install -f
网络上针对其他类似问题开出的处方。我也尝试了sudo apt-get dist-upgrade
。搜索错误消息后,我发现此链接。
我开始按照那里的步骤操作,但是sudo dpkg --configure -a
挂了:
$ sudo dpkg --purge --force-remove-reinstreq dpkg-dev
dpkg: error: base de datos de estado de dpkg está bloqueada por otro proceso
$ sudo apt-get update
Ign:1 http://dl.google.com/linux/chrome/deb stable InRelease
Obj:2 http://dl.google.com/linux/chrome/deb stable Release
Obj:3 http://repository.spotify.com stable InRelease
Obj:5 https://repo.skype.com/deb stable InRelease
Des:6 http://security.ubuntu.com/ubuntu zesty-security InRelease [89,2 kB]
Obj:7 http://de.archive.ubuntu.com/ubuntu zesty InRelease
Obj:8 http://de.archive.ubuntu.com/ubuntu zesty-updates InRelease
Obj:9 http://de.archive.ubuntu.com/ubuntu zesty-backports InRelease
Obj:10 http://archive.canonical.com/ubuntu zesty InRelease
Descargados 89,2 kB en 18s (4.827 B/s)
Leyendo lista de paquetes... Hecho
xoktz@xoktz-ntb:~$ sudo apt-get upgrade
E: No se pudo bloquear /var/lib/dpkg/lock - open (11: Recurso no disponible temporalmente)
E: No se pudo bloquear el directorio de administración (/var/lib/dpkg/), ¿quizás haya algún otro proceso utilizándolo?
xoktz@xoktz-ntb:~$ sudo apt-get install -f
E: No se pudo bloquear /var/lib/dpkg/lock - open (11: Recurso no disponible temporalmente)
E: No se pudo bloquear el directorio de administración (/var/lib/dpkg/), ¿quizás haya algún otro proceso utilizándolo?
xoktz@xoktz-ntb:~$ sudo apt-get dist-upgrade
E: No se pudo bloquear /var/lib/dpkg/lock - open (11: Recurso no disponible temporalmente)
E: No se pudo bloquear el directorio de administración (/var/lib/dpkg/), ¿quizás haya algún otro proceso utilizándolo?
xoktz@xoktz-ntb:~$ sudo fuser -vki /var/lib/dpkg/lock
USUARIO ORDEN DE ACCESO PID
/var/lib/dpkg/lock: root 3375 F.... dpkg
¿Finalizar el proceso 3375 ? (y/N) y
xoktz@xoktz-ntb:~$ sudo rm -f /var/lib/dpkg/lock
xoktz@xoktz-ntb:~$ sudo apt-get install -f
E: se interrumpió la ejecución de dpkg, debe ejecutar manualmente «sudo dpkg --configure -a» para corregir el problema
xoktz@xoktz-ntb:~$ sudo dpkg --configure -a
Configurando linux-headers-4.10.0-20-generic (4.10.0-20.22) ...
Examining /etc/kernel/header_postinst.d.
run-parts: executing /etc/kernel/header_postinst.d/dkms 4.10.0-20-generic /boot/vmlinuz-4.10.0-20-generic
^CFailed to process /etc/kernel/header_postinst.d at /var/lib/dpkg/info/linux-headers-4.10.0-20-generic.postinst line 110.
dpkg: error al procesar el paquete linux-headers-4.10.0-20-generic (--configure):
el subproceso instalado el script post-installation devolvió el código de salida de error 2
Configurando iucode-tool (2.1.1-1) ...
Procesando disparadores para man-db (2.7.6.1-2) ...
Configurando linux-image-4.10.0-20-generic (4.10.0-20.22) ...
Running depmod.
update-initramfs: deferring update (hook will be called later)
The link /initrd.img is a dangling linkto /boot/initrd.img-4.10.0-20-generic
vmlinuz(/boot/vmlinuz-4.10.0-20-generic
) points to /boot/vmlinuz-4.10.0-20-generic
(/boot/vmlinuz-4.10.0-20-generic) -- doing nothing at /var/lib/dpkg/info/linux-image-4.10.0-20-generic.postinst line 491.
Examining /etc/kernel/postinst.d.
run-parts: executing /etc/kernel/postinst.d/apt-auto-removal 4.10.0-20-generic /boot/vmlinuz-4.10.0-20-generic
run-parts: executing /etc/kernel/postinst.d/dkms 4.10.0-20-generic /boot/vmlinuz-4.10.0-20-generic
该命令ps axjf
显示这。
我该如何开始sudo apt-get upgrade
工作?