From owner-freebsd-questions Tue Apr 22 00:05:59 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id AAA19659 for questions-outgoing; Tue, 22 Apr 1997 00:05:59 -0700 (PDT) Received: from adelphi.physics.adelaide.edu.au (adelphi.physics.adelaide.edu.au [129.127.36.247]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id AAA19654 for ; Tue, 22 Apr 1997 00:05:55 -0700 (PDT) Received: from bragg by adelphi.physics.adelaide.edu.au (5.65/AndrewR-930902) id AA32088; Tue, 22 Apr 1997 16:35:51 +0930 From: Kristian Kennaway Received: by bragg; (5.65/1.1.8.2/05Aug95-0227PM) id AA10505; Tue, 22 Apr 1997 16:35:51 +0930 Message-Id: <9704220705.AA10505@bragg> Subject: Re: Corrupted disk slice To: dwhite@resnet.uoregon.edu Date: Tue, 22 Apr 1997 16:35:51 +0930 (CST) Cc: freebsd-questions@freebsd.org In-Reply-To: from "Doug White" at Apr 21, 97 07:15:14 pm X-Mailer: ELM [version 2.4 PL23] Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > > [morden] 0:33 ~ mount -t ufs /dev/wd1s4e /usr2 > > > > /dev/wd1s4e on /usr2: Incorrect super block. > > It's trying to mount a DOS logical disk in an extended partition. Make > sure that /etc/fstab records this filesystem as a 'msdos' type FS. No, /usr2 is my bsd partition which I keep my source code/ports tree, living on wd1s4. wd1s3e is my /home, also a bsd slice This is the relevant section from disklabel -r /dev/rwd1s3 8 partitions: # size offset fstype [fsize bsize bps/cpg] b: 92032 0 swap # (Cyl. 0 - 11*) c: 911232 0 unused 0 0 # (Cyl. 0 - 112) e: 819200 92032 4.2BSD 0 0 0 # (Cyl. 11*- 112*) This is the mount output of the filesystems I have mounted /dev/wd0a on / (local) /dev/wd0s2f on /usr (local) /dev/wd0s2e on /var (local) procfs on /proc (local) /dev/wd1s3e on /home (local) /dev/wd1s1 on /d (local) /dev/wd1s5 on /e (local) wd1s1 and wd1s5 are msdos filesystems..not sure where wd1s2 is, but thats the way it was set up and it's worked for the past few months. This is my /etc/fstab, with the invalid filesystem entry commented out /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 /dev/wd1s3b none swap sw 0 0 /dev/wd0s2b none swap sw 0 0 /dev/wd1s3e /home ufs rw 1 1 #/dev/wd1s4e /usr2 ufs rw 1 1 /dev/wd1s1 /d msdos rw 1 1 /dev/wd1s5 /e msdos rw 1 1 Kris