From owner-freebsd-questions Tue Sep 1 06:38:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA13411 for freebsd-questions-outgoing; Tue, 1 Sep 1998 06:38:59 -0700 (PDT) (envelope-from owner-freebsd-questions@FreeBSD.ORG) Received: from plains.NoDak.edu (plains.NoDak.edu [134.129.111.64]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA13404 for ; Tue, 1 Sep 1998 06:38:57 -0700 (PDT) (envelope-from tinguely@plains.NoDak.edu) Received: (from tinguely@localhost) by plains.NoDak.edu (8.8.8/8.8.8) id IAA27196; Tue, 1 Sep 1998 08:37:50 -0500 (CDT) Date: Tue, 1 Sep 1998 08:37:50 -0500 (CDT) From: Mark Tinguely Message-Id: <199809011337.IAA27196@plains.NoDak.edu> To: doug@footech.com, jason@washington.edu Subject: Re: Contingency Floppy Cc: questions@FreeBSD.ORG Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > how I can mount the /var > and /usr file systems on /var and /usr (respectively) of the > floppy. The first problem is that I don't have the right drivers > available (wd0s2e for /var and wd0s2f for /usr). Secondly, I'm > a bit concerned about covering up (with the mount) what's already > available in the /var and /usr directories on the floppy. use the /var and /usr on the hard drive... on fixit disk: # mount /dev/wd0s2a /mnt # mount /mnt/dev/wd0s2e /mnt/var # mount /mnt/dev/wd0s2f /mnt/usr if a filesystem corruption blew away one of these special device names, # cd /mnt/dev # MAKEDEV there are times you need applications that are not on the fixit disk, use the executables on the hardrive: PATH=$PATH:/mnt/bin:/mnt/sbin:/mnt/usr/bin:/mnt/usr/sbin with shared libraries and all, you may need to manually initialize the shared library cache: # ldconfig /usr/lib /mnt/usr/lib /mnt/usr/lib/compat /mnt/usr/X11R6/lib ... still rarely, you will need to now make the hard drive the "root". since everything is mounted normally, you can run `chroot'. --mark. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message