본문 바로가기

아카이브/Linux

리눅스 터미널에서 usb mount(usb 사용)

반응형



1. Find what the drive is called

You'll need to know what the drive is called to mount it. To do that fire off:

sudo fdisk -l

You're looking for a partition that should look something like: /dev/sdb1. Remember what it's called.

2. Create a mount point

Create a new directory in /media so you can mount the drive onto the filesystem:

sudo  mkdir /media/usb

3. Mount!

sudo mount /dev/sdb1 /media/usb

When you're done, just fire off:

sudo umount /media/usb



[참고사이트]

How to access a usb flash drive from the terminal? (How can I mount a flash drive manually?)


반응형

'아카이브 > Linux' 카테고리의 다른 글

Ubuntu의 apt-get 명령어 정리  (0) 2015.01.26
유용한 유닉스 명령어(퍼옴)  (0) 2015.01.22
파일/폴더 복사  (0) 2015.01.16
my.cnf  (0) 2015.01.15
[ssh] 원격접속  (0) 2015.01.11