i'm facing a weird problem. I have an external USB disk (with independent AC power) attached to a Raspberry B model. I'm using this disk with Minidlna and Torrent.
In normal conditions external disk is mapped to /dev/sda and i have a static entry in /etc/fstab to mount the disk at boot time:
/dev/sda1 /media/share ext3 defaults 0 0
With "parted -l" i have this output:
Code: Select all
> root@raspberrypi ~ # parted -l
> Model: WDC WD10 EARS-00Y5B1 (scsi)
> Disk /dev/sda: 1000GB
> Sector size (logical/physical): 512B/512B
> Partition Table: msdos
>
> Number Start End Size Type File system Flags
> 1 1049kB 1000GB 1000GB primary ext3
>
>
> Model: SD SD16G (sd/mmc)
> Disk /dev/mmcblk0: 16.0GB
> Sector size (logical/physical): 512B/512B
> Partition Table: msdos
>
> Number Start End Size Type File system Flags
> 1 4194kB 62.9MB 58.7MB primary fat16 lba
> 2 62.9MB 16.0GB 15.9GB primary ext4
Code: Select all
root@raspberrypi ~ # parted -l
Model: WD My Passport 0820 (scsi)
Disk /dev/sda: 2000GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Number Start End Size File system Name Flags
1 20.5kB 210MB 210MB fat32 EFI System Partition boot
2 211MB 1500GB 1500GB exFAT
3 1500GB 2000GB 500GB hfsx TimeMachine
Model: WDC WD10 EARS-00Y5B1 (scsi)
Disk /dev/sdb: 1000GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Number Start End Size Type File system Flags
1 1049kB 1000GB 1000GB primary ext3
Model: SD SD16G (sd/mmc)
Disk /dev/mmcblk0: 16.0GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Number Start End Size Type File system Flags
1 4194kB 62.9MB 58.7MB primary fat16 lba
2 62.9MB 16.0GB 15.9GB primary ext4
Is there a way to fix this behaviour?
Thank you