ntfs 마운트시 모든 사용자 엑세스 가능하게 할려면...

netizn82의 이미지

안녕하세요!

ntfs 시스템을 리눅스에서 마운트했습니다.
mount -t ntfs -o codepage=949,iocharset=cp949 /dev/hdd1 /e

읽기전용으로 되는건 상관없는데,
엑세스허가권이 root로만 되어있네요... (;;-_-)

특정사용자나 모든사용자에게 읽기권한을 줄려면..
과연 어떻게해야하는지.. 궁금합니다. ^^;;;;
(chmod, chown 이 안통합니다.-_-)

좋은주말되세요!

익명 사용자의 이미지

manpage wrote:

uid=value, gid=value and umask=value

Set the file permission on the filesystem. The umask value is given in octal. By default, the files are owned by root and not readable by somebody else.

mount -o uid=자기자신

혹은

mount -o umask 022

정도로 마운트 하시면 될 거 같습니다 ^^