Frequently Asked Questions for FreeBSD 2.X : For serious FreeBSD hackers only : How did you split the distribution into 240k files?
Previous: Can I follow current with limited Internet access?
Next: I've written a kernel extension, who do I send it to?

13.7. How did you split the distribution into 240k files?

Newer BSD based systems have a ``-b'' option to split that allows them to split files on arbitrary byte boundaries.

Here is an example from /usr/src/Makefile.

        bin-tarball:
        (cd ${DISTDIR}; \
        tar cf - . \
        gzip --no-name -9 -c | \
        split -b 240640 - \
        ${RELEASEDIR}/tarballs/bindist/bin_tgz.)
      


Frequently Asked Questions for FreeBSD 2.X : For serious FreeBSD hackers only : How did you split the distribution into 240k files?
Previous: Can I follow current with limited Internet access?
Next: I've written a kernel extension, who do I send it to?