diff options
author | Andy Fiddaman <omnios@citrus-it.co.uk> | 2021-03-18 15:11:57 +0000 |
---|---|---|
committer | Andy Fiddaman <omnios@citrus-it.co.uk> | 2021-03-24 10:35:05 +0000 |
commit | 5ad6a0f49b59cb4bd38eab045ce9894881e9d862 (patch) | |
tree | 5b0ffb177e6ebbacfd050e2d238331a0a708302d | |
parent | 9ecd05bdc59e4a1091c51ce68cce2028d5ba6fd1 (diff) | |
download | illumos-joyent-5ad6a0f49b59cb4bd38eab045ce9894881e9d862.tar.gz |
13648 chroot(1m) man page references libcmd.so instead of libcmdutils.so
Reviewed by: Hans Rosenfeld <rosenfeld@grumpf.hope-2000.org>
Reviewed by: Peter Tribble <peter.tribble@gmail.com>
Approved by: Robert Mustacchi <rm@fingolfin.org>
-rw-r--r-- | usr/src/man/man1m/chroot.1m | 199 |
1 files changed, 123 insertions, 76 deletions
diff --git a/usr/src/man/man1m/chroot.1m b/usr/src/man/man1m/chroot.1m index 85f46d15a7..1c58398f24 100644 --- a/usr/src/man/man1m/chroot.1m +++ b/usr/src/man/man1m/chroot.1m @@ -1,86 +1,133 @@ '\" te .\" Copyright (c) 2004, Sun Microsystems, Inc. All Rights Reserved. .\" Copyright 1989 AT&T -.\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. -.\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. -.\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH CHROOT 1M "Dec 15, 2003" -.SH NAME -chroot \- change root directory for a command -.SH SYNOPSIS -.LP -.nf -\fB/usr/sbin/chroot\fR \fInewroot\fR \fIcommand\fR -.fi - -.SH DESCRIPTION -.sp -.LP -The \fBchroot\fR utility causes \fIcommand\fR to be executed relative to -\fInewroot\fR. The meaning of any initial slashes (\fB\|/\|\fR) in the path -names is changed to \fInewroot\fR for \fIcommand\fR and any of its child -processes. Upon execution, the initial working directory is \fInewroot\fR. -.sp -.LP -Notice that redirecting the output of \fIcommand\fR to a file, -.sp -.in +2 -.nf -chroot\fI newroot \|command\fR >\fBx\fR -.fi -.in -2 -.sp - -.sp -.LP -will create the file \fBx\fR relative to the original root of \fIcommand\fR, +.\" +.\" The contents of this file are subject to the terms of the +.\" Common Development and Distribution License (the "License"). +.\" You may not use this file except in compliance with the License. +.\" +.\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE +.\" or http://www.opensolaris.org/os/licensing. +.\" See the License for the specific language governing permissions +.\" and limitations under the License. +.\" +.\" When distributing Covered Code, include this CDDL HEADER in each +.\" file and include the License file at usr/src/OPENSOLARIS.LICENSE. +.\" If applicable, add the following below this CDDL HEADER, with the +.\" fields enclosed by brackets "[]" replaced with your own identifying +.\" information: Portions Copyright [yyyy] [name of copyright owner] +.\" +.\" Portions Copyright 2021 OmniOS Community Edition (OmniOSce) Association. +.\" +.Dd March 18, 2021 +.Dt CHROOT 1M +.Os +.Sh NAME +.Nm chroot +.Nd change root directory for a command +.Sh SYNOPSIS +.Nm +.Ar newroot +.Ar command +.Sh DESCRIPTION +The +.Nm +utility causes +.Ar command +to be executed relative to +.Ar newroot . +The meaning of any initial slash +.Pq / +in the path names is changed to +.Ar newroot +for +.Ar command +and any of its child processes. +Upon execution, the initial working directory is +.Ar newroot . +.Pp +Notice that redirecting the output of +.Ar command +to a file, such as in: +.Pp +.D1 Nm chroot Ar newroot Ar command Sy > Pa xyz +.Pp +will create the file +.Pa xyz +relative to the original root of +.Ar command , not the new one. -.sp -.LP -The new root path name is always relative to the current root. Even if a -\fBchroot\fR is currently in effect, the \fInewroot\fR argument is relative to -the current root of the running process. -.sp -.LP +.Pp +The new root path name is always relative to the current root. +Even if a +.Nm +is currently in effect, the +.Ar newroot +argument is relative to the current root of the running process. +.Pp This command can be run only by the super-user. -.SH RETURN VALUES -.sp -.LP -The exit status of \fBchroot\fR is the return value of \fIcommand\fR. -.SH EXAMPLES -.LP -\fBExample 1 \fRUsing the \fBchroot\fR Utility -.sp -.LP -The \fBchroot\fR utility provides an easy way to extract \fBtar\fR files (see -\fBtar\fR(1)) written with absolute filenames to a different location. It is -necessary to copy the shared libraries used by \fBtar\fR (see \fBldd\fR(1)) to -the \fInewroot\fR filesystem. - -.sp -.in +2 -.nf -example# mkdir /tmp/lib; cd /lib -example# cp ld.so.1 libc.so.1 libcmd.so.1 libdl.so.1 \e - libsec.so.1 /tmp/lib +.Sh EXIT STATUS +The exit status of +.Nm +is the exit status of +.Ar command . +.Sh OPERANDS +The following operands are supported: +.Bl -tag -width Ar +.It Ar newroot +The new root directory. +.It Ar command +The command to be executed relative to +.Ar newroot . +.El +.Sh EXAMPLES +.Sy Example 1 +Using the +.Nm +Utility +.Pp +The +.Nm +utility provides an easy way to extract +.Sy tar +files +.Pq see Xr tar 1 +written with absolute filenames to a different location. +It is necessary to copy the shared libraries used by +.Sy tar +.Pq see Xr ldd 1 +to the +.Ar newroot +filesystem. +.Bd -literal -offset indent +example# mkdir -p /tmp/lib /tmp/usr/lib +example# cd /lib && cp ld.so.1 \e + libavl.so.1 libc.so.1 libcmdutils.so.1 libcustr.so.1 \e + libm.so.2 libmd.so.1 libmp.so.2 libnsl.so.1 \e + libnvpair.so.1 libsec.so.1 libsecdb.so.1 libtsol.so.2 \e + libuutil.so.1 /tmp/lib/ +example# cp /usr/lib/libidmap.so.1 /tmp/usr/lib/ example# cp /usr/bin/tar /tmp example# dd if=/dev/rmt/0 | chroot /tmp tar xvf - -.fi -.in -2 -.sp - -.SH SEE ALSO -.sp -.LP -\fBcd\fR(1), \fBtar\fR(1), \fBchroot\fR(2), \fBttyname\fR(3C), -\fBattributes\fR(5) -.SH NOTES -.sp -.LP +.Ed +.Sh SEE ALSO +.Xr cd 1 , +.Xr ldd 1 , +.Xr tar 1 , +.Xr chroot 2 , +.Xr ttyname 3C , +.Xr attributes 5 +.Sh NOTES Exercise extreme caution when referencing device files in the new root file system. -.sp -.LP -References by routines such as \fBttyname\fR(3C) to stdin, stdout, and stderr +.Pp +References by routines such as +.Xr ttyname 3C +to +.Dv stdin , +.Dv stdout , +and +.Dv stderr will find that the device associated with the file descriptor is unknown after -\fBchroot\fR is run. +.Nm +is run. |