From owner-svn-src-stable-8@FreeBSD.ORG Sat Aug 7 13:31:50 2010 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 83BF01065673; Sat, 7 Aug 2010 13:31:50 +0000 (UTC) (envelope-from nagilum@nagilum.org) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.187]) by mx1.freebsd.org (Postfix) with ESMTP id 2DD3E8FC1C; Sat, 7 Aug 2010 13:31:49 +0000 (UTC) Received: from cakebox.homeunix.net (p508129FC.dip0.t-ipconnect.de [80.129.41.252]) by mrelayeu.kundenserver.de (node=mrbap1) with ESMTP (Nemesis) id 0M9eFb-1OnWk22uI3-00CTuK; Sat, 07 Aug 2010 15:19:13 +0200 Received: from cakebox.homeunix.net (localhost [127.0.0.1]) by cakebox.homeunix.net (Postfix) with ESMTP id 8F6CB67842; Sat, 7 Aug 2010 15:19:01 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on cakebox.tis X-Spam-Level: X-Spam-Status: No, score=-2.9 required=3.7 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.1 Received: by cakebox.homeunix.net (Postfix, from userid 80) id 319816783A; Sat, 7 Aug 2010 15:18:59 +0200 (CEST) Received: from p508129FC.dip0.t-ipconnect.de (p508129FC.dip0.t-ipconnect.de [80.129.41.252]) by cakebox.homeunix.net (Horde Framework) with HTTP; Sat, 07 Aug 2010 15:18:58 +0200 Message-ID: <20100807151858.18405yjtkz4ijzks@cakebox.homeunix.net> Date: Sat, 07 Aug 2010 15:18:58 +0200 From: Nagilum To: Bruce Cran References: <201008071218.o77CIavd036475@svn.freebsd.org> In-Reply-To: <201008071218.o77CIavd036475@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-2; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Dynamic Internet Messaging Program (DIMP) H3 (1.1.4) X-Provags-ID: V02:K0:Hr4KfChEtOmd873WCu1FeHRiGD15GMybSgU5aF4X5k9 TwzlfRQpanLmnpCgym+vEWWE4SqNT1QDxYIVTi40AsHmvOD/EJ I5F+tB78NoCheUH9vqHobg+pQ+/QfQkgCrPJRYP1ez0fAK37k5 bKlQcl7CpaDiXgxv39dURKOYzdpgE4DOPBREBR9zbWPEnMphvq ZJ/UvufFpVQzrxdYc+sz+C1/cVlyKxVN/QfNxwv3kc= Cc: svn-src-stable-8@freebsd.org Subject: Re: svn commit: r211007 - stable/8/usr.sbin/sysinstall X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Aug 2010 13:31:50 -0000 I'm not so sure about the minsize for / /boot is not too unlikely to end up on a separate partition (ie. if the BIOS has trouble accessing / or the system was set up with ZFS as rootfs before zfsloader) and the rest would fit just fine in 128MB: 1.0M bin 1.9M etc 6.8M lib 482K libexec 4.2M rescue 4.9M sbin root@cakebox / > uname -a FreeBSD cakebox.tis 8.1-STABLE FreeBSD 8.1-STABLE #0: Fri Jul 30 11:27:47 CEST 2010 root@cakebox.tis:/usr/obj/export/src/sys/net5501 i386 But maybe it's just me.. ----- Message from brucec@FreeBSD.org --------- Date: Sat, 7 Aug 2010 12:18:36 +0000 (UTC) From: Bruce Cran Subject: svn commit: r211007 - stable/8/usr.sbin/sysinstall To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org > Author: brucec > Date: Sat Aug 7 12:18:36 2010 > New Revision: 211007 > URL: http://svn.freebsd.org/changeset/base/211007 > > Log: > MFC r209764: > > Increase the default and minimum partition sizes. > Bump / to 1GB, /var to 4GB and /tmp to 1GB. > > A 512MB root partition is now too small to hold two kernels, so to > prevent installkernel failing 1GB is a better default. Likewise, > applications are storing more data in /var so 4GB is more reasonable > on a modern machine. > > The previous minimum partition sizes were too small to hold a minimal > installation, and have been adjusted accordingly. > > Approved by: rrs (mentor) > > Modified: > stable/8/usr.sbin/sysinstall/label.c > Directory Properties: > stable/8/usr.sbin/sysinstall/ (props changed) > > Modified: stable/8/usr.sbin/sysinstall/label.c > ============================================================================== > --- stable/8/usr.sbin/sysinstall/label.c Sat Aug 7 11:57:13 2010 (r211006) > +++ stable/8/usr.sbin/sysinstall/label.c Sat Aug 7 12:18:36 2010 (r211007) > @@ -62,9 +62,9 @@ > * Minimum partition sizes > */ > #if defined(__ia64__) || defined(__sparc64__) || defined(__amd64__) > -#define ROOT_MIN_SIZE 128 > +#define ROOT_MIN_SIZE 280 > #else > -#define ROOT_MIN_SIZE 118 > +#define ROOT_MIN_SIZE 180 > #endif > #define SWAP_MIN_SIZE 32 > #define USR_MIN_SIZE 160 > @@ -82,10 +82,10 @@ > * for this configuration we scale things relative to the NOM vs DEFAULT > * sizes. If the disk is larger then /home will get any remaining space. > */ > -#define ROOT_DEFAULT_SIZE 512 > +#define ROOT_DEFAULT_SIZE 1024 > #define USR_DEFAULT_SIZE 8192 > -#define VAR_DEFAULT_SIZE 1024 > -#define TMP_DEFAULT_SIZE 512 > +#define VAR_DEFAULT_SIZE 4096 > +#define TMP_DEFAULT_SIZE 1024 > #define HOME_DEFAULT_SIZE USR_DEFAULT_SIZE > > /* > @@ -93,9 +93,9 @@ > * when we have insufficient disk space. If this isn't sufficient we scale > * down using the MIN sizes instead. > */ > -#define ROOT_NOMINAL_SIZE 256 > +#define ROOT_NOMINAL_SIZE 512 > #define USR_NOMINAL_SIZE 1536 > -#define VAR_NOMINAL_SIZE 128 > +#define VAR_NOMINAL_SIZE 512 > #define TMP_NOMINAL_SIZE 128 > #define HOME_NOMINAL_SIZE USR_NOMINAL_SIZE > > _______________________________________________ > svn-src-stable-8@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/svn-src-stable-8 > To unsubscribe, send any mail to "svn-src-stable-8-unsubscribe@freebsd.org" > ----- End message from brucec@FreeBSD.org ----- ======================================================================== # _ __ _ __ http://www.nagilum.org/ \n icq://69646724 # # / |/ /__ ____ _(_) /_ ____ _ nagilum@nagilum.org \n +491776461165 # # / / _ `/ _ `/ / / // / ' \ Amiga (68k/PPC): AOS/NetBSD/Linux # # /_/|_/\_,_/\_, /_/_/\_,_/_/_/_/ Mac (PPC): MacOS-X / NetBSD /Linux # # /___/ x86: FreeBSD/Linux/Solaris/Win2k ARM9: EPOC EV6 # ======================================================================== ---------------------------------------------------------------- cakebox.homeunix.net - all the machine one needs..