From owner-freebsd-questions@FreeBSD.ORG Sun May 18 16:05:42 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 46BDE37B401 for ; Sun, 18 May 2003 16:05:42 -0700 (PDT) Received: from mailout.informatik.tu-muenchen.de (mailout.informatik.tu-muenchen.de [131.159.0.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 623B843F3F for ; Sun, 18 May 2003 16:05:41 -0700 (PDT) (envelope-from barner@in.tum.de) Received: from mailrelay1.informatik.tu-muenchen.de (mailrelay1.informatik.tu-muenchen.de [131.159.254.5]) by mailout.informatik.tu-muenchen.de (Postfix) with ESMTP id 7C3BA6383; Mon, 19 May 2003 01:05:03 +0200 (MEST) Received: from mail.informatik.tu-muenchen.de (mail.informatik.tu-muenchen.de [131.159.0.26]) by mailrelay1.informatik.tu-muenchen.de (Postfix) with ESMTP id 406C77943; Mon, 19 May 2003 01:05:11 +0200 (MEST) Received: from zi025.glhnet.mhn.de (unknown [129.187.19.157]) by mail.informatik.tu-muenchen.de (Postfix) with ESMTP id 2D0DB8F; Mon, 19 May 2003 01:05:11 +0200 (MEST) Received: by zi025.glhnet.mhn.de (Postfix, from userid 1000) id 7EB1237B3C; Mon, 19 May 2003 01:05:09 +0200 (CEST) Date: Mon, 19 May 2003 01:05:09 +0200 From: Simon Barner To: Bsd Neophyte Message-ID: <20030518230509.GA20010@zi025.glhnet.mhn.de> References: <20030518222629.87886.qmail@web20107.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030518222629.87886.qmail@web20107.mail.yahoo.com> User-Agent: Mutt/1.5.4i cc: freebsd-questions@freebsd.org Subject: Re: need help repairing this system... mount issues X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 May 2003 23:05:42 -0000 Hi, > well i found that now the disk was no longer da0 but da4. so i had to > boot by entering "ufs:/dev/ad4s1a" > > i am able to boot, but i'm having some issues now. > > i've tried "mount /dev/ad4s1e /usr" but this wont work. i get the > following error: "mount: /dev/ad4s1a: No such file or directory" > > i decided to look under /dev, for some reason under the disk pointers (is > that what they are called?) only go up to da3, there is no mention of da4. > i really don't know what to do to mount /usr. All you have to do is to boot into single user mode ('boot -s' at the boot prompt), and create the missing device node: cd /dev sh MAKEDEV ad4s1a (and probably others, have a look at /etc/fstab). Then you have to adjust /etc/fstab accordingly (replace da0 with da4). Now, your system should start properly... Simon