Sep 27, 2001 #1 starky5 MIS Sep 27, 2001 9 US Does anyone know of a way to get the serial number of an RS6000 from the command line in AIX 4.3.3? Thanks in advance.
Does anyone know of a way to get the serial number of an RS6000 from the command line in AIX 4.3.3? Thanks in advance.
Sep 27, 2001 #2 Guest_imported New member Jan 1, 1970 0 check this out! uname -a <OS_name> <host_name> <r> <v> <xxyyyyyymmss> sample: AIX WebServer 3 4 0008A8AF4C00 xx = indicate the system & always 00 yyyyyy = unique ID for the entire system mm = model ID ss = submodel ID & always 0 usually "yyyyyy" is part of the serial number. man pages for 4.3.3 gives you the details Upvote 0 Downvote
check this out! uname -a <OS_name> <host_name> <r> <v> <xxyyyyyymmss> sample: AIX WebServer 3 4 0008A8AF4C00 xx = indicate the system & always 00 yyyyyy = unique ID for the entire system mm = model ID ss = submodel ID & always 0 usually "yyyyyy" is part of the serial number. man pages for 4.3.3 gives you the details
Sep 27, 2001 #3 crowe Technical User Jun 12, 2001 255 US Not sure if this will work across the board on all RSK6000 models. You can strip the output of lscfg and get the serial number. I set up this script: /usr/local/bin/model lscfg -v | grep Y0 | head -1 | awk '{ print "Serial Number: "$3"\tModel: "$4 }' crowe Upvote 0 Downvote
Not sure if this will work across the board on all RSK6000 models. You can strip the output of lscfg and get the serial number. I set up this script: /usr/local/bin/model lscfg -v | grep Y0 | head -1 | awk '{ print "Serial Number: "$3"\tModel: "$4 }' crowe