nixCraft Poll

Topics

Linux: How to use USB pen / flash stick

Posted by Vivek Gite [Last updated: September 28, 2007]

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

Want to stay up to date with the latest Linux tips, news and announcements? Subscribe to our free e-mail newsletter or RSS feed to get all updates. You can Email this page to a friend.

You may also be interested in other helpful articles:

Discussion on This Article:

  1. Anonymous Says:

    Thanks for good post :) It worked for me…

  2. Anonymous Says:

    Thank you muchly! Worked awesomely!

  3. Anonymous Says:

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

  4. Anonymous Says:

    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.

  5. Peter Says:

    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.

  6. nixcraft Says:

    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

  7. jercos Says:

    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

  8. nixcraft Says:

    jercos,

    Meta tag is updated.

    Appreciate your post.

  9. majid Says:

    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.

  10. Babak Says:

    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

  11. Sk Shahin Rahman Says:

    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

Leave a Reply

We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

*
To prove you're a person (not a spam script), type the security word shown in the picture. Click on the picture to hear an audio file of the word.
Click to hear an audio file of the anti-spam word

Tags: , , , , , , ,

Copyright © 2004-2008 nixCraft. All rights reserved - TOS/Disclaimer - Privacy policy - Sitemap - Powered by Open source software.