Mounting a USB pen

01. Create a mount point – A place to load the data structure of the storage device (One time only)
[root@server ~]# mkdir /media/usb

02. See a mount point
[root@server ~]# ls -l /media

03. Fix the pen and verify the device driver assigned (sdb, sdc, sdd)

04. Mounting the USB
[root@server ~]# mount /dev/sdb1 /media/usb

05. See the pen drive data
[root@server ~]# cd /media/usb
[root@server ~]# ls –l

06. Before you unplug the pen
[root@server ~]# cd
[root@server ~]# umount /dev/sdb1

------------------------------------------------------------------------------------------

0 comments: