Most interesting question
fstab to be honest I don't understand what
fstab really does I can't remember how long ago it is I looked in it.
I think it was back in my very first Linux months (2006?) I found that if I did not update fstab I don't think I would see available drives. I can't remember how important fstab was in PCLOS2007. Later on it just didn't seem to matter, Konqueror and now Dolphin show available drives and I click on them to mount them as I want them.
Perhaps I have found a use for fstab now

, well here is the fstab for my normal booting partition (running that at the moment), /dev/sda2:
[root@localhost gert]# cat /etc/fstab
# Entry for /dev/sda2 :
UUID=54d9096f-9f73-44a0-bd07-903c7a10c4c9 / ext4 defaults 1 1 < ---------------- /dev/sda2 LABEL=minime2010
none /proc proc defaults 0 0
# Entry for /dev/sda6, this is the common KDE and KDE-mini and others swap file :
UUID=061c4ede-3435-4b06-8be5-e07ba90e2191 swap swap defaults 0 0 < ------------------ /dev/sda6 LABEL=swap4000
# Entry for /dev/sdc6 another swap file, this is on USB465 ext drive :
UUID=6fdbb9bb-f52e-4f56-8c4b-844de0960066 swap swap defaults 0 0 < ---------------- /dev/sdc6 LABEL= "has no label" system on USB hardrive (cleaned out)
none /dev/pts devpts defaults 0 0
[root@localhost gert]#
Above annotations made from, check against content of
blkid I have deleted the other 50 lines, gets a bit overwhelming
[root@localhost there]# blkid
/dev/sda2: LABEL="minime2010" UUID="54d9096f-9f73-44a0-bd07-903c7a10c4c9" TYPE="ext4"
..
..
/dev/sda6: LABEL="swap4000" UUID="061c4ede-3435-4b06-8be5-e07ba90e2191" TYPE="swap"
..
..
/dev/sdc6: UUID="6fdbb9bb-f52e-4f56-8c4b-844de0960066" TYPE="swap"
Hmmm I am starting to see where this is leading, the copy of
/dev/sda2 now sitting on
/dev/sdb12 will of course have the identical fstab, let me just check.
I have a bit of Old-Polack leftover in the filesystem, getting to a de facto stage I use the likely to exist already
/here (yes it does /here and /there)
[root@localhost ~]# cat /here/etc/fstab
# Entry for /dev/sda2 :
UUID=54d9096f-9f73-44a0-bd07-903c7a10c4c9 / ext4 defaults 1 1
none /proc proc defaults 0 0
# Entry for /dev/sda6, this is the common KDE and KDE-mini and others swap file :
UUID=061c4ede-3435-4b06-8be5-e07ba90e2191 swap swap defaults 0 0
# Entry for /dev/sdc6 another swap file, I think it is on the second hard drive :
UUID=6fdbb9bb-f52e-4f56-8c4b-844de0960066 swap swap defaults 0 0
none /dev/pts devpts defaults 0 0
[root@localhost ~]#
Well that of course explains why a KDE-mini copy on
/dev/sdb12 appears to have mounted /dev/sda2 on /
When you look at a boot stanza where is the link to
fstab when I accidentally did following, a little light showed up in my brain, fstab is needed?
[root@localhost gert]# mount /dev/sdb12
mount: can't find /dev/sdb12 in /etc/fstab or /etc/mtab
[root@localhost gert]#
Has something new been introduced whereby Konqueror and Dolphin and

will show available drives (not mounted drives) and I can/do use Konqueror to
mount and
umount my drives. When it gets messy with loosing track of what drives are mounted I do a quick
umount -a and begin all over. I think I might see what I have of Old-Polack information saved some where.