Ok.
Here is fdisk output:
Disk /dev/hda: 255 heads, 63 sectors/track, 2481 cylinders
Units: cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/hda1 * 1 13 104391 83 Linux
/dev/hda2 14 2449 19567170 83 Linux
/dev/hda3 2450 2481 257040 82 Linux swap
Disk /dev/hdd: 16 heads, 63 sectors, 39535 cylinders
Units: cylinders of 1008 * 512 bytes
Device Boot Start End Blocks Id System
/dev/hdd1 * 1 107 53465+ 83 Linux
Partition 1 does not end on cylinder boundary:
phys=(6,168,20) should be (6,15,63)
/dev/hdd2 107 10514 5245355+ 83 Linux
Partition 2 does not end on cylinder boundary:
phys=(659,172,34) should be (659,15,63)
/dev/hdd3 10514 15714 2620620 83 Linux
Partition 3 does not end on cylinder boundary:
phys=(985,236,52) should be (985,15,63)
/dev/hdd4 15714 39525 12001126+ 85 Linux extended
Partition 4 does not end on cylinder boundary:
phys=(1023,254,63) should be (1023,15,63)
/dev/hdd5 15714 20913 2620604 83 Linux
/dev/hdd6 20913 22931 1016992+ 83 Linux
/dev/hdd7 22931 25013 1049050 83 Linux
/dev/hdd8 25013 27094 1049050 83 Linux
/dev/hdd9 27094 29118 1020088+ 82 Linux swap
/dev/hdd10 29118 39525 5245338+ 83 Linux
If I go to repair filesystem mode and read the fstab:
(Repair filesystem)1# cat fstab
LABEL=/ / ext3 defaults 1 1
/dev/hda10 /var jfs defaults,rw,nosuid,nodev 1 2
LABEL=/boot /boot ext3 defaults,rw,nosuid,nodev,noexec 1 2
LABEL=/cache /cache ext3 defaults,rw,nosuid,nodev,noexec 1 2
none /dev/pts devpts gid=5, mode=620 0 0
LABEL=/home /home ext3 defaults, rw, nosuid, nodev, noexec, usrquota, grpquota 1 2
none /proc proc defaults 0 0
none /dev/shm tmpfs defaults 0 0
LABEL=/tmp /tmp ext3 defaults,rw nosuid,nodev 1 2
LABEL=/var/spool/mail /var/spool/mail ext3 defaults, rw, nosuid, nodev, noexec, usrquota, grpquota 1 2
LABEL=/var/spool/mqueu /var/spool/mqueue ext3 defaults, rw, nosuid, nodev, 1 2
/dev/hda9 swap swap defaults 0 0
/dev/cdrom /mnt/cdrom iso9660 noauto, owner, kudzu, ro 0 0
/dev/fd0 /mnt/floppy auto noauto, owner, kudzu 0 0
But if I connect only the 1st disk, fstab is like this:
LABEL=/ / ext3 defaults 1 1
LABEL=/boot /boot ext3 defaults 1 2
none /dev/pts devpts gid=5,mode=620 0 0
none /proc proc defaults 0 0
none /dev/shm tmpfs defaults 0 0
/dev/hda3 swap swap defaults 0 0
I'm going to read the HOWTO paper!
Thanks.