我的 AIX 机器当前运行的是 6.1 操作系统。我想知道它是在 PPC 还是 PPC64 上,除了 arch 之外还有其他命令可以提供有关 PPC 的信息吗?
答案1
您可以使用prtconf
获取正在运行的内核的位数:
$ prtconf -k
Kernel Type: 64-bit
您也可以ls -l /unix
或file /unix
,但这不能保证是您当前启动的内核。
$ file /unix
/unix: 64-bit XCOFF executable or object module not stripped
$ ls -l /unix
lrwxrwxrwx 1 root system 21 Dec 9 06:48 /unix -> /usr/lib/boot/unix_64
答案2
你可以uname
像每个 Unix 一样尝试一下。