Apple Event: May 7th at 7 am PT

Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

solution for NTFS formatted drives that works

I have done some research about it but i am be confused i found one method but i don't know if it works any more


Hey Thawn1 does your method

For me, creating/editing /etc/fstab did not work as described above. I had to replace LABEL=... with UUID=

and use the Volume uuid that I got by typing:


diskutil info /Volumes/<LabelOfYourDrive>


into a terminal.


still work with the newest version of mountain lion 10.8.4 can u able to reply to me please well if you get it please


Can some one test it for me or some one reply that tried it that actually works on the newest version of mountain lion 10.8.4 and plus i am thinking of buying a mac mini for my home server i am trying to get solution for it before i buy it so please reply peeps please


maybe a techician can help me or something if they do command line for that kind of stuff

Mac mini, OS X Mountain Lion (10.8.4)

Posted on Jun 11, 2013 5:21 AM

Reply
55 replies

Jun 11, 2013 6:11 AM in response to Allan Eckert

I got a 1TB External HDD and i am buying a mac mini for my home server soon i need it to read and write on it but it only reads and i got that method tht is in my first post from a person that make a post 2 months ago and it worked for him but i dont no if it works now so i need to know if that works now or not i dont really to used third party software on it or reformat it lol i got like over 500GB worth of data on there and i cant put it anywhere else



https://discussions.apple.com/thread/4152122?start=30&tstart=0


heres a link for it that i got it that method from and the guy that posted it he said it still works

Jun 11, 2013 6:28 AM in response to XDvenom

I just updated to 10.8.4 and this method still works:

  1. plug your drive in (I'll assume it is labeled "Data", you can find out the label by opening disk utility)
  2. open a terminal window
  3. type (replace Data with the name of your drive):
    diskutil info /Volumes/Data | grep UUID
  4. copy the volume uuid (in this example :EF6B132A-A6AD-43F1-B571-3C4B3CD79619)
  5. type (all on one line and including the quotation marks):
    sudo echo "UUID=EF6B132A-A6AD-43F1-B571-3C4B3CD79619 none ntfs rw,auto,nobrowse" >> /etc/fstab
  6. reboot
  7. the disk will not show up in your finder or on the desktop. The reason for that is the nobrowse option which is necessary for this to work in OSX 10.8.x. Personally, I think this is just harassment by Apple. To access the disk, you need to open a terminal and type:
    open /Volumes/Data
  8. voila, a finder window showing your disk will open and will allow you to write to the disk.


Message was edited by: thawn1

Jun 11, 2013 6:52 AM in response to XDvenom

it does not matter if there is a space around the >> or not.


Just for clarification and replying to your question in another thread:


the command in point 5 above is a one-liner that does the following:


sudo <- get super user privileges to be allowed to create/write to the file /etc/fstab (you will be asked for your password)


echo <- output the part between the quotation marks to whatever comes after the >>


"UUID=EF6B132A-A6AD-43F1-B571-3C4B3CD79619 none ntfs rw,auto,nobrowse" <-the line that should be written

>> /etc/fstab <- append the ouput of the echo command to the file /etc/fstab if the file does not exist, it is created. it is important to have two >> because one > would overwrite the file!


I hope this helps.

Jun 11, 2013 7:14 AM in response to XDvenom

Yes. You need a separate line in your /etc/fstab for each NTFS drive you want to write to.But you only need to do it once for each drive (not every time you plug it in). Also, if you do not need to connect the drive to a windows pc, you can always reformat the new drive with HFS+ (tha native apple file system).

I prefer this method over using third party software like NTFS-3G because I do not need to install any software which might corrupt my system, but then again, I only have one NTFS drive which I rarely use for data exchange with windows computers.

Jun 11, 2013 7:32 AM in response to XDvenom

The command does that already: >> APPENDS the line to the file, so if there is already a line there, a new line is created at the end of the file.


I suggest, you get the computer and try it out for yourself, then it will become clear. I think your original question is answered: yes, you can write to NTFS drives on a mac (either using 3rd party software or the method described above).

Tha major drawback of the method I described is this part:


  1. the disk will not show up in your finder or on the desktop. [...] To access the disk, you need to open a terminal and type (replace Data with the name of your drive):
    open /Volumes/Data
  2. voila, a finder window showing your disk will open and will allow you to write to the disk.


this means, that after plugging in, the drive will not show up in finder until you access it via a terminal window. But you can always use another file manager like muCommander which will show the drive.


I hope you will enjoy your new mac (which despite the NTFS hiccup is imho still a better product than a windows pc).


One more remark: to eject the drive, you also need a terminal window and type (replace Data with the name of your drive):


diskutil eject /Volumes/Data


Message was edited by: thawn1

solution for NTFS formatted drives that works

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.