Subscribe to our RSS news feed
AAPL 275.62 (0.56)

> Forum Guidelines

Welcome to the Genius Bar. Here's how this forum works:

1. Members are encouraged to make a guide that details something that they might have found troubling or challenging. Chances are, if you've seen the same question asked over and over again, you should write a guide for it.

2. This is not the forum for asking questions. If you have a question about a thread that's already here, feel free to ask it. Just don't start a thread for a specific question. Use the other forums here for that.

3. Posting links to off-site tutorials is not allowed.

4. That's it! Thanks for sharing your information with the rest of us. :)

To keep this forum clean this forum is moderated. You can post in existing topics but new ones will have to be approved before they show up. Quality guides promoting new methods and encouraging users to learn will be approved.


[How To] Make Mac OS X automount NTFS Drives in read/write mode, Updated to Revision 2.1! Guide on replacing default NTFS mounter
**
  • Group: Members
  • Posts: 66
  • Joined: 21-January 07
  • From: Kiev, Ukraine
  • Member No.: 77,818
This guide is rather fool-proof, but it involves messing with /sbin system directory, so remember, you're doing it at your own risk.

Big thanx to danielj7 and asstolavista from ntfs-3g forum for inspiration. Without them, this won't be possible.
Also I`d like to thank antoinef and Cliffton Beach for some really usefull comments in this thread that led to revision 2 of the Guide, and Greg134 for showing a simple solution to script problems with removable drives and spaces in partition name.

The Guide. Revision 2.1
1. Download and install MacFuse package, then reboot.
2. Download and install NTFS-3g package.
3. Download this file to your Desktop, then double click it, to extract the archive. The same file is attached at the end of this post, just in case.
4. Run Terminal from /Applications/Utilities Folder
5. Type cd ~/Desktop
6. Type sudo mv /sbin/mount_ntfs /sbin/mount_ntfs.old
7. Type in your password when requested and press Enter
8. Type sudo cp mount_ntfs /sbin/
9. Type sudo chown root:wheel /sbin/mount_ntfs
10. Type sudo chmod 555 /sbin/mount_ntfs
11. Reboot


After reboot, your NTFS drives should be mounted with read/write permissions automatically.
If you remount unmouned drives through Disc Utility, or plug in additional NTFS drives, they will be mounted with read/write permissions also.

Additional info for multilingual users
If you have files with names in languages, other then english, on your NTFS drives, they won't be shown by default.
To see such files, you must slightly edit the file extracted from the downloaded archive. You can edit it with TextEdit while its still on your desktop, or after completing the guide by typing "sudo nano /sbin/mount_ntfs".

Here's what should be inside the file by default:
#!/bin/sh

args=$#
MOUNTPOINT=${!args}
VOLNAME=${MOUNTPOINT##*/}
args=$((args-1))
DEVICE=${!args}
/usr/local/bin/ntfs-3g $DEVICE "$MOUNTPOINT" -o default_permissions -o locale=ru_RU -o volname="$VOLNAME"
With RED color, I highlited the locale section, where you can change your locale. I, myself, have files with names in Russian, so I use ru_RU locale to see these files.

To see a list of locales, installed in your system, open Terminal and type locale -a.

There is a chance, that after the folders with names in other languages appear, you won't be able to open files from them. In that case, just rename the folder once, and rename it back. Mac OS X will write the folder name in correct encoding and all files will open after this.

Restoring default NTFS mounter
In case anything went wrong, just run Terminal, type sudo mv /sbin/mount_ntfs.old /sbin/mount_ntfs and enter your password.

Please report success and failures in this thread if you try this method. Thank you.
Attached File(s)
Attached File  mount_ntfs.zip ( 315bytes ) Number of downloads: 223
 
PM Profile Card
Go to the top of the page
+ Quote Post
 
Start new topic
Replies
*
  • Group: Members
  • Posts: 7
  • Joined: 4-September 07
  • Member No.: 132,211
Hi,
external drives and volumes should be supported actually since it is only a front end app for ntfs 3g. The idea of having iMountIt actually came from the need I had to write on NTFS formatted external drives because I switched a few months ago and didn't want to reformat all the external drives I had. An updated version will be released soon though because susumu of McDoDesign supplied me with an awesome application icon that I hope everyone else will like too;)

MB-switcher
PM Profile Card
Go to the top of the page
+ Quote Post

Posts in this topic
- Laik   [How To] Make Mac OS X automount NTFS Drives in read/write mode   Aug 25 2007, 02:34 AM
- - zoo101   hi there! i tried this, but now i cant mount ...   Aug 25 2007, 07:12 PM
- - Laik   To restore deafult mounter you need to do what I w...   Aug 25 2007, 07:45 PM
- - Mr-Mur   Hi, pals! I got problema of the next kind: I ...   Aug 27 2007, 05:24 AM
- - haroonie   Did not work for me, volumes did not automount upo...   Aug 29 2007, 02:04 PM
- - dangreig   It did not work. My drives didn't mount autom...   Aug 29 2007, 07:46 PM
- - Laik   Sorry to hear people have problems. This worked fo...   Aug 29 2007, 08:48 PM
- - cyclonefr   no way to make an automount file,?   Aug 31 2007, 07:46 PM
- - onizuka   Hi This tutorial didn't work for me... In the...   Sep 1 2007, 04:10 PM
- - antoinef   Hello, Just for your information, when I plugged ...   Sep 2 2007, 05:59 PM
- - Laik   antoinef Thanx for the first success story. I star...   Sep 2 2007, 08:51 PM
- - onizuka   So.... the name of the variable doesn't matter...   Sep 2 2007, 08:57 PM
- - Laik   Guess so I'm not too good at this, I just post...   Sep 2 2007, 09:34 PM
|- - MB-switcher   QUOTE (Laik @ Sep 2 2007, 09:34 PM) Guess...   Sep 4 2007, 07:21 PM
- - Kali   work fine here to test (replace X & Y) # sudo...   Sep 3 2007, 06:54 PM
- - onizuka   Indeed, automount would be great, but I like iMoun...   Sep 4 2007, 07:29 PM
- - antoinef   Hello, I noticed that the arguments passed to the...   Sep 5 2007, 07:39 PM
- - daedalus01   (((HELP))) I am new to all of this so please be g...   Sep 6 2007, 04:37 AM
- - xtraa   @all: to restore your previous ntfs, simply type ...   Sep 6 2007, 05:57 AM
- - Laik   antoinef Great, I'll try your method, it seems...   Sep 8 2007, 10:39 PM
- - Cliffton Beach   laik: Works like a charm. Automount on boot and a...   Sep 8 2007, 11:45 PM
|- - XanthraX   QUOTE (Cliffton Beach @ Sep 8 2007, 11:45...   Sep 10 2007, 07:44 AM
- - Laik   antoinef Your part or the script worked like a cha...   Sep 9 2007, 12:13 AM
- - Cliffton Beach   VOLNAME=`/usr/local/sbin/ntfslabel -n $1...   Sep 9 2007, 06:16 AM
- - antoinef   Cliffton Beach I tried to initialize VOLNAME the w...   Sep 9 2007, 03:36 PM
- - Greg134   Hi, Thank you very much for this very usefull Ho...   Sep 9 2007, 03:38 PM
- - antoinef   Just a correction about my last post:Even if ...   Sep 9 2007, 04:08 PM
- - KKTK   Great - it is working! Thanks   Sep 10 2007, 03:28 PM
- - fredperes   Question: I can read and write in my ntfs partiti...   Sep 12 2007, 01:22 PM
- - MB-switcher   There has been a minor update. iMountIt has the ne...   Sep 12 2007, 03:44 PM
- - Laik   fredperes This seem to happen sometimes to some pe...   Sep 12 2007, 10:54 PM
|- - fredperes   QUOTE (Laik @ Sep 12 2007, 07:54 PM) fred...   Sep 13 2007, 07:13 PM
- - nightwalker   it's working very nicely but is there a way to...   Oct 23 2007, 05:34 PM
- - onizuka   You can use the usual technique to change the icon...   Oct 23 2007, 06:04 PM
- - nightwalker   thanks! never knew about that one...i'm ne...   Oct 24 2007, 01:58 AM
- - lekany   Hi everybody, Thanks to Laik for all this tuto. If...   Oct 24 2007, 08:39 PM
- - lekany   I found another great solution for those who don...   Oct 24 2007, 10:09 PM
|- - BeleiuR   I have tried it and it DOES NOT work. For some rea...   Oct 25 2007, 01:07 PM
- - Laik   lekany Thanx, I'll give it a try now. And I...   Oct 25 2007, 01:38 AM
- - Laik   BeleiuR & lekany Doesn`t work for me also,...   Oct 25 2007, 04:01 PM
- - Laik   Since I couldn't remove NTFS Driver lekany sug...   Oct 25 2007, 11:55 PM
- - Force Quit?   Laik, With the release of Leopard, your original ...   Oct 29 2007, 04:41 PM
- - nightwalker   ok i got this working to view ntfs drives but it ...   Oct 29 2007, 05:24 PM
- - Laik   I'm installing leopard tonight, and will see e...   Oct 29 2007, 08:12 PM
- - Force Quit?   Okay, after quite a lot of fretting, I have determ...   Oct 30 2007, 05:18 AM
- - Laik   :-/ I refuse to call this a "working ntfs mou...   Oct 31 2007, 01:34 AM
- - MiJKa   Actually, I got it working with the ntfs-g3 + MacF...   Mar 6 2008, 10:44 AM
- - yeye   you should try something easy: paragon NTFS for MA...   Mar 6 2008, 02:45 PM

Reply to this topic Start new topic

1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 

RSS Lo-Fi Version Time is now: 3rd September 2010 - 09:00 AM