红联Linux门户
Linux帮助

failed to open /dev/fuse解决办法

发布时间:2006-10-05 01:19:23来源:红联作者:pinkfirex
如果重新启动系统后加载ntfs时出现有如下的错误:

[code]fusermount: failed to open /dev/fuse: No such file or directory
fuse_mount failed.[/code]

说明fuse核心模块没有加载。
解决办法:运行如下命令

[code] /sbin/modprobe fuse[/code]

然后再加载就OK了。
如果要使系统重新启动时能自动加载,在red hat、fedora core、centOS中需要编辑
/etc/rc.local文件,在其中加一行,内容为:

[code]/sbin/modprobe fuse[/code]

下面是本人的centOS4.3中的/etc/rc.local文件内容,供大家参考。

[code]#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.

touch /var/lock/subsys/local[/code]
#ntfs-3g 配置
[code]/sbin/modprobe fuse[/code]
文章评论

共有 0 条评论