How do I find out the chip type, system name, node name, model number.

The uname command provides details about your system.

uname -pDisplays the chip type of the system. For example, PowerPC.
uname -rDisplays the release number of the operating system.
uname -sDisplays the system name. For example: AIX.
uname -nDisplays the name of the node.
uname -aDisplays the system name, node name, version, machine ID.
uname -MDisplays the system model name.
uname -vDisplays the operating system version.
uname -mDisplays the machine ID number of the hardware running the system.
uname -uDisplays the system ID number.

Comments

Popular Posts