|
Search Forums:
|
|||||||
| Forums | Register | Forum Rules | Linux and Unix Links | Man Pages | Albums | FAQ | Users | Calendar | Search | Today's Posts | Mark Forums Read |
| Red Hat Red Hat is the world's leading open source technology solutions provider with offerings including Red Hat Enterprise Linux (RHEL), Fedora, open source applications, security and systems management, virtualization, and Services Oriented Architecture (SOA) solutions. |
|
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
||||
|
||||
|
Need a little help here. I am having trouble mounting an NTFS volume in RHEL5, here are the commands. Code:
root # mount -t ntfs-3g /dev/sda1 /media/my-volume FATAL: Module fuse not found. ntfs-3g-mount: fuse device is missing, try 'modprobe fuse' as root root # modprobe fuse FATAL: Module fuse not found. Thank You. |
| Sponsored Links | |
|
|
|
#2
|
||||
|
||||
|
You need to enable FUSE in the kernel config and compile a new kernel.
It can be found in menuconfig as: Quote:
|
| Sponsored Links | ||
|
|
|
#3
|
|||
|
|||
|
The fuse kernel module is not loaded on your system. modprobe is failing, because it cannot find kernel module.
rhn.redhat.com | Red Hat Support FUSE: Filesystem in Userspace |
|
#4
|
|||
|
|||
|
Red, where is menuconfig located?
|
| Sponsored Links | |
|
|
#5
|
||||
|
||||
|
If you're not depending on something added from RH addition to drivers and such, just fetch the vanilla kernel source from ftp.kernel.org convinient located at linux-2.6.33 Copy your "normal configuration" ie: cp /boot/config-`uname -r` /where_you_ve_unpacked_the_vanilla_kernel/.config and chenge to that directory, issue "make menuconfig" and assure the FUSE addition has been made. Then issue: Code:
make make modules_install make install mkinitrd /boot/initrd-2.6.33.img 2.6.33 cp .config /boot/config-2.6.33 cp arch/i386/boot/bzImage /boot/vmlinuz-2.6.33 cp System.map /boot/System.map-2.6.33 ln -s /boot/System.map-2.6.33 /boot/System.map If, this is causing any trouble, please follow the Instructions for compiling a kernel under RH5, making sure that you've enabled the FUSE module. Last edited by redhead; 03-12-2010 at 06:51 PM.. |
| Sponsored Links | |
|
|
#6
|
|||
|
|||
|
Quote:
Or you may use repositories of rpmforge/epel to install them through yum . |
| Sponsored Links | ||
|
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Mounting USB NTFS External Disk R/W on OSX | Neo | OS X (Apple) | 4 | 09-30-2007 08:26 PM |
| Mounting ext3 & NTFS on PC-BSD!! | void_man() | BSD | 1 | 09-19-2007 06:17 AM |
| Mounting NTFS filesystem | woofie | Red Hat | 9 | 09-09-2006 05:04 AM |
| Mounting ntfs through network??? | solvman | UNIX for Advanced & Expert Users | 6 | 05-16-2002 03:37 PM |
| Mounting Netware Volume | jamacin | UNIX for Dummies Questions & Answers | 2 | 05-11-2001 12:53 PM |
|
|