簡體   English   中英

子進程/usr/bin/dpkg返回錯誤碼(一)使用sudo apt install --fix-broken時

[英]Sub-process /usr/bin/dpkg returned an error code (1) When using sudo apt install --fix-broken

當試圖從我的 Ubuntu 中刪除 nodjs 時, sudo apt-get remove nodejs出現錯誤E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution). E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution). 執行sudo apt install --fix-broken iam 時出現以下錯誤。

我遇到這個問題的任何原因。

Reading package lists... Done
Building dependency tree        
Reading state information... Done
Correcting dependencies... Done
The following additional packages will be installed:
linux-image-5.11.0-46-generic 
Suggested packages:
fdutils linux-doc | linux-hwe-5.11-source-5.11.0 linux-hwe-5.11-tools
The following NEW packages will be installed:
linux-image-5.11.0-46-generic
0 upgraded, 1 newly installed, 0 to remove and 132 not upgraded.
4 not fully installed or removed.
Need to get 0 B/11.5 MB of archives.
After this operation, 11.8 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
(Reading database ... 208109 files and directories currently installed.)
Preparing to unpack .../linux-image-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb ...
Unpacking linux-image-5.11.0-46-generic (5.11.0-46.51~20.04.1) ...
dpkg: error processing archive /var/cache/apt/archives/linux-image-5.11.0-46- 
generic_5.11.0-46.51~20.04.1_amd64.deb (--unpack):
unable to open '/boot/vmlinuz-5.11.0-46-generic.dpkg-new': Operation not permitted
Errors were encountered while processing:
/var/cache/apt/archives/linux-image-5.11.0-46-generic_5.11.0-46.51~20.04.1_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

試試看:

apt clean
apt autoclean

cd /var/lib/dpkg/
mv info/ info_bak
mkdir info
apt-get update
apt-get -f install
mv info/* info_bak/
rm -rf info
mv info_bak info

我認為這將解決您的問題,按順序執行所有命令。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM