0

我想知道我的计算机体系结构,所以我在我的操作系统上输入命令来检查它。它显示我的计算机体系结构在我键入时是“i686” 。但是当我键入时uname -march显示。我知道打印打印所有信息和打印机器硬件名称。那么为什么它会在我输入时打印出来。它们之间有什么区别。i686 i686 i386 GNU/Linuxuname -auname -auname -mi386uname -a

4

1 回答 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 回答