View Single Post

  #2 (permalink)  
Old 06-15-2007, 04:08 PM
nixcraft's Avatar
nixcraft nixcraft is offline
Never say die
User
 
Join Date: Jan 2005
Location: BIOS
My distro: Ubuntu
Posts: 1,060
Rep Power: 10
nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute
Default

Insert pen drive into USB device.

To mount pen drive use mout command. Find out device name using fdisk –l command
Code:
fdisk -l
You may see /dev/sda as pen drive and /dev/sda1 as partition. Now create directory in /mnt
Code:
mkdir -p /mnt/usbpen
Mount pen
Code:
mount /dev/sda1 /mnt/usbpen
__________________
Vivek | My personal blog
Linux Evangelist
Play hard stay cool
Reply With Quote