Link to home
Start Free TrialLog in
Avatar of javagair
javagairFlag for United States of America

asked on

redhat 5.1 problem with installing fuse

installed four files
fuse-2.7.4-8_12.el5.x86_64.rpm
fuse-kmdl-2.6.18-371.1.2.el5-2.7.4-8_12.el5.x86_64.rpm
fuse-libs-2.7.4-8_12.el5.x86_64.rpm

fuse-ntfs-3g_1.1004-1.el5.rf.x86_64.rpm

each rpm installed successfully!
did:   mount -t ntfs-3g /dev/sdb1 /media/imssent
message is unknown filesystem ntfs-3g

checked services: ntfs-3g is running
rebooted
same problem

anyone know something about fuse software?

thanks

gary
Avatar of Mazdajai
Mazdajai
Flag of United States of America image

Can you try the following?

wget http://dl.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm
rpm -Uvh epel-release-5*.rpm
yum install fuse fuse-ntfs-3g -y

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Duncan Roe
Duncan Roe
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Did you try my suggestions? With what result?
Avatar of javagair

ASKER

everything checks out running the commands fuse shows up everywhere in the commands.
the reference to modprobe fuse will do what?
modprobe fuse will cause fuse to show in the output from lsmod. If it is already shows there, the Linux Kernel Module (LKM) of that name is already loaded and modprobe will do nothing.
If the fuse LKM was already loaded, your problem must lie elsewhere. Verify that the following programs are installed
07:29:07$ locate ntfs-3g|grep bin
/bin/ntfs-3g
/bin/ntfs-3g.probe
/bin/ntfs-3g.secaudit
/bin/ntfs-3g.usermap
/bin/lowntfs-3g
/sbin/mount.ntfs-3g
/sbin/mount.lowntfs-3g
07:44:36$ 

Open in new window