linux USB mount, unmount
USB Flash Disk의 기본 파일 시스템은 보통 vfat을 사용한다
USB는 커널에 의해서 SCSI 장치를 이용해서 접근함
대부분 /dev/sd* 를 사용함 예) /dev/sda1
#1. 마운트를 위해 마운트 포인트를 생성해 줌
mkdir /mnt/usb
#2. USB가 사용중인 장치 정보를 확인
fdisk -l
[root@redhatws9 down]# fdisk -l
Disk /dev/sda: 256 MB, 256900608 bytes
16 heads, 32 sectors/track, 979 cylinders
Units = cylinders of 512 * 512 = 262144 bytes
Device Boot Start End Blocks Id System
/dev/sda1 1 979 250574+ 6 FAT16
#3. 마운트 함
mount -t vfat /dev/sda1 /mnt/usb
마운트 완료
사용을 다 하면 umount를 해줘야 함
umount /mnt/usb
※ 가끔 한글이 깨질경우 존재함 그럴때는
mount -t vfat -o iocharset=utf8 /dev/sda1 /mnt/usb
또는
mount -t vfat -o iocharset=cp949 /dev/sda1 /mnt/usb
'개발 > Linux' 카테고리의 다른 글
linux 명령어 - df (volume 사용량 확인) (0) | 2012.05.17 |
---|---|
linux 명령어 - top (0) | 2012.05.17 |
linux 명령어 - du (0) | 2012.05.17 |
linux 명령어 - find (0) | 2012.05.17 |
디렉터리 구성 (0) | 2012.05.17 |