OS
Linux. exfat format mount
out of coding
2020. 6. 27. 12:18
자료를 복사하려고 USB를 꼽고 마운트를 하는데 다음과 같은 메세지가 발생할 경우가 있습니다.
mount: unknown filesystem type 'exfat'
exfat file system의 경우에는 설치를 하여 주어야 하는것들이 있습니다.
Ubuntu
$ sudo apt-get install exfat-fuse exfat-utils
CentOS7 이상
$ sudo yum install -y http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-1.el7.nux.noarch.rpm
$ sudo yum install exfat-utils fuse-exfat
이렇게 하고 마운트를 해주면 됩니다.
2020/06/27 - [OS] - Linux. external storage (USB) mount
Linux. external storage (USB) mount
Linux에서 외장메모리의 데이터를 연결하는 방법을 알아보려고 합니다. 자기가 연결한 디스크가 어떠한 것인지 확인합니다. $ fdisk -l 대부분은 /dev/sdb이라고 disk가 보일것이고 우리가 mount 하려고
mrgamza.tistory.com