Re: How much disk space required for make release?

2011-08-17 Thread Miller, Vincent (Rick)
I want to thank everyone for their suggestions.  I ended up creating a
larger swap and /tmp and reran make release with much better results.
It's not completely finished yet, but has certainly progressed much
further than the other day.

==
Vincent (Rick) Miller
Systems Engineer
vmil...@verisign.com

t: 703-948-4395
21345 Ridgetop Cir Dulles, VA 20166

VerisignInc.com





On 8/16/11 5:50 PM, Edwin L. Culp W. edwinlc...@gmail.com wrote:

On Tue, Aug 16, 2011 at 1:38 PM, Miller, Vincent (Rick)
vmil...@verisign.com wrote:
 Hello all,

 I am attempting to 'make release' 8.2-RELEASE.  After running for a few
hours, it died citing lack of disk space. The filesystem has
approximately 80GB available.  How much disk space is required when
making a release?

 ==
 Vincent (Rick) Miller
 Systems Engineer
 vmil...@verisign.com

 t: 703-948-4395
 21345 Ridgetop Cir Dulles, VA 20166

 VerisignInc.com
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
freebsd-questions-unsubscr...@freebsd.org

I am not running 8.  Only 7, soon to be updated to 9, but I just
finished building a release on Current amd64.  I doubt that it will
help much but . . .

# du -s -m  release
8693release

A little less than 9G.  I wouldn't want to have less that 10G free, if
I were going to build regularly.

Boy am I glad that disks are so much cheaper now.

ed

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


How much disk space required for make release?

2011-08-16 Thread Miller, Vincent (Rick)
Hello all,

I am attempting to 'make release' 8.2-RELEASE.  After running for a few hours, 
it died citing lack of disk space. The filesystem has approximately 80GB 
available.  How much disk space is required when making a release?

==
Vincent (Rick) Miller
Systems Engineer
vmil...@verisign.com

t: 703-948-4395
21345 Ridgetop Cir Dulles, VA 20166

VerisignInc.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


RE: How much disk space required for make release?

2011-08-16 Thread Devin Teske
 -Original Message-
 From: owner-freebsd-questi...@freebsd.org [mailto:owner-freebsd-
 questi...@freebsd.org] On Behalf Of Miller, Vincent (Rick)
 Sent: Tuesday, August 16, 2011 11:39 AM
 To: FreeBSD
 Subject: How much disk space required for make release?
 
 Hello all,
 
 I am attempting to 'make release' 8.2-RELEASE.  After running for a few hours,
it
 died citing lack of disk space. The filesystem has approximately 80GB
available.
 How much disk space is required when making a release?

According to my notes...

You will need approximately 600MB of storage space available on the filesystem
that `/usr/src' resides on.

Meanwhile, you'll need an additional 3GB (approximately) of storage space
available on the filesystem that `/usr/release' resides on.

And further still, you'll need an additional 600MB of storage space for the
`/usr/obj' directory.

So if all three directories (`/usr/src', `/usr/obj', and `/usr/release') live on
the same filesystem, you'll need approximately 4.2GB of free space to build a
FreeBSD release (including the source).

Please note however, that this estimate is low because I never compile a release
with the default options.

I usually use the following:

make release CHROOTDIR=/usr/release EXTSRCDIR=/usr/src KERNELS_BASE= \
NODOC=YES NO_FLOPPIES=YES NOCDROM=YES NOPORTS=YES

The above options _significantly_ reduce the size of disk space required to
build the release.
-- 
Devin


_

The information contained in this message is proprietary and/or confidential. 
If you are not the intended recipient, please: (i) delete the message and all 
copies; (ii) do not disclose, distribute or use the message in any manner; and 
(iii) notify the sender immediately. In addition, please be aware that any 
message addressed to our domain is subject to archiving and review by persons 
other than the intended recipient. Thank you.
_
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: How much disk space required for make release?

2011-08-16 Thread Julian H. Stacey
Hi,
Reference:
 From: Miller, Vincent (Rick) vmil...@verisign.com 
 Date: Tue, 16 Aug 2011 18:38:31 + 
 Message-id:   ca703165.3b97%vmil...@verisign.com 

Miller, Vincent (Rick) wrote:
 Hello all,
 
 I am attempting to 'make release' 8.2-RELEASE.  After running for a few 
 hours, it died citing lack of disk space. The filesystem has approximately 
 80GB available.  How much disk space is required when making a release?

A gig or 2 I recall,
(each of src/  obj/ I recall is ~ 600M 
then there's a chroot, so same again, but a few gig should be 
sufficient.
80G is more than enough,
You must have some partiton that overflowed, maybe /tmp or /var.

If you cant find what,
just run eg
touch ~//df.log
#!/bin/csh
while (1)
df  ~/df.log
sleep 300
end

 then start release again,
the log will show where its getting eaten

However I seem to recall some env var that allows piorts/ to be called in too
Now ports/distfiles alone is maybe 100 Gig or so ... so avoid ports/

Sorry to be imprecise, I havent rolled a release for months,
though I used to do it very frequently.

Cheers,
Julian
-- 
Julian Stacey, BSD Unix Linux C Sys Eng Consultants Munich http://berklix.com
 Reply below, not above;  Indent with  ;  Cumulative like a play script.
 Format: Plain text. Not HTML, multipart/alternative, base64, quoted-printable.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: How much disk space required for make release?

2011-08-16 Thread Edwin L. Culp W.
On Tue, Aug 16, 2011 at 1:38 PM, Miller, Vincent (Rick)
vmil...@verisign.com wrote:
 Hello all,

 I am attempting to 'make release' 8.2-RELEASE.  After running for a few 
 hours, it died citing lack of disk space. The filesystem has approximately 
 80GB available.  How much disk space is required when making a release?

 ==
 Vincent (Rick) Miller
 Systems Engineer
 vmil...@verisign.com

 t: 703-948-4395
 21345 Ridgetop Cir Dulles, VA 20166

 VerisignInc.com
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

I am not running 8.  Only 7, soon to be updated to 9, but I just
finished building a release on Current amd64.  I doubt that it will
help much but . . .

# du -s -m  release
8693release

A little less than 9G.  I wouldn't want to have less that 10G free, if
I were going to build regularly.

Boy am I glad that disks are so much cheaper now.

ed
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org