Loading
2015. 10. 15. 14:06 - Reti

[맥] NTFS 쓰기를 하는 방법 드라이버 플러그 설치하기 (무료)

관련글

[MacOSX] NTFS 3G 설치 제거

[맥] NTFS 쓰기를 하는 방법 드라이버 플러그설치하기 (무료)

[맥] NTFS 쓰기를 하는 방법 드라이버 플러그설치하기 (유료)


맥에서 리눅스서 넓게 유닉스 시스템 전반으로 윈도우 서버서 쓰던 형식인 NTFS 파일시스템형식은 지원되지 않습니다.

그래서 우리는 어쩌면 트윅이라고 불리는 드라이버 플러그를 사용합니다.

주로 유료 소프트 웨어로 투세라 파라곤 등이 알려 졌으며

무료로는 마운티NTFS-3G플러그와 퓨즈가 알려져 있씁니다.

오늘은 마운티와 퓨즈를 사용해 보겠습니다.



1. Mounty

http://www.enjoygineering.com/mounty/


빠른 설치와 시스템 수정이 필요없는 무료애플리케이션이지만 치명적인 단점

모든 윈도우서든 맥에서든 안전하게 제거나 추출해제로 마스터부트레코드의 손상 찌꺼기로 인해

인식거부가 많아 안정적이지 않다. 그뜻은 클린한 안정 상태가 아니면 이외에는 불안정하다는 것이다.

사용법은 쉽지만 까다롭다.

참고로 위 문제는 맥서 디스크 유틸리티서 권한 복구 파일 시스템 복구등을 수행하여야 하며

윈도우서도 파티션 섹터복구 등을 해주어야 한다.


아래와 같이 색상이 상태를 표시해 준다.

그리고 아래는 참고사항으로써 고급 유저에 한해 사용하면 된다.

이뜻은 혹시 놓친 정보를 기록하기 위한 백업이라 보면 된다.



A bit of background

Occasionally I need to share files with my colleagues via USB sticks. Since we are working on different platforms the sticks might be NTFS-formatted. No problem so far, there are several resources out to the web describing to accomplish this task, e.g.

I personally have chosen the more pragmatic way, just open a terminal and issue some mount commands like:

나는 개인적으로 그냥 터미널을 열고 일부는 같은 명령을 탑재 발행, 더 실용적인 방법을 선택했습니다.

macbook:~ uwe$ sudo umount /Volumes/UNTITLED

macbook:~ uwe$ sudo mount -t ntfs -o rw,auto,nobrowse /dev/disk3s1 ~/ntfs-volume

However, tired of typing this over and over, I have written Mounty to accomplish exactly this - but in a much more convenient fashion. So, under the hood, it happens an unmount and a remount short after, followed by opening a Finder window pointing to the hidden mount point.

OS X은 항상 NTFS (NTFS는 Microsoft Windows 용 전용 파일 시스템 형식을 새로운 기술 파일 시스템의 약자입니다)로 포맷 된 드라이브에 대한 쓰기 지원을 활성화 할 수있는 숨겨진 옵션은 NTFS 드라이브를 읽을 수 있었지만, 맥 OS X에 자리 잡고있다 .Mac에서 NTFS 쓰기 지원을 활성화하면 상당히 기술적이며 공식적으로 그것을 가장 공정 및 잠재적 인 영향을 이해하는 고급 사용자의 손에 남아있는 실험적인 기능을 애플에서 지원하지 않는 것.

Please let me know if this tool is also useful to you; and do not hesitate to ask a question that might appear using Mounty.

OS X has always been able to read NTFS drives, but tucked away in Mac OS X is a hidden option to enable write support to drives formatted as NTFS (NTFS stands for New Technology File System and is a proprietary file system format for Microsoft Windows). Enabling NTFS write support on the Mac is fairly technical and it’s not officially supported by Apple, making it an experimental feature that is best left in the hands of advanced users who understand the process and the potential repercussions.

공식적인 지원의 부족은 커널 패닉 또는 NTFS 드라이브에 심지어 이론적 인 데이터 손실의 형태로 하나, 잘못 뭔가의 가능성이있을 수 있습니다 따라서, 옳은 일을하고 먼저 데이터를 백업합니다.

Because this feature is officially unsupported by Apple, NTFS should not be considered a reliable cross-platform file system for moving files between a Mac and a Windows PC, users will still want to format drives for the FAT file system for optimal Mac to/from PC drive compatibility with full read and write support (perhaps a better solution for many users would be to use samba networking and share files directly through a local network between the PC and Mac in question). Additionally, the lack of official support suggests there could be the potential for something to go wrong, either in the form of kernel panics or even theoretical data loss on the NTFS drive. Accordingly, such a feature may be best as a last resort and should not be used with important data on the Windows drive without having adequate backups of those files. So, do the right thing and back up your stuff first.

Comfortable with all of that? Great, we’ll cover two different ways to enable NTFS write support in OS X, this must be used on a per-drive basis and it requires the usage of the command line.

Enable OS X NTFS Write Support Using Drive UUID

Though it’s slightly more complicated than the drive-name based approach mentioned below, this is really the best method for precision.

Connect the NTFS drive to the Mac, then retrieve the NTFS drives UUID with the following command string:

diskutil info /Volumes/DRIVENAME | grep UUID

With the resulting UUID, use the following command to append the UUID with NTFS read and write support to /etc/fstab:

sudo echo "UUID=ENTER_UUID_HERE none ntfs rw,auto,nobrowse" >> /etc/fstab

The NTFS drive will likely not appear on the desktop by default, but you can get access to it in the /Volumes/ directory by opening that folder in the Finder with the following command:

open /Volumes

If you do want to see the drive on the desktop (assuming you have the desktop shown, of course), you can make an Finder alias with a symbolic link:

sudo ln -s /Volumes/DRIVENAME ~/Desktop/DRIVENAME

You can also use the experimental NTFS write mounting with a drive name rather than UUID, which we’ll go over next.

Enable NTFS Write Support with the Drive Name

For precision I prefer to use the UUID method, but you can also add NTFS write support by using the Windows drives name by using the following command:

sudo echo "LABEL=DRIVE_NAME none ntfs rw,auto,nobrowse" >> /etc/fstab

Because this uses the sudo command you will need to enter an admin password to be able to execute the entire command properly. This command string is appending the drive name to the end of the /etc/fstab file, because /etc/ is a system directory you need to have superuser access to write to files in that directory, thus the requisite sudo prefix.

For example, adding read/write support to an NTFS drive named “WINDOWS8” would look like the following:

sudo echo "LABEL=WINDOWS8 none ntfs rw,auto,nobrowse" >> /etc/fstab

If the drive has as complex name, use the UUID method mentioned above, or rename the NTFS drive in Windows before attempting to mount it with write support.

Again, you’ll want to look in /Volumes/ to find the newly mounted Windows NTFS drive with full read and write support. As mentioned already, it can also be helpful to create a symbolic link on the OS X Desktop to easily access the mounted NTFS drive:

sudo ln -s /Volumes/DRIVENAME ~/Desktop/DRIVENAME && open ~/Desktop/DRIVENAME

There are a variety of easier but older tools to automatically complete the processes mentioned above, but the aforementioned NTFS Mounter utility seems to have stopped working post-Snow Leopard, and thus modern versions of OS X from Mountain Lion to Mavericks will want to use the command line approach instead. There are also third party paid apps available to provide NTFS support to OS X, which may be better options for enterprise environments where an experimental feature is not considered reliable enough to deploy.


2. FUSE for OS X (그리고.. 플러그 NTFS-3G)

위 프로그램의 단점이 큰 문제라면 좀더 시스템을 수정하는 어려운 방법을 택할 수 있습니다.

하지만 프러그는 유료인 투세라에도 들어가는 드라이버입니다.

어느 정도 위 에러를 잡았다는 것이지요.

퓨즈를 까는 겁니다. 최신 맥은 루트리스를 꺼야합니다.

또한 제거또한 까다롭습니다.

터미널을 이용해 제거하기때문입니다.

FUSE for OS X 

http://osxfuse.github.io/

설치시 주의점 하나 아래와 같이 호환 레이어를 체크 해주셔야 프러그가 작동합니다.


NTFS-3G

http://sourceforge.net/projects/ntfs-3g/

설치합니다.

그리고 아래 처럼 방금 최신 버전의 퓨즈를 설치했으므로 체크를 해제합니다.


아래는 캐시 사용여부인데요. 연결 해제가 많은 이동식 디스크 사용시에는 사용안하는 것이 낮습니다.


아래는 경고 문구로써 비활성화도 가능합니다.

아래를 설치하면 됩니다.

fuse_wait

https://github.com/bfleischer/fuse_wait/downloads