OSDN Git Service

Convert release and draft pages to UTF-8.
[linuxjm/jm.git] / manual / util-linux / release / man1 / arch.1
1 .\" arch.1 -- 
2 .\" Copyright 1993 Rickard E. Faith (faith@cs.unc.edu)
3 .\" Public domain: may be freely distributed.
4 .\" 
5 .\" Original translation is provided by Koso Fukuba <koso@ga2.so-net.or.jp>
6 .\" Modified Tue 23 Jun 1998 by Takeo Nakano <nakano@apm.seikei.ac.jp>
7 .\" Updated & Modified Thu 7 Oct 1999 by Takeo Nakano
8 .\"
9 .TH ARCH 1 "4 July 1997" "Linux 2.0" "Linux Programmer's Manual"
10 .SH 名前
11 arch \- マシンアーキテクチャーの表示
12 .SH 書式
13 .B arch
14 .SH 説明
15 .B arch
16 は、
17 .B uname \-m
18 と等価なコマンドである。
19
20 現在の Linux システムでは、
21 .B arch
22 が表示するのは以下の通り: "i386", "i486", "i586", "alpha", "sparc",
23 "arm", "m68k", "mips", "ppc".
24 .SH 関連項目
25 .BR uname (1),
26 .BR uname (2)
27 .\"
28 .\" Details:
29 .\" arch prints the machine part of the system_utsname struct
30 .\" This struct is defined in version.c, and this field is
31 .\" initialized with UTS_MACHINE, which is defined as $ARCH
32 .\" in the main Makefile.
33 .\" That gives the possibilities 
34 .\" alpha    arm      i386     m68k     mips     ppc      sparc    sparc64
35 .\"
36 .\" If Makefile is not edited, ARCH is guessed by
37 .\" ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/sun4u/sparc64/)
38 .\" Then how come we get these i586 values?
39 .\" Well, the routine check_bugs() does system_utsname.machine[1] = '0' + x86;
40 .\" (called in init/main.c, defined in ./include/asm-i386/bugs.h)