From owner-freebsd-questions Fri Oct 18 00:14:46 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id AAA01830 for questions-outgoing; Fri, 18 Oct 1996 00:14:46 -0700 (PDT) Received: from diablo.ppp.de (diablo.ppp.de [193.141.101.34]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id AAA01822 for ; Fri, 18 Oct 1996 00:14:42 -0700 (PDT) Received: from freebie.lemis.de by diablo.ppp.de with smtp (Smail3.1.28.1 #1) id m0vE98V-000QohC; Fri, 18 Oct 96 08:14 MET Received: from allegro.lemis.de (root@allegro.lemis.de [192.109.197.134]) by freebie.lemis.de (8.7.6/8.6.12) with SMTP id IAA16050; Fri, 18 Oct 1996 08:56:53 +0200 (MET DST) From: grog@lemis.de (Greg Lehey) Organisation: LEMIS, Schellnhausen 2, 36325 Feldatal, Germany Phone: +49-6637-919123 Fax: +49-6637-919122 Received: (grog@localhost) by allegro.lemis.de (8.6.9/8.6.9) id IAA24772; Fri, 18 Oct 1996 08:38:42 +0200 Message-Id: <199610180638.IAA24772@allegro.lemis.de> Subject: Re: 2 disks, 1 partition To: lray@aurora.liunet.edu Date: Fri, 18 Oct 1996 08:38:42 +0200 (MET DST) Cc: questions@FreeBSD.org (FreeBSD Questions) In-Reply-To: <96101718030944@aurora.liunet.edu> from "lray@aurora.liunet.edu" at Oct 17, 96 06:03:09 pm X-Mailer: ELM [version 2.4 PL23] MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-questions@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk lray@aurora.liunet.edu writes: > > I have a pentium running FreeBSD 2.1 that I use as a news server. > It has a 400 meg IDE, a 2 gig scsii, and I have just added a second > 2 gig scssi hard disk. What I need to do is add the additional 2 gig > of space from the new disk to the /var file system which resides on > the other scssi disk. Can anyone please tell me how I can make 1 > partion out of my 2 hdisks? You can't. The best thing you can do is to decide how to split /var between the two disks, and then create appropriate symlinks from /var to the other file system (which you might call /var2): # ln -s /var2/news/comp /var/news etc. Greg