当我尝试在 VPS 上安装 curl 或任何其他包时,出现以下错误:
root@vs3946:/var/www# apt-get install anypackage
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
After this operation, 0B of additional disk space will be used.
Setting up fuse-utils (2.8.1-1.1ubuntu3.1) ...
mknod: `fuse-': Operation not permitted
makedev fuse c 10 229 root root 0660: failed
chgrp: cannot access `/dev/fuse': No such file or directory
dpkg: error processing fuse-utils (--configure):
subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
fuse-utils
E: Sub-process /usr/bin/dpkg returned an error code (1)
root@vs3946:/var/www#
我该如何解决这个问题?我不想重新安装 Ubuntu,因为我在这个 VPS 上有一个实时网站
答案1
您的保险丝包已损坏,由于 VPS 限制,您无法安装它。
我会尝试删除 fuse-utils 包,然后安装“anypackage”。
尝试:
apt-get remove fuse-utils
apt-get -f install
apt-get install anypackage
以 root 身份或在每个命令前使用 sudo。