无法安装或升级软件包

无法安装或升级软件包

每次我尝试更新或安装包时,都会出现以下错误:

dpkg: unrecoverable fatal error, aborting:
 reading files list for package 'libjson-glib-1.0-0:amd64': Input/output error
E: Sub-process /usr/bin/dpkg returned an error code (2)  

我已经尝试过了:

sudo apt-get check  
sudo apt-get install -f
sudo dpkg --configure -a  

出了什么问题以及如何解决这个问题?

答案1

尝试这样做:

sudo apt-get update && sudo apt-get dist-upgrade
sudo dpkg --clear-avail

sudo apt-get update && sudo apt-get dist-upgrade

如果您想了解有关 upgrade 和 dist-upgrade 之间的区别的更多信息:

man apt-get |grep -A 4 dist-upgrade

相关内容