Linux – Redhat Linux: How to know the system configuration

commandconfigurationlinuxrhel

I am using Red Hat Enterprise Linux Server release 5.9 (Tikanga).
For installation of any application, it is very important to know the system configuration, is it 32 bit or 64 bit system, Installed OS is 32 bit or 64 bit etc…
Is there any command which provides me information about my system configuration just like Windows provide when go to Control Panel\System and Security\System.

Please suggest…

Best Answer

Use uname:

uname -i

For more information, see

man uname

If you get x86, it means you have 32 bit Linux OS and if you get x86_64, it means you have 64 bit Linux.

Related Question