LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 07-24-2005, 01:05 PM   #1
Davidian1024
Member
 
Registered: Jun 2004
Location: Cleveland, Ohio, USA
Distribution: LFS
Posts: 35

Rep: Reputation: 15
USB MP3 Player driver=(none)


I have a Gateway MP3 Photo Jukebox and I am trying to use it under Linux. When I connect it I can see it's entry in /proc/bus/usb/devices.
Code:
T:  Bus=01 Lev=01 Prnt=01 Port=01 Cnt=01 Dev#=  3 Spd=480 MxCh= 0
D:  Ver= 2.00 Cls=00(>ifc ) Sub=00 Prot=00 MxPS=64 #Cfgs=  1
P:  Vendor=1460 ProdID=2116 Rev= 0.01
S:  Manufacturer=Tatung Co.
S:  Product=Gateway MP3 Photo Jukebox
S:  SerialNumber=1f00045a-00100000-02007e00-007a003f-00001000
C:* #Ifs= 1 Cfg#=128 Atr=c0 MxPwr=  0mA
I:  If#= 0 Alt= 0 #EPs= 3 Cls=ff(vend.) Sub=ff Prot=ff Driver=(none)
E:  Ad=01(O) Atr=02(Bulk) MxPS= 512 Ivl=0ms
E:  Ad=82(I) Atr=02(Bulk) MxPS= 512 Ivl=0ms
E:  Ad=81(I) Atr=03(Int.) MxPS= 512 Ivl=1ms
The problem I notice is that it has no driver. I'm not sure but I believe it is a usb-storage device. Is there a way to tell Linux to use the usb-storage driver with this device?
 
Old 07-24-2005, 01:23 PM   #2
Half_Elf
LQ Guru
 
Registered: Sep 2001
Location: Montreal, Canada
Distribution: Slackware; Debian; Gentoo...
Posts: 2,163

Rep: Reputation: 46
linux detect it by itself usually.
Once you pluged it, type "dmesg". This is the kernel logging. You should see a line like "new USB device found" saying something about "storage allocated to device /dev/sda1" (or something similar, I don't have usb drive to try anymore).
Then just mount it ( mount /dev/sda1 /mnt/where/you/want/it .. according "sda1" is the device found of course) and it will be accessible. USB storage is very well supported usually

NB : double posting is EVIL

Last edited by Half_Elf; 07-24-2005 at 01:26 PM.
 
Old 07-24-2005, 01:30 PM   #3
Davidian1024
Member
 
Registered: Jun 2004
Location: Cleveland, Ohio, USA
Distribution: LFS
Posts: 35

Original Poster
Rep: Reputation: 15
This is what I get from dmesg:
Code:
usb 1-2: new high speed USB device using ehci_hcd and address 9
I have a usb memory key that is a usb-storage device. It acts more like what you just mentioned. This one however does not appear to be associated with any driver. That is why I mentioned the 'Driver=(none)' line from /proc/usb/bus/devices.
 
Old 07-24-2005, 01:31 PM   #4
Half_Elf
LQ Guru
 
Registered: Sep 2001
Location: Montreal, Canada
Distribution: Slackware; Debian; Gentoo...
Posts: 2,163

Rep: Reputation: 46
there is no line past this one?
 
Old 07-24-2005, 01:32 PM   #5
Davidian1024
Member
 
Registered: Jun 2004
Location: Cleveland, Ohio, USA
Distribution: LFS
Posts: 35

Original Poster
Rep: Reputation: 15
Nope, that's it.
 
Old 07-24-2005, 01:33 PM   #6
johnson_steve
Senior Member
 
Registered: Apr 2005
Location: BrewCity, USA (Milwaukee, WI)
Distribution: Xubuntu 9.10, Gentoo 2.6.27 (AMD64), Darwin 9.0.0 (arm)
Posts: 1,152

Rep: Reputation: 46
it probably allready does. just mount it. plug it in and run dmesg it should tell you what device it is (my ipod is /dev/sda and the music is on the third partition so I mount /dev/sda3) this is my fstab entry for my ipod:

Code:
/dev/sda3               /mnt/iPod       hfsplus         users,rw,noauto        0  0
I haven't used a gateway player but I have used a couple other players. my brothers el-cheapo 128Mb usb mp3 player (kindof looks like a shuffle rip off) just plugged it in mounted it copied a bunch of my .mp3 songs to it. it worked just fine. the ipod is a weird one and you can't just copy the songs to it but you have to update a database on the ipod or it cant find the songs you add so you need special software. but your player will probably be just drag and drop put the songs on it and it works as this is how every player that I ever used (other then iPods) worked
 
Old 07-24-2005, 01:33 PM   #7
Half_Elf
LQ Guru
 
Registered: Sep 2001
Location: Montreal, Canada
Distribution: Slackware; Debian; Gentoo...
Posts: 2,163

Rep: Reputation: 46
ok, obliviously there is missing something
What's your distribution and your kernel?

Try "modprobe usb-storage" and see if it does any good
 
Old 07-24-2005, 01:41 PM   #8
Davidian1024
Member
 
Registered: Jun 2004
Location: Cleveland, Ohio, USA
Distribution: LFS
Posts: 35

Original Poster
Rep: Reputation: 15
Distribution: LFS
Kernel 2.6.10

usb-storage is already loaded and works fine with my keychain usb flash drive. I mount this through /dev/sdb1 and /dev/sdb2. /dev/sda is my main hard drive that Linux is installed on. I've tried doing things like:

fdisk /dev/sdc
mount /dev/sdc1

I still think the problem lies with that 'Driver=(none)' line in /proc/bus/usb/devices. My keychain flash drive has 'Driver=usb-storage'.

Last edited by Davidian1024; 07-24-2005 at 02:17 PM.
 
Old 07-24-2005, 03:53 PM   #9
Half_Elf
LQ Guru
 
Registered: Sep 2001
Location: Montreal, Canada
Distribution: Slackware; Debian; Gentoo...
Posts: 2,163

Rep: Reputation: 46
strange, it's like your kernel doesn't think usb-storage is the driver to use... maybe this jukebox device is a bit weird? My guess would be to recompile the kernel by hand and to add all "optionnal" feature about USB-storage (all support for weird media, support for flash card, support for "gadget" usb-storage, ...) maybe it could do some goods :s
 
  


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 mp3 player trawler Linux - Hardware 7 10-14-2005 05:56 PM
USB MP3 Player driver=(none) Davidian1024 Linux - Hardware 2 07-24-2005 01:31 PM
MP3 Player Driver aznboi12321 Linux - Software 3 03-06-2005 03:31 AM
usb-mp3 player godders48 Mandriva 3 10-01-2003 09:24 PM
USB Mp3 Player jmc_z28 Linux - Hardware 2 08-19-2003 09:28 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 06:26 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