#Bash 的 setarch 命令
setarch [ARCH] [OPTION]... [CMD [ARG]...]
功能
使用指定的架构或个性化标志运行程序。
类型
可执行文件(/usr/bin/setarch),属于 util-linux。
参数
ARCH- 要设为的架构OPTION选项:--list- 列出已知架构--show[=personality]- 显示当前的个性化标志--uname-2.6- 使程序检测到的内核版本号为2.6-v,--verbose- 显示详细信息-3,--3gb- 指定程序最多使用 3GB 的地址空间(3GB 用户空间,1GB 内核空间)--4gb-指定程序最多使用 4GB 的地址空间(4GB 用户空间,没有内核空间);此选项已废弃不再生效-B,--32bit- 将地址空间设为 32 位以模拟硬件;支持 ARM 和 Alpha 架构-F,--fdpic-funcptrs- 将用户空间函数指向信号处理程序的指针视为指向地址描述符的指针;仅支持 ARM, Blackfin, Fujitsu FR-V 和 SuperH 架构-I,--short-inode-使用 16 位 inode 号;此选项已废弃不再生效-L,--addr-compat-layout- 提供传统虚拟地址空间布局-R,--addr-no-randomize- 禁用虚拟地址空间的随机化-S,--whole-seconds-时间值截断为整数秒;此选项已废弃不再生效-T,--sticky-timeouts- 这使得select(2)、pselect(2)和ppoll(2)系统调用保留超时值-X,--read-implies-exec- 如果设置此项,则mmap(2)PROT_READ还会添加 `PROT_EXEC`` 位-Z,--mmap-page-zero- SVr4 错误模拟,会将mmap(2)第 0 页设置为只读。--help- 显示帮助--version- 显示版本
CMD- 要运行的命令ARG- 传递给CMD的参数列表
#示例
查看已知架构
$ setarch --list
uname26
linux32
linux64
i386
i486
i586
i686
athlon
x86_64
查看当前个性化标志
$ setarch --show
PER_LINUX
设置架构
$ arch # 查看架构
x86_64
$ setarch i386 arch
i686
$ setarch linux32 arch
i686
#推荐阅读
#手册
SETARCH(8) System Administration SETARCH(8)
NAME
setarch - change reported architecture in new program environment
and/or set personality flags
SYNOPSIS
setarch [arch] [options] [program [argument...]]
setarch --list|-h|-V
arch [options] [program [argument...]]
DESCRIPTION
setarch modifies execution domains and process personality flags.
The execution domains currently only affects the output of uname -m.
For example, on an AMD64 system, running setarch i386 program will
cause program to see i686 instead of x86_64 as the machine type. It can
also be used to set various personality options. The default program is
/bin/sh.
Since version 2.33 the arch command line argument is optional and
setarch may be used to change personality flags (ADDR_LIMIT_*,
SHORT_INODE, etc) without modification of the execution domain.
OPTIONS
--list
List the architectures that setarch knows about. Whether setarch
can actually set each of these architectures depends on the running
kernel.
--show[=personality]
Show the currently active personality and flags. If the personality
argument is provided, it is shown instead of the current one.
personality is a hexadecimal number with values was described in
sys/personality.h.
--uname-2.6
Causes the program to see a kernel version number beginning with
2.6. Turns on UNAME26.
-v, --verbose
Be verbose.
-3, --3gb
Specifies program should use a maximum of 3GB of address space.
Supported on x86. Turns on ADDR_LIMIT_3GB.
--4gb
This option has no effect. It is retained for backward
compatibility only, and may be removed in future releases.
-B, --32bit
Limit the address space to 32 bits to emulate hardware. Supported
on ARM and Alpha. Turns on ADDR_LIMIT_32BIT.
-F, --fdpic-funcptrs
Treat user-space function pointers to signal handlers as pointers
to address descriptors. This option has no effect on architectures
that do not support FDPIC ELF binaries. In kernel v4.14 support is
limited to ARM, Blackfin, Fujitsu FR-V, and SuperH CPU
architectures.
-I, --short-inode
Obsolete bug emulation flag. Turns on SHORT_INODE.
-L, --addr-compat-layout
Provide legacy virtual address space layout. Use when the program
binary does not have PT_GNU_STACK ELF header. Turns on
ADDR_COMPAT_LAYOUT.
-R, --addr-no-randomize
Disables randomization of the virtual address space. Turns on
ADDR_NO_RANDOMIZE.
-S, --whole-seconds
Obsolete bug emulation flag. Turns on WHOLE_SECONDS.
-T, --sticky-timeouts
This makes select(2), pselect(2), and ppoll(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 program depends on this behavior. For more details see the
timeout description in select(2) manual page. Turns on
STICKY_TIMEOUTS.
-X, --read-implies-exec
If this is set then mmap(2) PROT_READ will also add the PROT_EXEC
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 READ_IMPLIES_EXEC.
-Z, --mmap-page-zero
SVr4 bug emulation that will set mmap(2) page zero as read-only.
Use when program depends on this behavior, and the source code is
not available to be fixed. Turns on MMAP_PAGE_ZERO.
-h, --help
Display help text and exit.
-V, --version
Print version and exit.
EXAMPLE
setarch --addr-no-randomize mytestprog
setarch ppc32 rpmbuild --target=ppc --rebuild foo.src.rpm
setarch ppc32 -v -vL3 rpmbuild --target=ppc --rebuild bar.src.rpm
setarch ppc32 --32bit rpmbuild --target=ppc --rebuild foo.src.rpm
AUTHORS
Elliot Lee <sopwith@redhat.com>, Jindrich Novy <jnovy@redhat.com>,
Karel Zak <kzak@redhat.com>
SEE ALSO
personality(2), select(2)
REPORTING BUGS
For bug reports, use the issue tracker at
https://github.com/util-linux/util-linux/issues.
AVAILABILITY
The setarch command is part of the util-linux package which can be
downloaded from Linux Kernel Archive
<https://www.kernel.org/pub/linux/utils/util-linux/>.
util-linux 2.39.3 2023-11-21 SETARCH(8)