Wojciech Puchar wrote:
hi all:

i want to know ,how to compile better speed during the installation of
Ports , use the memery filesystem(MFS) ..

during make world , mount the md0 to /usr/obj , but what can i do for

better use tmpfs

the port ?

rm -rf /usr/ports/
mkdir /usr/ports
mount -t tmpfs tmpfs /usr/ports
portsnap extract

now build
_______________________________________________
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"

quicker to do


mv /usr/ports /usr/ports.real
mkdir /usr/ports
mount -t tmpfs tmpfs /usr/ports
mount -t unionfs -o noatime /usr/ports /usr/ports.real


of cause tmpfs can actually start using disk space unlike a md device so if you eat up to much ram with the compiles it will slow down
_______________________________________________
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"

Reply via email to