본문 바로가기

PC팁/OSX

yosemite에 ntfs-3g와 osxfuse로 ntfs를 읽고쓰기로 마운트하기

yosemite에 ntfs-3g와 osxfuse로 ntfs를 읽고쓰기로 마운트하기


먼저 Xcode를 설치합니다.


그 다음 터미날에서 ntfs-3g를 설치합니다.


brew install ntfs-3g


osxfuse-2.7.2 binary를 아래 링크에서 직접 다운받아 설치합니다.


http://sourceforge.net/projects/osxfuse/files/


그리고 링크를 확인하고 수정합니다.


> ls -l /sbin/mount_ntfs* 
/sbin/mount_ntfs -> /System/Library/Filesystems/ntfs.fs/Contents/Resources/mount_ntfs 
/sbin/mount_ntfs.orig -> /System/Library/Filesystems/ntfs.fs/Contents/Resources/mount_ntfs 

> unlink /sbin/mount_ntfs 
> sudo ln -s /usr/local/Cellar/ntfs-3g/2014.2.15/sbin/mount_ntfs /sbin/mount_ntfs 
> ls -l /sbin/mount_ntfs* 
/sbin/mount_ntfs -> /usr/local/Cellar/ntfs-3g/2014.2.15/sbin/mount_ntfs 
/sbin/mount_ntfs.orig -> /System/Library/Filesystems/ntfs.fs/Contents/Resources/mount_ntfs