在 Debian 8 中安装软件包时熔断错误

Jui*_*cee 2 debian apt

尝试使用 apt-get 安装软件包时出现保险丝错误。我试过重新安装它,但没有帮助。

这是我尝试安装某些东西时的输出:

Do you want to continue? [Y/n] y
Setting up fuse (2.9.3-15+deb8u2) ...
Creating fuse device...
/run/udev or .udevdb or .udev presence implies active udev.  Aborting MAKEDEV invocation.
chmod: cannot access '/dev/fuse': No such file or directory
dpkg: error processing package fuse (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 fuse
E: Sub-process /usr/bin/dpkg returned an error code (1)
Run Code Online (Sandbox Code Playgroud)

小智 6

嘿,修复起来很简单:

mkdir /dev/fuse
chmod 777 /dev/fuse

apt-get install fuse
Run Code Online (Sandbox Code Playgroud)