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

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

尝试使用 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)

答案1

嘿,修复起来非常简单:

mkdir /dev/fuse
chmod 777 /dev/fuse

apt-get install fuse

答案2

这可能是重复的当我尝试安装 OpenVPN 时,“E:子进程 /usr/bin/dpkg 返回错误代码 (1)”。这是什么?:尝试安装一个包fuse(可能作为依赖项),但是该包的配置失败,因为udev没有创建/dev/fuse.

您可以检查输出以$ service udev status查看服务是否正在运行并$ modinfo fuse验证内核模块是否存在。

如果您在与主机共享内核的虚拟机内运行,则您的虚拟机很可能不允许使用 FUSE。

为了消除错误,apt-get remove fuse.

哈,dtk

答案3

这对于运行 Raspbian GNU/Linux VERSION=8 (jessie) 的 Pi Model B+ V1.2 非常有效。

  • 我只需要做:

    mkdir /dev/fuse
    chmod 777 /dev/fuse
    

    因为我的系统已经有fuse最新版本

相关内容