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는 정식적으로 배포하는 패키지가 아닙니다.
따라서 속도도 느릴 뿐더러 불안정하다는 말이..
'Linux > 구축 관련' 카테고리의 다른 글
리눅스에서 GUI 환경으로 원격제어 (VNC) (0) | 2016.12.15 |
---|---|
CentOS에서 NTP 서버 구축하기 (타임서버) (0) | 2016.11.30 |
Eclipse 설치 (0) | 2016.11.18 |
JDK, JRE (JAVA) 설치 (0) | 2016.11.18 |
Multipath 구성 (0) | 2016.11.10 |