CentOS에서 USB 사용하기 (FAT32, NTFS)
CentOS에서 USB Memory 사용하기
FAT32
[root@localhost ~]# fdisk -l
...
Disk /dev/sdc: 8054 MB, 8054112256 bytes
255 heads, 63 sectors/track, 979 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x01f4b100
Device Boot Start End Blocks Id System
/dev/sdc1 * 1 980 7864320 b W95 FAT32
Partition 1 has different physical/logical endings:
phys=(978, 254, 63) logical=(979, 48, 29)
NTFS
[root@localhost ~]# fdisk -l
...
Disk /dev/sdc: 8054 MB, 8054112256 bytes
255 heads, 63 sectors/track, 979 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x01f4b100
Device Boot Start End Blocks Id System
/dev/sdc1 * 1 980 7864320 7 HPFS/NTFS
Partition 1 has different physical/logical endings:
phys=(978, 254, 63) logical=(979, 48, 29)
위 rpm 파일을 설치
[root@localhost data]# rpm -ivh epel-release-6-8.noarch.rpm
[root@localhost data]# yum ntfs-3g
[root@localhost data]# mount -t ntfs-3g /dev/sdc1 /media
##ntfs-3g는 정식적으로 배포하는 패키지가 아닙니다.
따라서 속도도 느릴 뿐더러 불안정하다는 말이..