LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 08-17-2007, 02:06 PM   #1
Barnes
Member
 
Registered: Jun 2007
Location: Halifax, NS, Canada
Distribution: Debian
Posts: 30

Rep: Reputation: 15
Question Mounting iRiver T30


I'm trying to mount my iRiver T30 so I can actually use it.
I'm running Debian Etch, and so far I've tried as su:

# mkdir /media/iriver
# mount -t vfat /dev/sda /media/iriver

what it seems to do is mirror my hardrive at the location /media/iriver

Any suggestions?

When I do get this working properly, what would be a good program to move mp3's on to my T30?

Thanks in advance,
Barnes
 
Old 08-17-2007, 02:10 PM   #2
Nylex
LQ Addict
 
Registered: Jul 2003
Location: London, UK
Distribution: Slackware
Posts: 7,464

Rep: Reputation: Disabled
Do you have an SATA hard drive? Do you know for sure that the kernel is referring to your device as /dev/sda? See what dmesg says. Also, you need to mount partitions, e.g. /dev/sda1 and not /dev/sda. Edit, as for moving stuff to your device, well there's mv or cp!
 
Old 08-19-2007, 10:14 AM   #3
Barnes
Member
 
Registered: Jun 2007
Location: Halifax, NS, Canada
Distribution: Debian
Posts: 30

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by Nylex View Post
Do you have an SATA hard drive? Do you know for sure that the kernel is referring to your device as /dev/sda? See what dmesg says. Also, you need to mount partitions, e.g. /dev/sda1 and not /dev/sda. Edit, as for moving stuff to your device, well there's mv or cp!
I do have a SATA hard drive. I did dmesg, but I'm not sure what I'm looking for?

Barnes.
 
Old 08-19-2007, 10:24 AM   #4
Nylex
LQ Addict
 
Registered: Jul 2003
Location: London, UK
Distribution: Slackware
Posts: 7,464

Rep: Reputation: Disabled
You should see lines relating to your device after plugging it in. Post the last ~ 10-15 lines of the output here.
 
Old 08-19-2007, 02:52 PM   #5
Barnes
Member
 
Registered: Jun 2007
Location: Halifax, NS, Canada
Distribution: Debian
Posts: 30

Original Poster
Rep: Reputation: 15
Here are the last few lines:

ACPI: Power Button (FF) [PWRF]
ACPI: Power Button (CM) [VBTN]
lp: driver loaded but no devices found
ppdev: user-space parallel port driver
NET: Registered protocol family 10
lo: Disabled Privacy Extensions
IPv6 over IPv4 tunneling driver
[drm] Initialized drm 1.0.1 20051102
ACPI: PCI Interrupt 0000:00:02.0[A] -> GSI 16 (level, low) -> IRQ 169
[drm] Initialized i915 1.5.0 20060119 on minor 0
eth0: no IPv6 routers present
usb 3-1: new full speed USB device using uhci_hcd and address 2
usb 3-1: device descriptor read/64, error -71
usb 3-1: device descriptor read/64, error -71
usb 3-1: new full speed USB device using uhci_hcd and address 3
usb 3-1: device descriptor read/64, error -71
usb 3-1: device descriptor read/64, error -71
usb 3-1: new full speed USB device using uhci_hcd and address 4
usb 3-1: device not accepting address 4, error -71
usb 3-1: new full speed USB device using uhci_hcd and address 5
usb 3-1: device not accepting address 5, error -71
 
Old 08-19-2007, 11:42 PM   #6
Nylex
LQ Addict
 
Registered: Jul 2003
Location: London, UK
Distribution: Slackware
Posts: 7,464

Rep: Reputation: Disabled
Is there no more output?
 
Old 08-20-2007, 06:16 PM   #7
Barnes
Member
 
Registered: Jun 2007
Location: Halifax, NS, Canada
Distribution: Debian
Posts: 30

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by Nylex View Post
Is there no more output?
There is lots more output. I'd venture to say at least 100 lines. But those are the last few lines. It's a bit much to post here I think.
 
Old 08-21-2007, 12:12 AM   #8
Nylex
LQ Addict
 
Registered: Jul 2003
Location: London, UK
Distribution: Slackware
Posts: 7,464

Rep: Reputation: Disabled
Is there nothing like

sdb: assuming drive cache: write through
sdb: sdb1
sd 2:0:0:0: Attached scsi removable disk sdb

Post your "fdisk -l" (lowercase L, not a 1).
 
Old 08-26-2007, 03:55 PM   #9
Barnes
Member
 
Registered: Jun 2007
Location: Halifax, NS, Canada
Distribution: Debian
Posts: 30

Original Poster
Rep: Reputation: 15
There's the following:

sdb: assuming drive cache: write through
sdb: sdb1 sdb2
sd 2:0:0:0: Attached scsi removable disk sdb
usb-storage: device scan complete
FAT: utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
usb 5-5: reset high speed USB device using ehci_hcd and address 4
usb 5-5: reset high speed USB device using ehci_hcd and address 4
usb 5-5: reset high speed USB device using ehci_hcd and address 4
usb 5-5: reset high speed USB device using ehci_hcd and address 4
usb 5-5: can't restore configuration #1 (error=-32)
sd 2:0:0:0: scsi: Device offlined - not ready after error recovery
sd 2:0:0:0: rejecting I/O to offline device
....
scsi3 : SCSI emulation for USB Mass Storage devices
usb-storage: device found at 5
usb-storage: waiting for device to settle before scanning
Vendor: Apple Model: iPod Rev: 1.62
Type: Direct-Access ANSI SCSI revision: 00
sd 3:0:0:0: Attached scsi removable disk sdb
usb-storage: device scan complete
NTFS driver 2.1.27 [Flags: R/W MODULE].
SGI XFS with ACLs, security attributes, realtime, large block numbers, no debug enabled
SGI XFS Quota Management subsystem
JFS: nTxBlock = 7084, nTxLock = 56674

At the time the iRiver was connected and on, plus an iPod that was charging but previously unmounted.
 
Old 09-25-2007, 01:10 AM   #10
Nylex
LQ Addict
 
Registered: Jul 2003
Location: London, UK
Distribution: Slackware
Posts: 7,464

Rep: Reputation: Disabled
Can you mount /dev/sdb1 or /dev/sdb2?
 
Old 09-25-2007, 02:19 AM   #11
dv502
Member
 
Registered: Sep 2006
Location: USA - NYC
Distribution: Whatever icon you see!
Posts: 642

Rep: Reputation: 57
try this as root, type

tail -f /var/log/messages

next, plug in your player

when you plug in the device, the kernel will append new lines pertaining to your device. Post the output ( new lines ) you get.

PS. After searching around with google. It seems this device does not use the Mass Storage protocol, like the earlier iriver models. The protocol your model uses is called MTP
which is use by windows media player.

Most of the searches recommend updating the firmware. Sometimes this helps. But be careful, updating a firmware can also be risky. If done incorrectly, the device could be inoperable.

Last edited by dv502; 09-25-2007 at 02:42 AM.
 
Old 09-25-2007, 11:34 AM   #12
samael26
Member
 
Registered: Oct 2004
Location: France, Provence
Distribution: Debian
Posts: 848

Rep: Reputation: 30
Quote:
Originally Posted by Barnes View Post

When I do get this working properly, what would be a good program to move mp3's on to my T30?

Thanks in advance,
Barnes
Amarok, Banshee, Rhythmbox

Banshee is not very good, though..
 
  


Reply



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
Mounting iRiver H340 Lordandmaker Linux - Newbie 1 01-16-2006 10:08 AM
Mounting an Iriver T30 MP3 player on Suse 10.0 newbiest_user SUSE / openSUSE 1 12-09-2005 12:22 PM
mounting iriver T30 UMS version rde Linux - Hardware 1 11-21-2005 03:29 AM
Mounting USB Mp3 player (iRiver H3XX) in Linux vharishankar Linux - General 2 02-27-2005 05:48 AM
Mounting iRiver-HP120 hanging. noble Linux - Hardware 1 07-11-2004 01:34 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

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