1752777 Members
6165 Online
108789 Solutions
New Discussion юеВ

Re: Linux command

 
SOLVED
Go to solution
sanjit chand_1
Occasional Contributor

Linux command

Hi All,

just as HP-UX has the uname -i command to identify the model and serial number of the server, what command can be used on the Linux server to get the same information. Your help will be greatly appreciated and have a wonderful day..
Never to late to learn
2 REPLIES 2
Maureen Gunkel
Trusted Contributor
Solution

Re: Linux command

sanjit,
Maybe try uname -m , I found it on a search for 'Linux uname'
Mo
No matter where you go, there you are.
Gareth Bromley
New Member

Re: Linux command

Using uname will provide with generic information such as:
The machine (hardware) type (-m) e.g. CPU Family, i386, i686 etc.
The machine's network node hostname (-n)
The operating system release (-r) e.g. 2.2.12-20
The operating system name (-s) e.g. Linux
The host processor type (-p). Not very clear
The operating system compilation/version (-v)

A better mechanism, is to look at the following file in /proc
- For CPU information /proc/cpuinfo

Othe useful things in /proc are:
- meminfo (Memory allocation information)
- version (Kernel information and compilation information)
- modules (loaded kernel modules)
- net directory contains lots of network related stats

Unlike Solaris etc., hostids/serial numbers aren't encoded/available on Intel/Linux boxes.

Hope this helps,