1833038 Members
2354 Online
110049 Solutions
New Discussion

Re: version and model

 
SOLVED
Go to solution
Henry Chua
Super Advisor

version and model

MY UX is residing in a very old machine.. any command to know the version and model I am using?

Thank you for your answers!!
7 REPLIES 7
MarkSyder
Honored Contributor
Solution

Re: version and model

uname -a gives info re OS ver and system name.

The command "model" tells you the model.

Mark Syder (like the drink but spelt different)
The triumph of evil requires only that good men do nothing
H.Merijn Brand (procura
Honored Contributor

Re: version and model

I have all the answers here: http://mirrors.develooper.com/hpux/#FAQ

# model

is just a start

# uname -a is the next step

Enjoy, Have FUN! H.Merijn
Enjoy, Have FUN! H.Merijn
Manish Srivastava
Trusted Contributor

Re: version and model

Hi,

use the following commands:

uname -a
model


manish
R. Sri Ram Kishore_1
Respected Contributor

Re: version and model

Hi,

"model" and "uname -a" are the commands to find the model name and version respectively.

Regards,
Sri Ram
"What goes up must come down. Ask any system administrator."
Muthukumar_5
Honored Contributor

Re: version and model

We can collect all information of system with uname -a / with getconf

getconf MACHINE_MODEL / model to get the machine model there.

You can get combined informations as,
machinfo.ksh
---------------------------------------
echo "System `hostname` information"
uname -a
echo "Model : `getconf MACHINE_MODE`L"
echo "Serial: `getconf CS_MACHINE_SERIAL`"
echo "Identification: `getconf CS_PARTITION_IDENT`"
------------------------

ksh machinfo.ksh
Easy to suggest when don't know about the problem!
Franky_1
Respected Contributor

Re: version and model

Hi,

for a quick answer just type

"uname -a" (gives version)
"model" (gives model type)
or
if you've Ignite installed and for a more detailled report you can use "print_manifest"

Regards

Franky
Don't worry be happy
Henry Chua
Super Advisor

Re: version and model

SOLVED!!