Re: cant mount usb disk



Hello,

dmesg
[code]
.........
Attached scsi removable disk sdb at scsi2, channel 0, id 0, lun 0
SCSI device sdb: 512000 512-byte hdwr sectors (262 MB)
sdb: Write Protect is off
/dev/scsi/host2/bus0/target0/lun0: unknown partition table
WARNING: USB Mass Storage data integrity not assured
USB Mass Storage device found at 4
.........
[/code]

You should find the partition table at:
/dev/scsi/host2/bus0/target0/lun0/disc

[code]
# mount -t ext3 /dev/scsi/host1/bus0/target0/lun0/disc /mnt/usb
mount: wrong fs type, bad option, bad superblock on
/dev/scsi/host1/bus0/target0
/lun0/disc,
or too many mounted file systems
[/code]

You have to mount the specific partition, i.e. something like:
mount -t ext3 /dev/scsi/host1/bus0/target0/lun0/part1 /mnt/usb

the usb disk had been formated to ext3, and the kernel supports ext3

Sure, but you have to find the partition at the first sector of the whole
disc (.../lun0/disc) and inside this partition table the partitions are
declared; you have to mount them and not the disc.
But, of course, you could get rid of the partition table and use the whole
usb stick/disk as a single partition. But that is not compatible in the PC
world at all, as every usb storage device must have a partition (even if
there's only one partition).

Regards,
Sebastian


.



Relevant Pages

  • HELP: External 250G USB screwed with GParted
    ... reformatted the partition with NTFS with Windows XP). ... Jan 19 12:19:37 localhost kernel: Initializing USB Mass Storage driver... ... cache: write through ...
    (Fedora)
  • 2.6.25: usb-storage unknown partition table issue
    ... i have a 8GB usb pen with several problem due to partition table. ... if i create a primary one with fdisk, then format it works ok. ... Initializing USB Mass Storage driver... ... usb-storage: waiting for device to settle before scanning ...
    (Linux-Kernel)
  • Re: usb stick and ext3?
    ... The USB mass storage devices that are contained inside digital cameras ... and repatition your digital camera's file system, ... create an Ext3 file system in a second partition. ...
    (comp.os.linux.misc)
  • Re: usb-storage: how to ruin your hardware(?)
    ... For the vast majority of USB storage devices, it's not possible to kill the ... The 'strange partition table' you saw probably wasn't a partition ... USB Mass Storage data integrity not assured ...
    (Linux-Kernel)
  • Re: cant mount usb disk
    ... USB Mass Storage data integrity not assured ... |> USB Mass Storage device found at 4 ... | You have to mount the specific partition, ...
    (comp.os.linux.embedded)