From owner-freebsd-questions@FreeBSD.ORG Tue May 28 08:46:41 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id E45546D8 for ; Tue, 28 May 2013 08:46:41 +0000 (UTC) (envelope-from trond@fagskolen.gjovik.no) Received: from smtp.fagskolen.gjovik.no (smtp.fagskolen.gjovik.no [IPv6:2001:700:1100:1:200:ff:fe00:b]) by mx1.freebsd.org (Postfix) with ESMTP id 5A6C939C for ; Tue, 28 May 2013 08:46:41 +0000 (UTC) Received: from mail.fig.ol.no (localhost [127.0.0.1]) by mail.fig.ol.no (8.14.7/8.14.7) with ESMTP id r4S8kYeZ034963 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 28 May 2013 10:46:34 +0200 (CEST) (envelope-from trond@fagskolen.gjovik.no) Received: from localhost (trond@localhost) by mail.fig.ol.no (8.14.7/8.14.7/Submit) with ESMTP id r4S8kYMM034960; Tue, 28 May 2013 10:46:34 +0200 (CEST) (envelope-from trond@fagskolen.gjovik.no) X-Authentication-Warning: mail.fig.ol.no: trond owned process doing -bs Date: Tue, 28 May 2013 10:46:33 +0200 (CEST) From: =?ISO-8859-1?Q?Trond_Endrest=F8l?= Sender: Trond.Endrestol@fagskolen.gjovik.no To: s m Subject: Re: freebsd8.2 with /etc mount point can't run correctly In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) Organization: Fagskolen Innlandet OpenPGP: url=http://fig.ol.no/~trond/trond.key MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="2055831798-847570967-1369730794=:72982" X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on mail.fig.ol.no Cc: freebsd-questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 May 2013 08:46:42 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --2055831798-847570967-1369730794=:72982 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: 8BIT On Tue, 28 May 2013 12:57+0430, s m wrote: > hello all, > > i want to install freebsd8.2 with different partitions. i want to have > a separated partition for /etc. therefore this is my partitions: / , > /var, /etc. /tmp, /usr, swap. > > but after installing, freebsd can not run correctly and have problem > with fstab. i checked my fstab file (fstab file in /etc partition) and > every thing is ok. i think i should do something in order to use fstab > file in different mount point. is it true? what should i do to have a > freebsd with a separate /etc mount point? > > any comments are appreciated. > SAM If you really want to keep /etc as a separate filesystem, then I would try something like this: 1. Create the file /etc-mount and give it the following contents: #!/bin/sh /sbin/mount /dev/ada0pX /etc exec /etc/rc $* 2. Make sure to substitute the right device file for the mount command. 2. Make /etc-mount executable: chmod a+x /etc-mount 3. On the root filesystem, let /etc/rc be a symlink to /etc-mount. This is just off the top of my head. It may work, or it may not work. HTH. -- +-------------------------------+------------------------------------+ | Vennlig hilsen, | Best regards, | | Trond Endrestøl, | Trond Endrestøl, | | IT-ansvarlig, | System administrator, | | Fagskolen Innlandet, | Gjøvik Technical College, Norway, | | tlf. mob. 952 62 567, | Cellular...: +47 952 62 567, | | sentralbord 61 14 54 00. | Switchboard: +47 61 14 54 00. | +-------------------------------+------------------------------------+ --2055831798-847570967-1369730794=:72982--