I can mount one external firewire drive. However, when I daisy-chain a second external firewire drive, I can no longer mount the first drive.
Here is how I got to this point. Both drives are 500 GB. The first drive is full, the second is new, formatted as ext3 and empty.
1. I attached the first external firewire drive. Myth recognized it as "sda1" upon reboot. I could access its files via /media. My fstab looked like:
Code:
/dev/sda1 /media/sda1 ext3 auto,users,exec 0 0
2. I then connected a second drive to the first drive, via the first drive's 2nd firewire port. I powered-on the second drive. I rebooted.
3. fdisk seems to recognize 2 external drives (sda1 and sdb1), which is a good thing
Code:
fdisk -l
Disk /dev/hda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/hda1 * 1 609 4891761 83 Linux
/dev/hda2 610 706 779152+ 82 Linux swap / Solaris
/dev/hda3 707 60801 482713087+ 83 Linux
Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 1 60801 488384001 83 Linux
Disk /dev/sdb: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sdb1 1 60801 488384001 83 Linux
4. However, the df command only shows "sda1". Coincidentally, "sda1" changed and now refers to the second (empty) drive. It seems I can no longer access the first (full) firewire drive's files.
Code:
root@mythtv:/media# df
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/hda1 4828768 2051836 2532344 45% /
/dev/hda3 482666728 152801452 329865276 32% /myth
tmpfs 256444 4 256440 1% /dev/shm
/dev/sda1 480719056 202800 456097056 1% /media/sda1
5. The following information also suggest that Myth only wants to mount one of the drives
Code:
root@mythtv:/media# cd /media
root@mythtv:/media# ls
sda1
6. When I power-off the second drive and reboot, all is normal. "sda1" now refers to the first drive again. I can access the first drive's files again. However, my goal is to daisy-chain my new second drive to the first.
:?: Question: Any advice for mounting both external firewire drives at the same time? (I'm wondering if people who use USB hubs have similar issues. I'm willing to buy a hub of some kind, but would prefer to take advantage of daisy chaining these drives)