I have two WD 250GB SATA hard drives in a freshly installed debian
unstable on an AMD Opteron.  The jumper diagrams on the HD indicated
there is no need to configure them in master slave.  When I boot, I
get the following from dmesg


scsi3 : sata_sil
  Vendor: ATA       Model: WDC WD2500JD-00G  Rev: 02.0
  Type:   Direct-Access                      ANSI SCSI revision: 05
  Vendor: ATA       Model: WDC WD2500JD-00G  Rev: 02.0
  Type:   Direct-Access                      ANSI SCSI revision: 05
Attached scsi disk sda at scsi0, channel 0, id 0, lun 0
Attached scsi disk sdb at scsi1, channel 0, id 0, lun 0
SCSI device sda: 488397168 512-byte hdwr sectors (250059 MB)
Partition check:
 /dev/scsi/host0/bus0/target0/lun0: p1 p2 < p5 >
SCSI device sdb: 488397168 512-byte hdwr sectors (250059 MB)
 /dev/scsi/host1/bus0/target0/lun0:
Journalled Block Device driver loaded


It looks wrong that both have the same scsi channel, id and lun

If I mount /archive with the following in /etc/fstab

/dev/sdb1       /archive               ext3    defaults,errors=remount-ro 0    1

The contents of /archive are clearly the same as /dev/sda, which is
where /boot, /home, /etc, etc... live.

How do I instruct linux to view these as different drives?

JDH


[EMAIL PROTECTED]:~$ cat /etc/fstab
# /etc/fstab: static file system information.
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
proc            /proc           proc    defaults        0       0
/dev/sda1       /               ext3    defaults,errors=remount-ro 0       1
/dev/sda5       none            swap    sw              0       0
/dev/hda        /media/cdrom0   iso9660 ro,user,noauto  0       0
/dev/fd0        /media/floppy0  auto    rw,user,noauto  0       0
/dev/sdb1       /archive               ext3    defaults,errors=remount-ro 0   1

[EMAIL PROTECTED]:~$ sudo ls -d /*
/archive  /cdrom  /home        /lib         /mnt   /root  /sys  /var
/bin      /dev    /initrd      /lost+found  /opt   /sbin  /tmp  /vmlinuz
/boot     /etc    /initrd.img  /media       /proc  /srv   /usr

[EMAIL PROTECTED]:~$ sudo mount /archive/

[EMAIL PROTECTED]:~$ sudo ls -d /archive/*
/archive/archive  /archive/home        /archive/mnt   /archive/sys
/archive/bin      /archive/initrd      /archive/opt   /archive/tmp
/archive/boot     /archive/initrd.img  /archive/proc  /archive/usr
/archive/cdrom    /archive/lib         /archive/root  /archive/var
/archive/dev      /archive/lost+found  /archive/sbin  /archive/vmlinuz
/archive/etc      /archive/media       /archive/srv

_______________________________________________
Bits mailing list
[email protected]
http://www.sugoi.org/mailman/listinfo/bits

Reply via email to