URN Logo
UNIX Resources » Linux » Linux Forum » Linux Laptops Support » Page.1 » USB Flash drive 2.0 problem on Red hat 9.xxxx
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
   
USB Flash drive 2.0 problem on Red hat 9.xxxx
Subject: USB Flash drive 2.0 problem on Red hat 9.xxxx
Author: Dukelord    Posted: 2006-11-26 05:46:16    Length: 662 byte(s)
[Original] [Print] [Top]
Hi there.I'm a newbie....new to the Linux world,I just recently installed Red hat on my laptop yesterday....HP Dv5000 series.I'm trying to mount my flash drive on the Linux environment....I use the following command on the root console;

# mount /dev/sda -t auto /mnt/flash

I've creat the directory /mnt/flash

But the console gives me a prompt saying that it doesn't recognise the file system of the flash drive which in this case is fat16...Could someone pls give me a detailed explanation as to how i can resolve this.

Also,how can I make my Linux OS see my Windows XP Home (SP2) partition?Thanks.
[Original] [Print] [Top]
Subject: Re: USB Flash drive 2.0 problem on Red hat 9.xxxx
Author: erdsiger    Posted: 2006-11-26 05:58:32    Length: 1,229 byte(s)
[Original] [Print] [Top]
I'm trying to mount my flash drive on the Linux environment....

Use this command to mount it:

Code:
mount -t vfat /dev/sda /mnt/flash

(Write instead of sda your flash drive name, this is sda1 on my system.)


Also,how can I make my Linux OS see my Windows XP Home (SP2) partition?

Type this command:

Code:
fstab -l

Then you will see the partitions. The next step is to mount it as your flash drive. Otherwise, look at this HOWTO, you will find there a lot of useful information:
http://gentoo-wiki.com/HOWTO_Mount_MS_Windows_partitions_(FAT,NTFS)
----
[Original] [Print] [Top]
Subject: Re: USB Flash drive 2.0 problem on Red hat 9.xxxx
Author: Dukelord    Posted: 2006-11-26 06:12:42    Length: 262 byte(s)
[Original] [Print] [Top]
Thank you so much.Now after I finish mounting the flash drive,how to i copy files or folders from the flash drive to the Linux partition.Say I have a folder in my flash drive called Linux,what command can I use?Sorry....I'm a newbie to the Linux environment
[Original] [Print] [Top]
Subject: Re: USB Flash drive 2.0 problem on Red hat 9.xxxx
Author: erdsiger    Posted: 2006-11-26 06:19:36    Length: 559 byte(s)
[Original] [Print] [Top]
how to i copy files or folders from the flash drive to the Linux partition.Say I have a folder in my flash drive called Linux,what command can I use?

Use the cp command. For more information type this: man cp. But I suggest to use the Midnigh Commander, type mc to the command line. You can copy files easier with this program.
----
[Original] [Print] [Top]
Subject: Re: USB Flash drive 2.0 problem on Red hat 9.xxxx
Author: Dukelord    Posted: 2006-11-26 07:18:56    Length: 836 byte(s)
[Original] [Print] [Top]
I was able to mount the flash drive,but I can't see the files....when I used the command you gave me earlier.....mount -t vfat /dev/sda /mnt/flash.....it just mounted and then took me to the next prompt...How do I view the contents of the flash drive and then how do I copy individual files?Say I have a file called cat in my flash drive and I've created a directory called flash using mkdir flash,how do I copy cat from my flash drive to the directory called flash that I created....I created a directory called mozilla,anytime I try to write on it,it tells me that it cannot create file because the directory is not writtable.How can I make the directory writtable.I'm so sorry for all the questions.I'm a newbie.I just installed linux on a partition in my laptop yesterday...using it for the first time.Thank you.
[Original] [Print] [Top]
Subject: Re: USB Flash drive 2.0 problem on Red hat 9.xxxx
Author: Dukelord    Posted: 2006-11-26 07:22:54    Length: 149 byte(s)
[Original] [Print] [Top]
How can I unmount the flash?I use the following command.....unmount /mnt/sda and it tells me that the command it unrecognisable????Pls help.Thank you
[Original] [Print] [Top]
Subject: Re: USB Flash drive 2.0 problem on Red hat 9.xxxx
Author: erdsiger    Posted: 2006-11-26 08:31:41    Length: 830 byte(s)
[Original] [Print] [Top]
How do I view the contents of the flash drive and then how do I copy individual files?

I suggested to use mc. Try it! Or if you want to use the command line, use the ls command to list the files, but with mc it is easier.

How can I unmount the flash?I use the following command.....unmount /mnt/sda and it tells me that the command it unrecognisable?

Not unmount, just umount.
----
[Original] [Print] [Top]
Subject: Re: USB Flash drive 2.0 problem on Red hat 9.xxxx
Author: Dukelord    Posted: 2006-11-26 08:57:16    Length: 1,014 byte(s)
[Original] [Print] [Top]
This is my root console


[mavor@localhost mavor]$ ls /mnt/flash
Linux  Linux for dummies.pdf  ntfs-3g-0.20061115-BETA.tgz
[mavor@localhost mavor]$ mkdir flash
mkdir: cannot create directory `flash': File exists
[mavor@localhost mavor]$ cp /mnt/flash/Linux flash
cp: omitting directory `/mnt/flash/Linux'
[mavor@localhost mavor]$



The flash drive contains the following files;
A folder called Linux
A pdf file called Linux for dummies
A file called ntfs-3g-0.20061115-BETA.tgz

This is what I did...I created a directory called flash and now I wanna copy the folder called Linux to this new directory called flash that I created but still no luck....
Pls help me out.I'm sorry for bothering you so much....

Also how do I carry out installations of files that end with extension .tgz
Also how do I unmount my flash...you didn't reply before...

Thank you so much
[Original] [Print] [Top]
Subject: Re: USB Flash drive 2.0 problem on Red hat 9.xxxx
Author: erdsiger    Posted: 2006-11-26 10:41:00    Length: 1,574 byte(s)
[Original] [Print] [Top]
I wanna copy the folder called Linux to this new directory called flash

First of all log out from root. It isn't secure. To copy the Linux folder use this:

Code:
cp /mnt/flash/Linux ./flash

The sintax is:

Code:
cp <what> <where>


Also how do I carry out installations of files that end with extension .tgz

Uncompress the file:

Code:
tar -xvzf package.tgz

Then read the README file which contains the installation instructions, but most often you have to use these commands:

Code:
./configure
make
sudo make install


Also how do I unmount my flash...you didn't reply before...

I answered your question. Look at my last post.
----
[Original] [Print] [Top]
Subject: Re: USB Flash drive 2.0 problem on Red hat 9.xxxx
Author: Dukelord    Posted: 2006-11-26 11:29:30    Length: 536 byte(s)
[Original] [Print] [Top]
[mavor@localhost mavor]$ ls /mnt/flash
Linux  Linux for dummies.pdf  ntfs-3g-0.20061115-BETA.tgz
[mavor@localhost mavor]$ cp /mnt/flash/Linux ./flash
cp: omitting directory `/mnt/flash/Linux'
[mavor@localhost mavor]$


Still the same problem....

I used a run command and still no luck. Sad

Pls recheck your last post...you didn't post the command for unmount...Thank you.
[Original] [Print] [Top]
Subject: Re: USB Flash drive 2.0 problem on Red hat 9.xxxx
Author: erdsiger    Posted: 2006-11-26 12:40:27    Length: 1,339 byte(s)
[Original] [Print] [Top]
[mavor@localhost mavor]$ cp /mnt/flash/Linux ./flash
cp: omitting directory `/mnt/flash/Linux'

Use the cp -r command, so

Code:
cp -r /mnt/flash/Linux ./flash

Pls recheck your last post...you didn't post the command for unmount...

I wrote this:

How can I unmount the flash?I use the following command.....unmount /mnt/sda and it tells me that the command it unrecognisable?

Not unmount, just umount.
----
[Original] [Print] [Top]
Subject: Re: USB Flash drive 2.0 problem on Red hat 9.xxxx
Author: Dukelord    Posted: 2006-11-26 13:11:30    Length: 155 byte(s)
[Original] [Print] [Top]
Thank you so much.I really appreciate your patience.take care Wink
[Original] [Print] [Top]
« Previous thread
ATI Mobility Radeon Xpress 200M problem on Redhat 9.xx
Linux Laptops Support
Page. 1
Next thread »
Could anybody please Help me I am new to Linux world.
     

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:59:24, cost 0.030709028244019 ms.