Linux: How to use USB pen / flash stick

by LinuxTitli on May 10, 2005 · 18 comments

More and more people these days using the USB pen and flash memories instead of floppies and CDs. They come is different sizes from 128MB upto 2 GB. Moreover, may new Linux user find it difficult to use usb devices, the main problem is people don’t understand how it works...

USB devices use SCSI devices names

SCSI devices such as /dev/sda use to represent your first USB pen/stick and equivalent partitions are as follows:

Sample 256 MB USB PEN (E: is 100 MB, F: is rest of the free space)
Linux Partition => Windows XP/NT
/dev/sda1 => E: (assuming that C: is hard-disk; D: is VD/CD/RW)
/dev/sda2 => F: (assuming that C: is hard-disk; D: is DVD/CD/RW; E: is first drive USB pen 100 MB drive)

Linux Kernel must have support for USB

Linux kernel must compiled with support for
i) SCSI disk
ii) USB Support
iii) USB Mass support

Most of the modern Linux distribution comes with all sort of support. If it is not included, get latest kernel from http://kernel.org/ and make sure you compile it with above features + file system support such as ext2/3, vfat and so on…

Commends to mount USB Pen / Flash memory stick under Linux

a) Log in as the root user (or use sudo command)

b) Create a mount point
# mkdir –p /mnt/pen
# mkdir –p /mnt/pen

c) To mount the disk run mount command:
# mount /dev/sda1 /mnt/pen

This command will mount MS-Windows XP/Vista E: into /mnt/pen

d) To use it or to see your files:
# cd /mnt/pen
# ls –l

e) To copy files from /home/rdl/*.c to directory to pen drive us cp command:
# cp –v /home/rdl/*.c /mnt/pen

f) You can use rest of the all command such as rm, rmdir, mv etc to copy, move or delete files.

g) To format the /dev/sda2 as Linux ext3 partitions use the following command:
# mkfs.ext3 /dev/sda2

h) To delete all partition and to create new partition use run fdisk program:
# fdisk /dev/sda

Refer to fdisk man page for more information on how to delete and create partitions.

g) To list all partition on all devices use the following command:
# fdisk –l

h) Use dmesg command to get more info on your USB devices:
# dmesg | grep –i "usb"

i) Run scandisk (window like stuff) on /dev/sda1:
# umount /dev/sda1
# fsck /dev/sda1

Further readings:

=> See the detailed guide USB Flash Memory HOWTO

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

We're here to help you make the most of sysadmin work. So, subscribe!

{ 18 comments… read them below or add one }

1 Anonymous May 26, 2005

Thanks for good post :) It worked for me…

Reply

2 Anonymous September 25, 2005

Thank you muchly! Worked awesomely!

Reply

3 Anonymous December 16, 2005

Thanks a bunch for this post, it helped me a lot.

Reply

4 Anonymous May 4, 2006

thanks a lot in advance. I am not on my system currently but I know damn sure its gonna work and will bring to end to all my pain of error mounting CDROM just to install an app that doesn’t have internet access.

Reply

5 Peter December 2, 2006

Sir, I wish to seek for assistance. I’ve installed the Redhat Linux package 7.2 and i’m unable to mount my flash stick. I would be happy if i could be given some assistance. Thanks in advance.

Reply

6 nixcraft December 2, 2006

Peter,

Red hat 7.2 is too old. Get latest distro and you should able to use usb pen or drive. Old version has some issues. I recommend getting Fedora Core or Ubuntu Linux

Reply

7 jercos December 25, 2006

You my good man, need to change your charachter encoding to UTF-8. there was quite a few symbols (all hyphens for example) that were messed up because the encoding was set to ISO-8859-1 by default… the meta tag is your friend :P

Reply

8 nixcraft December 25, 2006

jercos,

Meta tag is updated.

Appreciate your post.

Reply

9 majid December 26, 2006

Hi, i’m a new learner of Linux. I installed a RedHat 9 Professional Edition in my workstation. When I plug in usb thumb drive to the usb port of PC, it wouldn’t detect. Is it RedHat 9 not support for the usb flash? If yes, how could I upgrade my PC to detect the usb flash? TQ.

Reply

10 Babak May 25, 2007

Thank you for technical help.

Is it possible to have USB Flash Memory HOW To document in .pdf or .doc formats to be saved or download. I’m learnig Linux OS and my Linux Kernel is 2.6 (Mandrakelinux 10.1). Is there any GUI way of using USB pen on this version of OS?

Many Thanks in advance
Babak

Reply

11 Sk Shahin Rahman December 13, 2007

i want make a folder tar and send it directly to usb so that it does not in my server. if any solution pls help me

Reply

12 sasikumar January 2, 2009

sir how to run not enable redhat linux 8.0 version not run usb pendrive use how please send to detalis e-mail sir how to

Reply

13 riya March 29, 2009

what is this sda1, i have linux and in my $ dev folder i do not have sda1 or sda but i have hda1 etc

Reply

14 Makepeace Ruzive - Zimbabwe September 10, 2009

Clear as crystal,
Thanks

Reply

15 jae April 22, 2010

I am new in Linux.

I would like to use USB in Linux. But I got a problem.

After typing “cp -v /home/rd1/*.c /mnt/pen”, I got an error message like,

cp: cannot stat ‘/home/rd1/*.c : No such file or directory.

Please help me.

Reply

16 ad April 26, 2010

Later distros automatically mount USB devices, but don’t seem to list the ‘sda/sdb’ they have assigned in dmesg, or anywhere else I can find. What command will show both the name of the device (like Kingston USB) and the automounted path (like /dev/sdb1)?

Any help appreciated :)

Reply

17 bisl August 14, 2011

Thanks. This helped me.
Short and sweet. Actually more information than I needed, but I found the parts that I needed easily.

Reply

18 Ronald Calzada November 14, 2011

Cheers for the Article, its my second time visiting your page and must say it is very interesting hope to check back soon.

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 6 + 5 ?
Please leave these two fields as-is:
Are you a human being? Solve the simple math so we know that you are a human and not a bot.




Previous post:

Next post: