From owner-freebsd-bugs Fri Dec 19 02:06:37 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id CAA08639 for bugs-outgoing; Fri, 19 Dec 1997 02:06:37 -0800 (PST) (envelope-from owner-freebsd-bugs) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id CAA08630 for ; Fri, 19 Dec 1997 02:06:34 -0800 (PST) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.7/8.6.9) with ESMTP id CAA06267; Fri, 19 Dec 1997 02:06:09 -0800 (PST) To: mb3006@epix.net cc: freebsd-bugs@FreeBSD.ORG Subject: Re: FreeBSD 2.2.5 problems with wcd0 & install bug In-reply-to: Your message of "Fri, 19 Dec 1997 01:55:58 GMT." <3499D42E.1F22@mailhost.epix.net> Date: Fri, 19 Dec 1997 02:06:08 -0800 Message-ID: <6263.882525968@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > "mount /dev/wcd0c /cdrom" gives "Incorrect super block" on all > machines. The fstab file is identical on all 3 computers, the guy at Not surprising since that's exactly what it's supposed to say. The CDROM is NOT a UFS filesystem, which is what you're trying to mount it as with the above command. mount -t cd9660 /dev/wcd0c /cdrom Will work a lot better. Jordan