当前位置: 技术问答>linux和unix
uname命令的一个问题
来源: 互联网 发布时间:2016-12-06
本文导语: uname命令的手册有如下描述: -m, --machine print the machine hardware name -i, --hardware-platform print the hardware platform or "unknown" 我在LFS中实验了一下,得到...
uname命令的手册有如下描述:
-m, --machine
print the machine hardware name
-i, --hardware-platform
print the hardware platform or "unknown"
我在LFS中实验了一下,得到如下输出:
root [ ~ ]# uname -m
i686
root [ ~ ]# uname -i
i386
不知道所谓“machine hardware name”与“hardware platform”有何区别啊?
-m, --machine
print the machine hardware name
-i, --hardware-platform
print the hardware platform or "unknown"
我在LFS中实验了一下,得到如下输出:
root [ ~ ]# uname -m
i686
root [ ~ ]# uname -i
i386
不知道所谓“machine hardware name”与“hardware platform”有何区别啊?
|
machine hardware表示CPU的类型或级别,是由厂商自己定义的。
hardware platform是指平台或架构,大概可以理解为CPU微指令集。
hardware platform是指平台或架构,大概可以理解为CPU微指令集。