Mounting a USB pen

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

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

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

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

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

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

2 comments: