aguila:
For example, my biggest drive, with the smallest use, so far.
[root@fatman ~]# fdisk -l /dev/sdc
Disk /dev/sdc: 2000.4 GB, 2000398934016 bytes
255 heads, 63 sectors/track, 243201 cylinders, total 3907029168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x18eee7ae
Device Boot Start End Blocks Id System
/dev/sdc1 2048 2099199 1048576 83 Linux <-- boot partition, I'll have many OS
/dev/sdc2 2099200 18876415 8388608 82 Linux swap / Solaris
/dev/sdc3 18876416 81790975 31457280 83 Linux <-- / partition for 32 bit KDE
/dev/sdc4 81790976 3907029167 1912619096 5 Extended
/dev/sdc5 81793024 176164863 47185920 83 Linux <-- / partition for 64 bit KDE testing
I don't usually have a separate /home partition, instead choosing to use a number of data partitions for my personal stuff. I use one /etc/fstab for all my installations, editing only the LABEL=<whatever> of the / partition entry line, so all my data is always in the same relative place, whichever OS I boot to. For this installation my fstab looks like this;
[root@fatman ~]# cat /etc/fstab
# Entry for /dev/sdc3 :
LABEL=test2000 / ext4 defaults,noatime 1 1
LABEL=TR5-Documents /home/polack/Documents ext3 rw,user,noauto,exec,noatime 0 0
LABEL=Documents2 /home/polack/Documents2 ext3 rw,user,noauto,exec,noatime 0 0
# LABEL=share7 /share7 ext3 rw,user,noauto,exec,noatime 0 0
LABEL=share1 /share1 ext4 rw,user,auto,exec,noatime 0 0
LABEL=share9 /share9 ext3 rw,user,auto,exec,noatime 0 0
LABEL=movies /movies ext3 rw,user,auto,exec,noatime 0 0
LABEL=movies2 /movies2 ext3 rw,user,auto,exec,noatime 0 0
# LABEL=TV-1 /tv ext3 rw,user,noauto,exec,noatime 0 0
LABEL=storage00 /zstorage00 ext3 rw,user,noauto,exec,noatime 0 0
LABEL=120backup /zbackup ext3 rw,user,noauto,exec,noatime 0 0
LABEL=boot1000 /mnt/boot ext3 rw,user,noauto,exec,noatime 0 0
#LABEL=part17 /mnt/17 ext4 rw,user,noauto,exec,noatime 0 0
none /proc proc defaults 0 0
# Entry for /dev/sdc2 :
LABEL=swap2000 swap swap defaults 0 0
# Entry for /dev/sda2 :
#LABEL=swap300 swap swap defaults 0 0
# Entry for /dev/sda2 :
LABEL=swap1000 swap swap defaults 0 0
# Entry for /dev/sdb2 :
LABEL=swap750 swap swap defaults 0 0
none /dev/pts devpts mode=0620 0 0
/dev/fd0 /mnt/floppy auto rw,user,noauto,exec 0 0
/dev/cdrom /mnt/cdrom auto ro,user,noauto 0 0
/dev/dvd /mnt/dvd auto ro,user,noauto 0 0
# none /dev/shm tmpfs defaults 0 0
The fstab for the 64 bit KDE is shown below for comparison;
[root@fatman ~]# mount LABEL=test64 /mnt/here
[root@fatman ~]# cat /mnt/here/etc/fstab
# Entry for /dev/sdc5 :
LABEL=test64 / ext4 defaults,noatime 1 1
LABEL=TR5-Documents /home/polack/Documents ext3 rw,user,noauto,exec,noatime 0 0
LABEL=Documents2 /home/polack/Documents2 ext3 rw,user,noauto,exec,noatime 0 0
# LABEL=share7 /share7 ext3 rw,user,noauto,exec,noatime 0 0
LABEL=share1 /share1 ext4 rw,user,auto,exec,noatime 0 0
LABEL=share9 /share9 ext3 rw,user,auto,exec,noatime 0 0
LABEL=movies /movies ext3 rw,user,auto,exec,noatime 0 0
LABEL=movies2 /movies2 ext3 rw,user,auto,exec,noatime 0 0
# LABEL=TV-1 /tv ext3 rw,user,noauto,exec,noatime 0 0
LABEL=storage00 /zstorage00 ext3 rw,user,noauto,exec,noatime 0 0
LABEL=120backup /zbackup ext3 rw,user,noauto,exec,noatime 0 0
LABEL=boot200 /mnt/boot ext3 rw,user,noauto,exec,noatime 0 0
#LABEL=part17 /mnt/17 ext4 rw,user,noauto,exec,noatime 0 0
none /proc proc defaults 0 0
# Entry for /dev/sda2 :
LABEL=swap2000 swap swap defaults 0 0
# Entry for /dev/sda2 :
#LABEL=swap300 swap swap defaults 0 0
# Entry for /dev/sdc2 :
LABEL=swap1000 swap swap defaults 0 0
# Entry for /dev/sde2 :
LABEL=swap750 swap swap defaults 0 0
none /dev/pts devpts mode=0620 0 0
/dev/fd0 /mnt/floppy auto rw,user,noauto,exec 0 0
/dev/sr0 /mnt/cdrom auto ro,user,noauto 0 0
/dev/sr1 /mnt/dvd auto ro,user,noauto 0 0
# none /dev/shm tmpfs defaults 0 0
All of the data partitions are on other drives, (external) so don't show in the partition table for this drive. The commented entries are for partitions on a different machine, and uncommented when the external drives are attached to that machine, and one of the OS installed on the external drives is booted.