Avatar of javagair
javagair
Flag 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
LinuxLinux Distributions

Avatar of undefined
Last Comment
Duncan Roe

8/22/2022 - Mon
Mazdajai

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
Duncan Roe

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Duncan Roe

Did you try my suggestions? With what result?
javagair

ASKER
everything checks out running the commands fuse shows up everywhere in the commands.
the reference to modprobe fuse will do what?
I started with Experts Exchange in 2004 and it's been a mainstay of my professional computing life since. It helped me launch a career as a programmer / Oracle data analyst
William Peck
Duncan Roe

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