我想知道我的计算机体系结构,所以我在我的操作系统上输入命令来检查它。它显示我的计算机体系结构在我键入时是“i686” 。但是当我键入时uname -m
它arch
显示。我知道打印打印所有信息和打印机器硬件名称。那么为什么它会在我输入时打印出来。它们之间有什么区别。i686 i686 i386 GNU/Linux
uname -a
uname -a
uname -m
i386
uname -a
问问题
1764 次
1 回答
2
来自man uname
:
-a, --all
print all information [...]
-m, --machine
print the machine hardware name
-p, --processor
print the processor type or "unknown"
-i, --hardware-platform
print the hardware platform or "unknown"
因此,输出的三元组uname -a
对应于machine processor hardware
,按该顺序。
于 2013-10-13T12:12:36.820 回答