LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 04-06-2003, 06:12 PM   #1
hamster
Member
 
Registered: Apr 2003
Location: Waterford, Ireland
Distribution: Mandrivia 2006.1, Ubuntu 7.10
Posts: 188

Rep: Reputation: 30
Trying to mount USB MP3 storage key (128Mb)


I have tried successfully to mount several drives....but I'm trying to mount a USB 1.1 Mp3 player I have. It's a RCA Lyra with 128Mb onboard.

I made a mount point at /mnt/usbkey.

I'm simply trying to mount it as:

mount /dev/ttyUSB1 /mnt/usbkey -t vfat -r

The problem is that I don't know which one in /dev/usb/.... should be used... there are loads , ie ttyUSB0, dausbb1 etc...

I know the 128Mb is FAT 16 on the player... so I gave it vfat.

It must be the /dev/xxx part that is throwing it off ?

Anyone with any ideas? Or maybe some other way to "proc" it?
I tried rebooting to see if it would spot it but nope. Also the players shows me "connected" when it is plugged in (good).

*** Oops. I better say I have RH8 kernel 2.4.18-14.


Last edited by hamster; 04-06-2003 at 06:28 PM.
 
Old 04-06-2003, 07:14 PM   #2
michaelk
Moderator
 
Registered: Aug 2002
Posts: 26,801

Rep: Reputation: 6333Reputation: 6333Reputation: 6333Reputation: 6333Reputation: 6333Reputation: 6333Reputation: 6333Reputation: 6333Reputation: 6333Reputation: 6333Reputation: 6333
If your device is considered a USB mass storage device it will be /dev/sda1. You can check the RH hardware GUI to confirm. If you still can't mount check the output of /sbin/lsmod to see if all of the USB modules are being loaded.
usbcore
usb-uhci
scsi_mod
usb-storage
 
Old 04-06-2003, 07:17 PM   #3
hamster
Member
 
Registered: Apr 2003
Location: Waterford, Ireland
Distribution: Mandrivia 2006.1, Ubuntu 7.10
Posts: 188

Original Poster
Rep: Reputation: 30
Michaelk,

Thanks for that. I'll give it a whirl and let ya know how I get on... dum-dum-dee.....
 
Old 04-06-2003, 07:23 PM   #4
hamster
Member
 
Registered: Apr 2003
Location: Waterford, Ireland
Distribution: Mandrivia 2006.1, Ubuntu 7.10
Posts: 188

Original Poster
Rep: Reputation: 30
Oh yes...this looks good...

in the hardware browser I can see:

/dev/sda...

sda1 1 1022 122 FAT

That 122 is referring to the 128Mb internal memory. Hope it mounts... oh much goodness!
 
Old 04-06-2003, 07:41 PM   #5
hamster
Member
 
Registered: Apr 2003
Location: Waterford, Ireland
Distribution: Mandrivia 2006.1, Ubuntu 7.10
Posts: 188

Original Poster
Rep: Reputation: 30
michaelk,

The browser also told me the name of player too! Cool!

All named modules are loaded.

So I did a mount:

mount /dev/sda1 /mnt/usbkey -t usbfs -rw

Ok. so I "cd /mnt/usbkey"...
ls and I get:
001 (dir) 002 (dir) devices drivers

hmmm?

cd 001
001 and 003 again (cat these and it tries to xterm)

If I cat the "devices" file above I get this in the output:

S: Manufacturer=Thomson multimedia Inc.
S: Product=RCA RD1080 Personal Digital Player



T: Bus=02 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#= 1 Spd=12 MxCh= 2
B: Alloc= 0/900 us ( 0%), #Int= 0, #Iso= 0
D: Ver= 1.00 Cls=09(hub ) Sub=00 Prot=00 MxPS= 8 #Cfgs= 1
P: Vendor=0000 ProdID=0000 Rev= 0.00
S: Product=USB UHCI Root Hub
S: SerialNumber=1820
C:* #Ifs= 1 Cfg#= 1 Atr=40 MxPwr= 0mA
I: If#= 0 Alt= 0 #EPs= 1 Cls=09(hub ) Sub=00 Prot=00 Driver=hub
E: Ad=81(I) Atr=03(Int.) MxPS= 8 Ivl=255ms
T: Bus=01 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#= 1 Spd=12 MxCh= 2
B: Alloc= 0/900 us ( 0%), #Int= 0, #Iso= 0
D: Ver= 1.00 Cls=09(hub ) Sub=00 Prot=00 MxPS= 8 #Cfgs= 1
P: Vendor=0000 ProdID=0000 Rev= 0.00
S: Product=USB UHCI Root Hub
S: SerialNumber=1800
C:* #Ifs= 1 Cfg#= 1 Atr=40 MxPwr= 0mA
I: If#= 0 Alt= 0 #EPs= 1 Cls=09(hub ) Sub=00 Prot=00 Driver=hub
E: Ad=81(I) Atr=03(Int.) MxPS= 8 Ivl=255ms
T: Bus=01 Lev=01 Prnt=01 Port=00 Cnt=01 Dev#= 3 Spd=12 MxCh= 0
D: Ver= 1.10 Cls=00(>ifc ) Sub=00 Prot=00 MxPS=64 #Cfgs= 1
P: Vendor=069b ProdID=3004 Rev= 0.01
S: Manufacturer=Thomson multimedia Inc.
S: Product=RCA RD1080 Personal Digital Player
C:* #Ifs= 1 Cfg#= 1 Atr=80 MxPwr=300mA
I: If#= 0 Alt= 0 #EPs= 2 Cls=08(stor.) Sub=06 Prot=50 Driver=usb-storage
E: Ad=02(O) Atr=02(Bulk) MxPS= 64 Ivl=0ms
E: Ad=81(I) Atr=02(Bulk) MxPS= 64 Ivl=0ms


May I need to alter the mount some how? surely must be usbfs
 
Old 04-06-2003, 07:52 PM   #6
hamster
Member
 
Registered: Apr 2003
Location: Waterford, Ireland
Distribution: Mandrivia 2006.1, Ubuntu 7.10
Posts: 188

Original Poster
Rep: Reputation: 30
Wahey!

Have it!

Should be:
mount /dev/sda1 /mnt/usbkey -t vfat -rw

instead of mount /dev/sda1 /mnt/usbkey -t usbfs -rw.


Ok, My thompson usb 128Mb Lyca player is set up as follows:

1. mkdir /mnt/usbkey
2. mount /dev/sda1 /mnt/usbkey -t vfat -rw

cool! Thanks michaelk! Great Help! Another conquest!

Btw, this player encodes .mp3 as .mpy. Basically a header that scrambles the .mp3 just in case I might d/l onto someone's machine later. Sheeesh! But that's Musicmatch/Lyca for you.

Last edited by hamster; 04-06-2003 at 07:55 PM.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
USB drive not working properly, read only device? (USB key storage device) Arodef Linux - Hardware 14 01-01-2010 07:32 AM
Mounting the Rio MP3 Player as USB Storage Device? apachedude Linux - Hardware 4 12-31-2007 11:39 PM
Cannot mount usb storage under 2.6.9 stelmed Slackware 6 12-12-2004 08:34 AM
Ultra USB Flash Disk+MP3 128MB cinnamonq Linux - Hardware 6 12-08-2004 11:57 AM
USB Drive \ Mp3 + USB Storage imonfya Linux - Hardware 2 07-09-2004 10:54 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 11:37 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration