Redhat Linux:如何知道我的系统配置?

urs*_*ion 3 linux rhel configuration command

我正在使用Red Hat Enterprise Linux Server release 5.9 (Tikanga). 对于任何应用程序的安装,了解系统配置是非常重要的,它是 32 位还是 64 位系统,安装的操作系统是 32 位还是 64 位等......是否有任何命令可以提供有关我的系统配置的信息就像 Windows 提供的一样,当转到Control Panel\System and Security\System.

请建议...

ene*_*dil 8

使用uname

uname -i
Run Code Online (Sandbox Code Playgroud)

有关更多信息,请参阅

man uname
Run Code Online (Sandbox Code Playgroud)

如果得到x86,则表示您拥有 32 位 Linux 操作系统;如果得到x86_64,则表示您拥有 64 位 Linux。