Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

[Solved] Mount NTFS Drive to be able to read/write

New to Debian (Or Linux in general)? Ask your questions here!
Post Reply
Message
Author
mharrison
Posts: 223
Joined: 2009-09-29 13:44

[Solved] Mount NTFS Drive to be able to read/write

#1 Post by mharrison »

Like the subject says, I have an 80 gig drive formatted as NTFS that I use to store some files on so my wife can access them on her XP machine.

Currently I have the following in my /etc/fstab for the drive

Code: Select all

/dev/hdb1 	/media/Data 	ntfs 	umask=0,nls=utf8 0 0
Any suggestions on what I can modify so I can read and write to it with my user account? I did some Google searching, but nothing seems to pan out.
Thanks!
Last edited by mharrison on 2009-12-09 02:06, edited 1 time in total.

User avatar
4D696B65
Site admin
Site admin
Posts: 2696
Joined: 2009-06-28 06:09
Been thanked: 86 times

Re: Mount NTFS Drive so I can read and write to it as a user

#2 Post by 4D696B65 »

In order to write to ntfs from linux you need to install ntfs-3g.

Code: Select all

aptitude install ntfs-3g
Then chenge the ntfs in your fstab to ntfs-3g.
My line looks like this

Code: Select all

/dev/sda2 	/media/sda2	ntfs-3g	defaults,locale=en_CA.UTF-8	0	0

mharrison
Posts: 223
Joined: 2009-09-29 13:44

Re: Mount NTFS Drive so I can read and write to it as a user

#3 Post by mharrison »

Thanks, that did the trick.

Post Reply