xref: /freebsd/usr.sbin/bsdinstall/bsdinstall.8 (revision 7d99ab9fd0cc2c1ce2ecef0ed6d0672c2a50b0cb)
1.\"-
2.\" Copyright (c) 2011-2013 Nathan Whitehorn <nwhitehorn@FreeBSD.org>
3.\" All rights reserved.
4.\"
5.\" Redistribution and use in source and binary forms, with or without
6.\" modification, are permitted provided that the following conditions
7.\" are met:
8.\" 1. Redistributions of source code must retain the above copyright
9.\"    notice, this list of conditions and the following disclaimer.
10.\" 2. Redistributions in binary form must reproduce the above copyright
11.\"    notice, this list of conditions and the following disclaimer in the
12.\"    documentation and/or other materials provided with the distribution.
13.\"
14.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16.\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17.\" DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
18.\" INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19.\" (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
20.\" SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
22.\" STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
23.\" ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
24.\" POSSIBILITY OF SUCH DAMAGE.
25.\"
26.\" $FreeBSD$
27.\"
28.Dd January 21, 2013
29.Dt BSDINSTALL 8
30.Os
31.Sh NAME
32.Nm bsdinstall
33.Nd system installer
34.Sh SYNOPSIS
35.Nm
36.Op Ar target
37.Op Ar ...
38.Sh DESCRIPTION
39.Nm
40is used for installation of new systems, both for system setup from
41installation media (e.g. CD-ROMs) and for use on live systems to prepare
42VM images and jails.
43.Pp
44Much like
45.Xr make 1 , Nm
46takes a target and possible parameters of the target as arguments. If
47invoked with no arguments, it will invoke the
48.Cm auto
49target, which provides a standard interactive installation, invoking the
50others in sequence. To perform a scripted installation, these subtargets
51can be invoked separately by an installation script.
52.Sh TARGETS
53Most of the following targets are only useful for scripting the installer.
54For interactive use, most users will be interested only in the
55.Cm auto ,
56.Cm jail ,
57and
58.Cm script
59targets.
60.Bl -tag -width ".Cm jail Ar destination"
61.It Cm auto
62Run the standard interactive installation, including disk partitioning.
63.It Cm jail Ar destination
64Sets up a new chroot system at
65.Pa destination ,
66suitable for use with
67.Xr jail 8 .
68Behavior is generally similar to
69.Cm auto ,
70except that disk partitioning and network setup are skipped and a kernel is
71not installed into the new system.
72.It Cm script Ar script
73Runs the installation script at
74.Pa script .
75See
76.Sx SCRIPTING
77for more information on this target.
78.It Cm keymap
79If the current controlling TTY is a
80.Xr syscons 4
81console, asks the user to set the current keymap, and saves the result to the
82new system's
83.Pa rc.conf .
84.It Cm hostname
85Prompts the user for a host name for the new system and saves the result to the
86new system's
87.Pa rc.conf .
88If
89.Ev BSDINSTALL_CONFIGCURRENT
90is set, also sets the host name of the current system.
91.It Cm netconfig
92Interactively configures network interfaces (first invoking
93.Cm wlanconfig
94on wireless interfaces), saving the result to the new system's
95.Pa rc.conf
96and
97.Pa resolv.conf .
98If
99.Ev BSDINSTALL_CONFIGCURRENT
100is set, also configures the network interfaces of the current system to match.
101.It Cm autopart
102Provides the installer's interactive guided disk partitioner for single-disk
103installations. Partitions disks, runs
104.Xr newfs 8 ,
105and writes the new system's
106.Pa fstab .
107.It Cm partedit
108Provides the installer's interactive manual disk partitioner, with support
109for multi disk setups, non-UFS file systems, and manual selection of
110partition schemes. Partitions disks, runs
111.Xr newfs 8 ,
112and writes the new system's
113.Pa fstab .
114.It Cm scriptedpart Ar parameters
115Sets up disks like
116.Cm autopart
117and
118.Cm partedit ,
119but non-interactively according to the disk setup specified in
120.Ar parameters .
121Each disk setup is specified by a three-part argument:
122.Pp
123.Ar disk
124.Op Ar scheme
125.Op Ar {partitions}
126.Pp
127Multiple disk setups are separated by semicolons. The
128.Ar disk
129argument specifies the disk on which to operate (which will be erased),
130while the
131.Ar scheme
132argument specifies the
133.Xr gpart 8
134partition scheme to apply to the disk. If
135.Ar scheme
136is unspecified,
137.Cm scriptedpart
138will apply the default bootable scheme on your platform.
139The
140.Ar partitions
141argument is also optional and specifies how to partition
142.Ar disk .
143It consists of a comma-separated list of partitions to create enclosed in
144curly braces. Each partition declaration takes the form
145.Pp
146.Ar size
147.Ar type
148.Op Ar mount point
149.Pp
150.Ar size
151specifies the partition size to create in bytes (K, M, and G suffixes
152can be appended to specify kilobytes, megabytes, and gigabytes respectively),
153while the
154.Em auto
155keyword causes the partition to take all the remaining space on the disk. The
156.Ar type
157option chooses the
158.Xr gpart 8
159filesystem type (e.g. freebsd-ufs or freebsd-swap).
160The optional
161.Ar mount point
162argument sets where the created partition is to be mounted in the installed
163system. As an example, a typical invocation looks like:
164.Pp
165bsdinstall scriptedpart ada0 { 20G freebsd-ufs /, 4G freebsd-swap, 20G freebsd-ufs /var, auto freebsd-ufs /usr }
166.It Cm mount
167Mounts the file systems previously configured by
168.Cm autopart ,
169.Cm partedit ,
170or
171.Cm scriptedpart
172under
173.Ev BSDINSTALL_CHROOT .
174.It Cm distfetch
175Fetches the distributions in
176.Ev DISTRIBUTIONS
177to
178.Ev BSDINSTALL_DISTDIR
179from
180.Ev BSDINSTALL_DISTSITE .
181.It Cm checksum
182Verifies the checksums of the distributions listed in
183.Ev DISTRIBUTIONS
184against the distribution manifest.
185.It Cm distextract
186Extracts the distributions listed in
187.Ev DISTRIBUTIONS
188into
189.Ev BSDINSTALL_CHROOT .
190.It Cm rootpass
191Interactively invokes
192.Xr passwd 1
193in the new system to set the root user's password.
194.It Cm adduser
195Interactively invokes
196.Xr adduser 8
197in the new system.
198.It Cm time
199Interactively sets the time, date, and time zone of the new system.
200.It Cm services
201Queries the user for the system daemons to begin at system startup,
202writing the result into the new system's
203.Pa rc.conf .
204.It Cm config
205Installs the configuration files destined for the new system (e.g. rc.conf
206fragments generated by
207.Cm netconfig ,
208etc.) onto the new system.
209.El
210.Sh ENVIRONMENT VARIABLES
211The following environment variables control various aspects of the installation
212process. Many are used internally during installation and have reasonable
213default values for most installation scenarios. Others are set by various
214interactive user prompts, and can be usefully overridden when making scripted
215or customized installers.
216.Bl -tag -width ".Ev BSDINSTALL_DISTSITE"
217.It Ev DISTRIBUTIONS
218The set of distributions to install (e.g. "base kernel ports"). Default: none
219.It Ev BSDINSTALL_DISTDIR
220The directory in which the distribution files can be found (or to which they
221should be downloaded). Default:
222.Pa /usr/freebsd-dist
223.It Ev BSDINSTALL_DISTSITE
224URL from which the distribution files should be downloaded if they are not
225already present in the directory defined by
226.Ev BSDINSTALL_DISTDIR .
227This should be a full path to the files, including architecture and release
228names. Most targets (e.g.
229.Cm auto
230and
231.Cm jail )
232that prompt for a
233.Fx
234mirror will skip that step if this variable is already defined in the
235environment. Example:
236.Pa ftp://ftp.freebsd.org/pub/FreeBSD/releases/powerpc/powerpc64/9.1-RELEASE
237.It Ev BSDINSTALL_CHROOT
238The directory into which the distribution files should be unpacked and the
239directory at which the root file system of the new system should be mounted.
240Default:
241.Pa /mnt
242.It Ev BSDINSTALL_LOG
243Path to a log file for the installation. Default:
244.Pa /tmp/bsdinstall_log
245.It Ev BSDINSTALL_TMPETC
246Directory where files destined for the new system's
247.Pa /etc
248will be stored until the
249.Cm config
250target is executed. If this directory does not already exist, it will be
251created. Default:
252.Pa /tmp/bsdinstall_etc
253.El
254.Sh SCRIPTING
255.Nm
256scripts consist of two parts: a
257.Em preamble
258and a
259.Em setup script .
260The preamble sets up the options for the installation (how to partition the
261disk[s], which distributions to install, etc.) and the optional second part is
262a shell script run under
263.Xr chroot 8
264in the newly installed system before
265.Nm
266exits. The two parts are separated by the usual script header (#!), which
267also sets the interpreter for the setup script.
268.Pp
269A typical bsdinstall script looks like this:
270.Bd -literal -offset indent
271PARTITIONS=ada0
272DISTRIBUTIONS="kernel.txz base.txz"
273
274#!/bin/sh
275echo "ifconfig_em0=DHCP" >> /etc/rc.conf
276echo "sshd_enable=YES" >> /etc/rc.conf
277pkg install puppet
278.Ed
279.Pp
280On
281.Fx
282release media, such a script placed at
283.Pa /etc/installerconfig
284will be run at boot time and the system will be rebooted automatically after
285the installation has completed. This can be used for unattended network
286installation of new systems; see
287.Xr diskless 8
288for details.
289.Ss PREAMBLE
290The preamble consists of installer settings. These control global installation
291parameters (see
292.Sx ENVIRONMENT VARIABLES )
293as well as disk partitioning. The preamble is interpreted as a
294.Xr sh 1
295script run at the very beginning of the install. If more complicated behavior
296than setting these variables is desired, arbitrary commands can be run here
297to extend the installer. In addition to the variables in
298.Sx ENVIRONMENT VARIABLES ,
299in particular
300.Ev DISTRIBUTIONS ,
301the preamble can contain a variable
302.Ev PARTITIONS
303which is passed to the
304.Cm scriptedpart
305target to control disk setup.
306.Ss SETUP SCRIPT
307Following the preamble is an optional shell script, beginning with a #!
308declaration. This script will be run at the end of the installation process
309inside a
310.Xr chroot 8
311environment in the newly installed system and can be used to set up
312configuration files, install packages, etc. Note that newly configured
313system services (e.g. networking) have not been started in the installed
314system at this time and only installation host services are available.
315.Sh HISTORY
316This version of
317.Nm
318first appeared in
319.Fx 9.0 .
320.Sh AUTHORS
321.An -nosplit
322.An Nathan Whitehorn Aq nwhitehorn@FreeBSD.org
323