From owner-freebsd-questions Sun Jan 19 14:24:41 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id OAA21579 for questions-outgoing; Sun, 19 Jan 1997 14:24:41 -0800 (PST) Received: from onyx.interactive.net (root@onyx.interactive.net [208.192.224.6]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id OAA21570 for ; Sun, 19 Jan 1997 14:24:36 -0800 (PST) Received: from luddite.org (host016.madison.interactive.net [208.192.224.116]) by onyx.interactive.net (8.8.4/8.8.4) with ESMTP id RAA10411 for ; Sun, 19 Jan 1997 17:24:28 -0500 (EST) Received: (from sachs@localhost) by luddite.org (8.8.3/8.7.3) id RAA00554; Sun, 19 Jan 1997 17:24:28 -0500 (EST) To: questions@FreeBSD.org Subject: moved hd from 2 to 0; /etc/fstab & partition names X-Face: +i14.(3OL6caXxAJslm\+OS:-ckkfx6J6UzO>df-4b#2+d{+TH;5DC9Nc1Z7'1>s^AZ"HG7 Av0@MtZ81SyDECC9S"PEo%s"dY4&Hud:w!PjnmT,FL2Sv(5oI7Y"l;|1rf:^'n$Ghg~?x3hanxCg"N ))JT[Ja%$#"Ou)FSb(2#e3*\xq{R;b]Ur8$!%w~t4|q@<_xKd??D~Zf(r! p#GC$,Cdm:$OdYL&B!;V%Ei^{N)96)[{pWI{@{ZsEn%oMxJ><(7-!YJ\`fx From: Jay Sachs Date: 19 Jan 1997 17:24:25 -0500 Message-ID: <87d8v1s3qd.fsf@luddite.org> Lines: 39 X-Mailer: Red Gnus v0.80/XEmacs 19.14 Sender: owner-questions@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk I was running FreeBSD off of my third IDE hd, i.e. wd2. /etc/fstab looked like this: /dev/wd2s2b none swap sw 0 0 /dev/wd2a / ufs rw 1 1 /dev/wd2s2f /usr ufs rw 1 1 /dev/wd2s2e /var ufs rw 1 1 proc /proc procfs rw 0 0 hd 1 died, so I switched stuff around so that the FreeBSD disk is now disk 0. I knew I'd have to adjust /etc/fstab after that. So I booted up w/ the fixit disk, and adjust fstab to look like this: /dev/wd0s2b none swap sw 0 0 /dev/wd0a / ufs rw 1 1 /dev/wd0s2f /usr ufs rw 1 1 /dev/wd0s2e /var ufs rw 1 1 proc /proc procfs rw 0 0 Well, turns out there's no devices named wd0s2b, wd0s2f, wd0s2e. Not sure what to do, and noticing there were devices wd0b, wd0e, wd0f, I switched fstab to be: /dev/wd0b none swap sw - - /dev/wd0a / ufs rw 1 1 /dev/wd0f /usr ufs rw 1 1 /dev/wd0e /var ufs rw 1 1 proc /proc procfs rw 0 0 Things seem to be working fine. I just wonder if I'm asking for trouble in the future (if so, what do I do to get the partition names in /dev?), or if having different names matters at all. If it makes any difference, there is a DOS FAT partition in front of the UFS partition. -jay