1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
|
'\" t
.\" Title: setarch
.\" Author: [see the "AUTHOR(S)" section]
.\" Generator: Asciidoctor 2.0.20
.\" Date: 2026-02-17
.\" Manual: System Administration
.\" Source: util-linux 2.42-rc1
.\" Language: English
.\"
.TH "SETARCH" "8" "2026-02-17" "util\-linux 2.42\-rc1" "System Administration"
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.ss \n[.ss] 0
.nh
.ad l
.de URL
\fI\\$2\fP <\\$1>\\$3
..
.als MTO URL
.if \n[.g] \{\
. mso www.tmac
. am URL
. ad l
. .
. am MTO
. ad l
. .
. LINKSTYLE blue R < >
.\}
.SH "NAME"
setarch \- change reported architecture in new program environment and/or set personality flags
.SH "SYNOPSIS"
.sp
\fBsetarch\fP [\fIarch\fP] [options] [\fIprogram\fP [\fIargument\fP...]]
.sp
\fIarch\fP [options] [\fIprogram\fP [\fIargument\fP...]]
.SH "DESCRIPTION"
.sp
\fBsetarch\fP modifies the execution domain and process personality flags.
.sp
The execution domain currently only affects the output of \fBuname \-m\fP.
For example, on an AMD64 system, running \fBsetarch i386\fP \fIprogram\fP will
cause \fIprogram\fP to see \fBi686\fP instead of \fBx86_64\fP as the machine type.
The default \fIprogram\fP is \fB/bin/sh\fP.
.sp
Since version 2.33, the \fIarch\fP command\-line argument is optional
and \fBsetarch\fP may be used to change personality flags (ADDR_LIMIT_3GB,
SHORT_INODE, etc) without modification of the execution domain.
.SH "OPTIONS"
.sp
\fB\-\-list\fP
.RS 4
List the architectures that \fBsetarch\fP knows about. Whether \fBsetarch\fP can actually set each of these architectures depends on the running kernel.
.RE
.sp
\fB\-\-show\fP[\fB=\fP\fIpersonality\fP]
.RS 4
Show the currently active personality and flags.
If the \fIpersonality\fP argument is provided, that personality is shown instead of the current one.
\fIpersonality\fP is a hexadecimal number whose possible values are described in \fBsys/personality.h\fP.
.RE
.sp
\fB\-p\fP, \fB\-\-pid=\fP\fIpid\fP
.RS 4
When used with \fB\-\-show\fP, show the personality and flags of the specified process.
.RE
.sp
\fB\-\-uname\-2.6\fP
.RS 4
Causes the specified \fIprogram\fP to see a kernel version number beginning with 2.6. Turns on \fBUNAME26\fP.
.RE
.sp
\fB\-v\fP, \fB\-\-verbose\fP
.RS 4
Be verbose.
.RE
.sp
\fB\-3\fP, \fB\-\-3gb\fP
.RS 4
The specified \fIprogram\fP should use a maximum of 3GB of address space. Supported on x86. Turns on \fBADDR_LIMIT_3GB\fP.
.RE
.sp
\fB\-\-4gb\fP
.RS 4
This option has no effect. It is retained for backward compatibility only, and may be removed in future releases.
.RE
.sp
\fB\-B\fP, \fB\-\-32bit\fP
.RS 4
Limit the address space to 32 bits to emulate hardware. Supported on ARM and Alpha. Turns on \fBADDR_LIMIT_32BIT\fP.
.RE
.sp
\fB\-F\fP, \fB\-\-fdpic\-funcptrs\fP
.RS 4
Treat user\-space function pointers to signal handlers as pointers to address descriptors. This option has no effect on architectures that do not support \fBFDPIC\fP ELF binaries. In kernel v4.14 support is limited to ARM, Blackfin, Fujitsu FR\-V, and SuperH CPU architectures.
.RE
.sp
\fB\-I\fP, \fB\-\-short\-inode\fP
.RS 4
Obsolete bug emulation flag. Turns on \fBSHORT_INODE\fP.
.RE
.sp
\fB\-L\fP, \fB\-\-addr\-compat\-layout\fP
.RS 4
Provide legacy virtual address space layout. Use when the \fIprogram\fP binary does not have \fBPT_GNU_STACK\fP ELF header. Turns on \fBADDR_COMPAT_LAYOUT\fP.
.RE
.sp
\fB\-R\fP, \fB\-\-addr\-no\-randomize\fP
.RS 4
Disables randomization of the virtual address space. Turns on \fBADDR_NO_RANDOMIZE\fP.
.RE
.sp
\fB\-S\fP, \fB\-\-whole\-seconds\fP
.RS 4
Obsolete bug emulation flag. Turns on \fBWHOLE_SECONDS\fP.
.RE
.sp
\fB\-T\fP, \fB\-\-sticky\-timeouts\fP
.RS 4
This makes \fBselect\fP(2), \fBpselect\fP(2), and \fBppoll\fP(2) system calls preserve the timeout value instead of modifying it to reflect the amount of time not slept when interrupted by a signal handler. Use when \fIprogram\fP depends on this behavior. For more details see the timeout description in \fBselect\fP(2) manual page. Turns on \fBSTICKY_TIMEOUTS\fP.
.RE
.sp
\fB\-X\fP, \fB\-\-read\-implies\-exec\fP
.RS 4
If this is set then \fBmmap\fP(2) \fBPROT_READ\fP will also add the \fBPROT_EXEC\fP bit \- as expected by legacy x86 binaries. Notice that the ELF loader will automatically set this bit when it encounters a legacy binary. Turns on \fBREAD_IMPLIES_EXEC\fP.
.RE
.sp
\fB\-Z\fP, \fB\-\-mmap\-page\-zero\fP
.RS 4
SVr4 bug emulation that will set \fBmmap\fP(2) page zero as read\-only. Use when \fIprogram\fP depends on this behavior, and the source code is not available to be fixed. Turns on \fBMMAP_PAGE_ZERO\fP.
.RE
.sp
\fB\-h\fP, \fB\-\-help\fP
.RS 4
Display help text and exit.
.RE
.sp
\fB\-V\fP, \fB\-\-version\fP
.RS 4
Display version and exit.
.RE
.SH "EXAMPLES"
.sp
.if n .RS 4
.nf
.fam C
setarch \-\-addr\-no\-randomize mytestprog
setarch ppc32 rpmbuild \-\-target=ppc \-\-rebuild foo.src.rpm
setarch ppc32 \-vL3 rpmbuild \-\-target=ppc \-\-rebuild bar.src.rpm
setarch ppc32 \-\-32bit rpmbuild \-\-target=ppc \-\-rebuild foo.src.rpm
setarch \-\-show
setarch \-\-show=$(cat /proc/9284/personality)
setarch \-\-show \-\-pid 9284
.fam
.fi
.if n .RE
.SH "AUTHORS"
.sp
.MTO "sopwith\(atredhat.com" "Elliot Lee" ","
.MTO "jnovy\(atredhat.com" "Jindrich Novy" ","
.MTO "kzak\(atredhat.com" "Karel Zak" ""
.SH "SEE ALSO"
.sp
\fBpersonality\fP(2),
\fBselect\fP(2)
*proc_pid_personality(5)
.SH "REPORTING BUGS"
.sp
For bug reports, use the \c
.URL "https://github.com/util\-linux/util\-linux/issues" "issue tracker" "."
.SH "AVAILABILITY"
.sp
The \fBsetarch\fP command is part of the util\-linux package which can be downloaded from \c
.URL "https://www.kernel.org/pub/linux/utils/util\-linux/" "Linux Kernel Archive" "."
|