From: Peter Robinson on
| Hi all,

I have a 30 GB iPod that I would like to migrate to my debian box. I am
currently trying to get gtkpod running.

What is the recommended way of mounting the ipod (I am currently running
fluxbox with no automnatic mounts).

If I try to mount it as hfsplus or vfat I get an error like:

peter:/home/peter# mount -t hfsplus /dev/sdb /mnt/ipod
mount: wrong fs type, bad option, bad superblock on /dev/sdb,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so


dmesg | tail shows:

peter:/home/peter# dmesg | tail
sd 8:0:0:0: [sdb] Mode Sense: 6c 00 00 08
sd 8:0:0:0: [sdb] Assuming drive cache: write through
sdb: sdb1 sdb2
sd 8:0:0:0: [sdb] Attached SCSI removable disk
sd 8:0:0:0: Attached scsi generic sg2 type 0
hfs: unable to find HFS+ superblock
FAT: bogus logical sector size 2
VFS: Can't find a valid FAT filesystem on dev sdb.
hfs: unable to find HFS+ superblock
hfs: unable to find HFS+ superblock


Cannot find an answer in the docs, any help appreciated!

cheers, Peter



--
To UNSUBSCRIBE, email to debian-user-REQUEST(a)lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster(a)lists.debian.org
From: Sven Joachim on
On 2008-06-21 14:10 +0200, Peter Robinson wrote:

> If I try to mount it as hfsplus or vfat I get an error like:
>
> peter:/home/peter# mount -t hfsplus /dev/sdb /mnt/ipod
> mount: wrong fs type, bad option, bad superblock on /dev/sdb,
> missing codepage or helper program, or other error
> In some cases useful info is found in syslog - try
> dmesg | tail or so

This is not really surprising, since this message...

> dmesg | tail shows:
>
> peter:/home/peter# dmesg | tail
> sd 8:0:0:0: [sdb] Mode Sense: 6c 00 00 08
> sd 8:0:0:0: [sdb] Assuming drive cache: write through
> sdb: sdb1 sdb2

....shows that the device /dev/sdb is partitioned and has two primary
partitions.

> sd 8:0:0:0: [sdb] Attached SCSI removable disk
> sd 8:0:0:0: Attached scsi generic sg2 type 0
> hfs: unable to find HFS+ superblock
> FAT: bogus logical sector size 2
> VFS: Can't find a valid FAT filesystem on dev sdb.
> hfs: unable to find HFS+ superblock
> hfs: unable to find HFS+ superblock
>
>
> Cannot find an answer in the docs, any help appreciated!

Try to mount sdb1 and/or sdb2 and show the results.

Sven


--
To UNSUBSCRIBE, email to debian-user-REQUEST(a)lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster(a)lists.debian.org
From: Peter Robinson on
Sven Joachim wrote:
> On 2008-06-21 14:10 +0200, Peter Robinson wrote:
>
>
>> If I try to mount it as hfsplus or vfat I get an error like:
>>
>> peter:/home/peter# mount -t hfsplus /dev/sdb /mnt/ipod
>> mount: wrong fs type, bad option, bad superblock on /dev/sdb,
>> missing codepage or helper program, or other error
>> In some cases useful info is found in syslog - try
>> dmesg | tail or so
>>
>
> This is not really surprising, since this message...
>
>
>> dmesg | tail shows:
>>
>> peter:/home/peter# dmesg | tail
>> sd 8:0:0:0: [sdb] Mode Sense: 6c 00 00 08
>> sd 8:0:0:0: [sdb] Assuming drive cache: write through
>> sdb: sdb1 sdb2
>>
>
> ...shows that the device /dev/sdb is partitioned and has two primary
> partitions.
>
>
>> sd 8:0:0:0: [sdb] Attached SCSI removable disk
>> sd 8:0:0:0: Attached scsi generic sg2 type 0
>> hfs: unable to find HFS+ superblock
>> FAT: bogus logical sector size 2
>> VFS: Can't find a valid FAT filesystem on dev sdb.
>> hfs: unable to find HFS+ superblock
>> hfs: unable to find HFS+ superblock
>>
>>
>> Cannot find an answer in the docs, any help appreciated!
>>
>
> Try to mount sdb1 and/or sdb2 and show the results.
>
> Sven
>
>

of course, you caught me sleeping ... but I am still not sure what
filetype to specify


peter:/home/peter# mount /dev/sdb1 /mnt/ipod/
mount: you must specify the filesystem type
peter:/home/peter# dmesg | tail
sd 9:0:0:0: [sdb] Assuming drive cache: write through
sdb: sdb1 sdb2
sd 9:0:0:0: [sdb] Attached SCSI removable disk
sd 9:0:0:0: Attached scsi generic sg2 type 0
hfs: unable to find HFS+ superblock
hfs: unable to find HFS+ superblock
hfs: unable to find HFS+ superblock
hfs: unable to find HFS+ superblock
FAT: invalid media value (0x2f)
VFS: Can't find a valid FAT filesystem on dev sdb1.
peter:/home/peter#


--
To UNSUBSCRIBE, email to debian-user-REQUEST(a)lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster(a)lists.debian.org
From: David Staer on
Peter Robinson wrote:
> of course, you caught me sleeping ... but I am still not sure what
> filetype to specify

Hi

Maybe use
#fdisk -l
or gparted to work that out.

David Staer


--
To UNSUBSCRIBE, email to debian-user-REQUEST(a)lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster(a)lists.debian.org
From: Chris Bannister on
On Sat, Jun 21, 2008 at 03:41:12PM +0200, Peter Robinson wrote:
> peter:/home/peter# mount /dev/sdb1 /mnt/ipod/
> mount: you must specify the filesystem type

Try:

mount -t vfat /dev/sdb1 /mnt/ipod/

> peter:/home/peter# dmesg | tail
> sd 9:0:0:0: [sdb] Assuming drive cache: write through
> sdb: sdb1 sdb2
> sd 9:0:0:0: [sdb] Attached SCSI removable disk
> sd 9:0:0:0: Attached scsi generic sg2 type 0
> hfs: unable to find HFS+ superblock
> hfs: unable to find HFS+ superblock
> hfs: unable to find HFS+ superblock
> hfs: unable to find HFS+ superblock
> FAT: invalid media value (0x2f)
> VFS: Can't find a valid FAT filesystem on dev sdb1.
> peter:/home/peter#

--
Chris.
======
"One, with God, is always a majority, but many a martyr has been burned
at the stake while the votes were being counted." -- Thomas B. Reed


--
To UNSUBSCRIBE, email to debian-user-REQUEST(a)lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster(a)lists.debian.org