본문으로 바로가기

DSM 6.x exfat 마운트 하기

category Server/Xpenology 2021. 4. 14. 12:08
반응형

DSM 6.2.3 3615sx

 

https://xpenology.com/forum/topic/6715-exfat-for-dsm-50-amp-dsm-60/

 

exFAT for DSM 5.0 & DSM 6.0

In the old period, DSM never support exFAT because its a MicroSoft patent file system. But the memory cards for digital cameras over than 32GB (e.g. 64GB, 128GB), the default format is exFAT. If I want to copy data to DSM, that will be a bigger problem. So

xpenology.com

 

fuse-exfat최신버전 http://mirrors.edge.kernel.org/ubuntu/pool/universe/f/fuse-exfat/

2021.04 기준 1.3.0-2이다.

 

설치구문

wget -P /tmp/ http://ftp.de.debian.org/debian/pool/main/f/fuse-exfat/exfat-fuse_1.3.0-2_amd64.deb

dpkg -x /tmp/exfat-fuse_1.3.0-2_amd64.deb /tmp/exfat-fuse/

cp /tmp/exfat-fuse/sbin/mount.exfat-fuse /usr/bin/

 

usb장치 확인

fdisk -l Device Boot Start End Sectors Size Id Type /dev/sdy1 128 3915775 3915648 1.9G 7 HPFS/NTFS/exFAT

 

마운트용 폴더 만들기

터미널에서 mkdir로 만드니 파일스테이션에서 보이지 않는 ...

mkdir /volume1/usb-exfat

공유폴더를 미리 파일스테이션에서 만들어두는게 좋다.

 

마운트하기

위에서 usb는 /dev/sdy1이므로,

mount.exfat-fuse /dev/sdy1 /volume1/usb-exfat -o nonempty

 

exfat파티션 마운트해제

umount /volume1/usb-exfat

 

usb장치 제거

eject -F /dev/sdy1

 

터미널에서는 쓰기가 되는데 파일 스테이션에서는 쓰기가 안된다. 왜 권한이 안될까..

chmod +w로 쓰기권한까지 주었는데도 되지 안아...

반응형