centos 외장 하드 마운트 하기
생각 보다 어렵지 않은 외장 하드 마운트 하기
우선 자신이 disk 정보를 확인 한다 .
fdisk -l
거기에 보면 자신이 할 마운트의 디바이스 정보가 나올 것이다.
Disk /dev/sdd: 4000.8 GB, 4000787029504 bytes
256 heads, 63 sectors/track, 484501 cylinders
Units = cylinders of 16128 * 512 = 8257536 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x9bc667a7
Device Boot Start End Blocks Id System
/dev/sdd1 1 266305 2147483488+ 7 HPFS/NTFS
Partition 1 does not start on physical sector boundary.
/dev/sdd2 266306 484501 1759532544 7 HPFS/NTFS
이런 식으로 나올 것이다
mount /dev/sdd2 /home/usb
이러면 끝~~
mount /장치의 디바이스 /마운트 시킬 위치
마운트 해제
umount /home/usb
umount /마운트 시킨 위치
간단 하게 할수 있다
'리눅스' 카테고리의 다른 글
centos crontab 설치 하기 (0) | 2017.11.30 |
---|---|
리눅스 단순 명령어 반복 입력 (0) | 2017.11.30 |
centos 다운로드 (0) | 2017.11.30 |
centos sshfs python 패스워드 자동 입력 스크립트 (0) | 2017.11.30 |
centos sshfs 사용법 (0) | 2017.11.30 |