水 18 11月 2009
Snow Leopard 標準機能で、NTFSフォーマットのボリュームを読み書き可能にする方法
Posted by admin under Mac Software TIPS, MacOSX
[7] Comments
Boot Campを使って、Mac で Windows を起動できるようにしている方は多い。
さて、Boot Camp のインストール時に一番はじめに悩むのが、「Windows パーティションのフォーマットを、FAT32 / NTSF のどちらにするか」という点である。
ご周知の通り、Windows VISTA をインストールする場合、NTSF しかないし、FAT32は、4GBを越えるファイルを扱えないし、何よりいまさら FAT32 でもあるまいと思う。
しかし、Mac から Windows パーティションへの書き込みが可能なのは、FAT32 だけであって、NTSFフォーマットでは、これができない。( 読み込みは可能。また逆の書き込みは可能 )
こうした世知辛い理由から、FAT32 を選択する場合が多かった。
また、Paragon NTFS for Mac OS X 7 などの ユーティリティの力に頼って、NTSF に Mac から書き込みできるようにしている方もよく見かけた。
Snow Leopard (10.6.x) では、標準の機能で、これが可能になっているようだ。
Guide: Enable native NTFS Read/Write in Snow Leopard : MacRumors Forums
http://forums.macrumors.com/showthread.php?t=785376
For this, you need to modify your /etc/fstab file to mount NTFS partitions for read and write.
- First, uninstall NTFS-3G/Paragon if installed.
- Open Terminal.app (/Applications/Utilities/Terminal)
- Type “diskutil info /Volumes/volume_name” and copy the Volume UUID (bunch of numbers).
- Backup /etc/fstab if you have it, shouldn’t be there in a default install.
- Type “sudo nano /etc/fstab”.
- Type in “UUID=paste_the_uuid_here none ntfs rw” or “LABEL=volume_name none ntfs rw” (if you don’t have UUID for the disk).
- Repeat for other NTFS partitions.
- Save the file (ctrl-x then y) and restart your system.
After reboot, NTFS partitions should natively have read and write support. This works in both 32 and 64-bit kernels. Support is quite good and fast, it even recognizes file attributes such as hidden files.
拙訳すると… (続きを読む…)