我想知道我的计算机体系结构,所以我在操作系统上输入命令检查它,.It显示我的计算机体系结构是'i686‘当我输入uname -m和arch.But时,当我键入uname -a.I时显示i686 i686 i386 GNU/Linux知道uname -a打印了所有信息,uname -m打印了机器硬件名。那么,为什么它打印i386时,我键入uname -a.And,它们之间有什么区别。
发布于 2013-10-13 12:12:36
来自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。
https://stackoverflow.com/questions/19344994
复制相似问题