Index: en_US.ISO8859-1/books/handbook/jails/chapter.xml
===================================================================
--- en_US.ISO8859-1/books/handbook/jails/chapter.xml
+++ en_US.ISO8859-1/books/handbook/jails/chapter.xml
@@ -214,8 +214,17 @@
Mount the install media as covered in &man.mdconfig.8;
when using the install ISO:
- &prompt.root; mount -t cd9660 /dev/`mdconfig -f cdimage.iso` /mnt
+ &prompt.root; mount -t cd9660 /dev/`mdconfig -f cdimage.iso` /mnt
+&prompt.root; cd /mnt/usr/freebsd-dist/
+ Alternatively, download the tarballs from a mirror:
+
+ &prompt.root; sh
+&prompt.root; export DESTRELEASE=12.0-RELEASE
+&prompt.root; export DESTARCH=`uname -m`
+&prompt.root; export SOURCEURL=http://ftp.freebsd.org/pub/FreeBSD/releases/$DESTARCH/$DESTRELEASE/
+&prompt.root; for set in base ports; do fetch $SOURCEURL/$set.txz ; done
+
Extract the binaries from the tarballs on the install media
into the declared destination. Minimally, only the base set
needs to be extracted, but a complete install can be performed
@@ -223,11 +232,11 @@
To install just the base system:
- &prompt.root; tar -xf /mnt/usr/freebsd-dist/base.txz -C $DESTDIR
+ &prompt.root; tar -xf base.txz -C $DESTDIR
To install everything except the kernel:
- &prompt.root; for set in base ports; do tar -xf /mnt/usr/freebsd-dist/$set.txz -C $DESTDIR ; done
+ &prompt.root; for set in base ports; do tar -xf $set.txz -C $DESTDIR ; done
The &man.jail.8; manual page explains the procedure for
building a jail: