URN Logo
UNIX Resources » Linux » Linux Forum » Linux Data Storage Support » Page.3 » How To Read An Usb Flash Memory
announcement The content of this page is collected from Linux Forum, All copyrights and other associated rights are reserved by the original authors of the articles.
Resources
China Linux Forum(finished)
Linux Forum(finished)
FreeBSD China(finished)
linuxforum.com
  LinuxForum General Chat
  Linux Advocacy
  LinuxForum Polls
  Introductions
  Linux Kernel Support
  Patch Management
  Development Release
  Linux Programming
  Linux Security
  Linux Software
  Linux Hardware Problems
    Linux Video Problems
    Linux Sound Problems
  Linux Networking Support
  Linux Printing Support
  Linux Human Interface Devices Support
  Linux Data Storage Support
  Linux Applications Support
  Linux Installation Support
  Linux Laptops Support
  Linux Motherboard, Chipsets, CPU, Memory
  Miscellaneous
  Debian Linux Support
  Ubuntu Linux Support
  LiveCD Discussions
  Gentoo Linux Support
  Mandrake Linux Support
  Redhat / Fedora Linux Support
  Slackware Linux Support
  SuSE Linux Support
  CentOS Linux Support
  Linux Web Servers
  Linux DNS Servers
  Linux Database Servers
  Linux Email Servers
  Linux FTP Servers
  Linux Squid Proxy Server
  Linux Samba Help
  Linux cPanel Help
  Linux Ensim Help
  Linux Plesk Help
  Linux Webmin / Usermin Help
  Qmail Toaster Help
  Linux Games
  Windows Game Emulation
  Linux Discussions
  General Linux Discussions
  Red Hat Linux Discussions
  More Red Hat Linux Discussions
  Mandrake Linux Discussions
  Slackware Linux Discussions
  SuSE Linux Discussions
  Debian Discussions
  Samba Help
  Linux Security
  Linux Networking
  Gentoo Help
  Operating System Rant Forum
  Hardware Rants
   
How To Read An Usb Flash Memory
Subject: How To Read An Usb Flash Memory
Author: gorgin    Posted: 2006-06-25 11:57:11    Length: 152 byte(s)
[Original] [Print] [Top]
hi,

I'm newbie in linux. could you tell me how I can read an USB Flash Memory please? (I mean in Console mode)

Thanks,
G.
[Original] [Print] [Top]
Subject: How To Read An Usb Flash Memory
Author: kari-matti    Posted: 2006-06-28 00:39:57    Length: 407 byte(s)
[Original] [Print] [Top]
You'll have to mount the USB drive with mount command,
unless it's automounted. Something like this

mount /dev/sda1 /mnt/USB

/dev/sda1 is the device, the name might be something else
/mnt/USB is the directory, where it is mounted, the directory must
exist before you do the above. Also note that yo'll have to this as
a superuser.

kari-matti
[Original] [Print] [Top]
Subject: How To Read An Usb Flash Memory
Author: x86processor    Posted: 2006-06-28 01:21:02    Length: 56 byte(s)
[Original] [Print] [Top]
Which distribution are you using? What is your hardware?
----
Linux is the kernel. The entire system is called GNU/Linux.
http://www.gnu.org/gnu/linux-and-gnu.html

My domain: shakthimaan.com (Offline)
orkut ID: shakthimaan
IRC nick: mbuf
[Original] [Print] [Top]
Subject: Re: How To Read An Usb Flash Memory
Author: yaohui    Posted: 2006-08-12 22:55:43    Length: 1,090 byte(s)
[Original] [Print] [Top]
hi,

To read your usb flash memory, you have to finish the following steps:
1. Plug in your usb flash memory, and then check this SCSI device:
#lsusb   or #/proc/scsi/scsi
2. Find exact path for your flash memory. (Since usb disks map onto scsi)
#demsg | grep -i "SCSI device"
then you can get the usb location:  such as:  /dev/sdb  or /dev/sda, etc.
3. Inspect the partitions on the usb device
#fdisk -l /dev/sdb    (sdb is my case, for yours, you can get from last step)
then you can get information of the partition which consists of partition of your device such as: "/dev/sdb1"
4. Add the following line into /etc/fstab
/dev/sdb1  /mnt/usbdrive vfat  defaults 0 0
5. Create directory "usbdrive" in /mnt then mount it
mnt#mkdir  usbdrive
mnt#mount usbdirve
So far, you can read your usb flash memory.
Remember unmount it after using it
#umount /mnt/usbdrive

Hopefully, you can get some ideas.

[Original] [Print] [Top]
« Previous thread
Fc5 Nautilus-cd-burner-2.14.2-1 Does Not Acknowledge Usb Cd Writer
Linux Data Storage Support
Page. 3
Next thread »
Many Raid1 Vs A Raid10
     

Copyright © 2007 UNIX Resources Network, All Rights Reserved.      About URN | Privacy & Legal | Help | Contact us
Powered by FreeBSD    webmaster: webmaster@unixresources.net
This page created on 2007-08-01 11:54:27, cost 0.1655170917511 ms.