LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 06-20-2011, 09:17 PM   #1
sofly
LQ Newbie
 
Registered: Jun 2011
Distribution: RHEL, Debian
Posts: 21

Rep: Reputation: Disabled
Thumbs down Mounting NTFS w/ nfts-3g


I have ntfs-3g installed, and have a 500GB Western Digital drive formatted to nfts with some data on it that I wanted to push over to my CentOS box. I am running 5.5 (latest build).

Whenever I try to mount the drive (yes, I have followed ALL instructions I could find online, including the CentOS FAQ about mounting ntfs drives), I just get the following error:

Code:
mount: unknown filesystem type 'ntfs-3g'
I am happy to supply you guys with the contents of my fstab file (yes, I have the drive added), as well as any other information you may want. FUSE is installed and updated to the latest version.

I have tried a number of different solutions from Googling, etc. and I just cannot seem to get this to work. Anyone have any thoughts?
 
Old 06-20-2011, 09:25 PM   #2
MS3FGX
LQ Guru
 
Registered: Jan 2004
Location: NJ, USA
Distribution: Slackware, Debian
Posts: 5,852

Rep: Reputation: 361Reputation: 361Reputation: 361Reputation: 361
Perhaps a silly question, but have you checked to make sure that NTFS-3G itself is installed? FUSE is a requirement of NTFS-3G, but they are two separate packages; you could have FUSE installed but not NTFS-3G.

Have you tried calling "ntfs-3g" directly, rather than using "mount -t"? See if it works when you just run "ntfs-3g" with the device node and mount point, like so:

Code:
ntfs-3g /dev/device /mnt/mountpoint
 
Old 06-20-2011, 09:33 PM   #3
sofly
LQ Newbie
 
Registered: Jun 2011
Distribution: RHEL, Debian
Posts: 21

Original Poster
Rep: Reputation: Disabled
I had not tried calling ntfs-3g directly, clever idea. I just called it, and got the following message:

Code:
bash: ntfs-3g: command not found
I followed the instructions here - forgive me if I'm wrong, but doesn't that install both fuse and ntfs-3g?
 
Old 06-20-2011, 09:38 PM   #4
MS3FGX
LQ Guru
 
Registered: Jan 2004
Location: NJ, USA
Distribution: Slackware, Debian
Posts: 5,852

Rep: Reputation: 361Reputation: 361Reputation: 361Reputation: 361
The command:

Code:
yum install fuse fuse-ntfs-3g
Should have installed NTFS-3G and FUSE, as you said. But the fact that you can't run the "ntfs-3g" program itself would seem to indicate that it is not installed after all, which is strange. Did yum give you any odd messages or errors when you attempted to install those packages?

Have you tried re-running that yum command? See what it says when you attempt to re-install those two packages.
 
Old 06-20-2011, 09:53 PM   #5
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,980

Rep: Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624
You don't need to use ntfs-3g if all you want to do is mount it read only.
 
Old 06-20-2011, 09:55 PM   #6
sofly
LQ Newbie
 
Registered: Jun 2011
Distribution: RHEL, Debian
Posts: 21

Original Poster
Rep: Reputation: Disabled
After uninstalling the rpm and re-installing it, it appears as though it is only installing fuse, and just skipping right over ntfs-3g. It returns the following:

Code:
No package fuse-ntfs-3g available
I am running the plus kernel, which claims to have ntfs-3g built in, but I upgraded to the plus kernel post-installation. I don't think this should matter. If anything, it would mean that ntfs-3g is pre-installed and I wouldn't be getting any of these errors.

I've re-installed only fuse, since ntfs-3g won't actually install. I am a bit puzzled as to where to go next. It doesn't seem like there's another command to install ntfs-3g. Do I need to ./configure and make this myself? There is the repo that I can snag it from and try.
 
Old 06-20-2011, 10:03 PM   #7
sofly
LQ Newbie
 
Registered: Jun 2011
Distribution: RHEL, Debian
Posts: 21

Original Poster
Rep: Reputation: Disabled
Thinking back on everything, I believe that it's not installing ntfs-3g because I don't have rpmforge added to my rpm's. I have attempted to install and add the rpm, and it won't let me, claiming that the repo isn't found. Now it's a whole new problem :/
 
Old 06-20-2011, 10:06 PM   #8
MS3FGX
LQ Guru
 
Registered: Jan 2004
Location: NJ, USA
Distribution: Slackware, Debian
Posts: 5,852

Rep: Reputation: 361Reputation: 361Reputation: 361Reputation: 361
Have you tried the second command in that HowTo, which mentions activating the third party repositories (RPMForge):

Code:
yum --enablerepo=rpmforge install fuse fuse-ntfs-3g
Also, jefro does have a point, If you just want to read an NTFS volume, the kernel's built in support should be able to do that much for you. You just need NTFS-3G to get full read/write access to NTFS, which it seems like maybe you don't actually need in this case.
 
Old 06-20-2011, 10:14 PM   #9
sofly
LQ Newbie
 
Registered: Jun 2011
Distribution: RHEL, Debian
Posts: 21

Original Poster
Rep: Reputation: Disabled
I did run that command, and it didn't like rpmforge, gave the error that it couldn't find it. I tried a few other install methods, and I finally fixed it.

I followed these instructions to get the rpmforge repo installed, and now I am installing ntfs-3g.

For some odd reason, the kernel wasn't giving me support for any ntfs volumes, and I'd like to be able to write these volumes as well, so the extra little bit of work was worth it.

Thanks MS3 for getting me past that block, and making me realize what the issue was here, lol. You guys rock
 
Old 06-20-2011, 10:58 PM   #10
onebuck
Moderator
 
Registered: Jan 2005
Location: Central Florida 20 minutes from Disney World
Distribution: SlackwareŽ
Posts: 13,925
Blog Entries: 44

Rep: Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159
Moved: This thread is more suitable in <Linux-General> and has been moved accordingly to help your thread/question get the exposure it deserves.
 
Old 06-20-2011, 11:25 PM   #11
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,624

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
The problem looks like it is that you are using 5.5 and 5.6 is the current only supported by cent
Code:
su -
yum upgrade
reboot

make SURE that the rpmforge repo is installed
http://wiki.centos.org/AdditionalRes...t=Repositories
-- repo--
http://wiki.centos.org/AdditionalRes...ories/RPMForge

then install ntfs-3g
Code:
su -
yum install fuse fuse-ntfs-3g
reboot
 
Old 06-20-2011, 11:27 PM   #12
sofly
LQ Newbie
 
Registered: Jun 2011
Distribution: RHEL, Debian
Posts: 21

Original Poster
Rep: Reputation: Disabled
Thanks for your reply, John. I am actually running 5.6 - my mistake with the typo. There are no updates to be done

You were exactly right, I had to install the rpmforge repo and that took care of the errors and non-existant package markings I was getting back from yum. Everything's all set and happily reading & writing along!
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
mounting nfts in rhel5.0 shailu10m Linux - Newbie 1 12-21-2008 12:07 PM
have centos and windows nfts on computer want to shrink ntfs extendedping Linux - Software 4 11-12-2008 10:20 PM
NTFS-3g isn't mounting my NTFS partition... Necronomicom Slackware 4 03-02-2007 03:04 PM
View NFTS after (FAT32 to NTFS) Amir_1984 SUSE / openSUSE 3 11-07-2005 01:10 AM
mounting nfts hd Reaper69 Linux - Hardware 9 07-15-2004 12:16 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 08:51 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration