From 682d581f98f3d8c4f708a42c7cd26f767d2605d8 Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Fri, 29 May 2020 20:14:40 +0000 Subject: [PATCH] Replace the manual fetch method with bsdinstall and break the methods into separate sections. Will follow up with the white space change as a separate commit. Reviewed by: bcr Differential Revision: https://reviews.freebsd.org/D25044 --- .../books/handbook/jails/chapter.xml | 39 +++++++++++++++---- 1 file changed, 31 insertions(+), 8 deletions(-) diff --git a/en_US.ISO8859-1/books/handbook/jails/chapter.xml b/en_US.ISO8859-1/books/handbook/jails/chapter.xml index a632c11e89..b39d98246b 100644 --- a/en_US.ISO8859-1/books/handbook/jails/chapter.xml +++ b/en_US.ISO8859-1/books/handbook/jails/chapter.xml @@ -201,6 +201,27 @@ prebuilt binaries (such as those supplied on an install media) or build from source. + + Installing a Jail + + + To install a Jail from the Internet + + The &man.bsdinstall.8; tool can be used to fetch and + install the binaries needed for a jail. This will walk through + the picking of a mirror, which distributions will be installed + into the destination directory, and some basic configuration + of the jail: + + &prompt.root; bsdinstall jail /here/is/the/jail + + Once the command is complete, the next step is configuring + the host to run the jail. + + + + To install a Jail from an ISO + To install the userland from installation media, first create the root directory for the jail. This can be done by setting the DESTDIR variable to the proper @@ -217,14 +238,6 @@ &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 @@ -237,6 +250,10 @@ To install everything except the kernel: &prompt.root; for set in base ports; do tar -xf $set.txz -C $DESTDIR ; done + + + + To build and install a Jail from source The &man.jail.8; manual page explains the procedure for building a jail: @@ -301,6 +318,11 @@ &man.devfs.8; and &man.devfs.conf.5; manual pages. + + + + + Configuring the Host Once a jail is installed, it can be started by using the &man.jail.8; utility. The &man.jail.8; utility takes four @@ -372,6 +394,7 @@ More information about this can be found in the &man.jail.8; manual page. +