- Community Home
- >
- HPE Community, China
- >
- 服务器
- >
- Alpha 服务器
- >
- 【经验共享】怎样在Alpha系统查看CPU、内存、硬盘的Part Number和序列号
类别
Company
Local Language
论坛
讨论平台
论坛
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
讨论平台
论坛
讨论平台
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
论坛
博客
- 将帖子标记为未读
- 加注书签
- 订阅
- 禁止
- 订阅此主题的 RSS 提要
- 高亮显示此帖
- 打印此帖
- 报告不当内容
修改时间 07-30-2011 08:00 PM
修改时间 07-30-2011 08:00 PM
【经验共享】怎样在Alpha系统查看CPU、内存、硬盘的Part Number和序列号
The purpose of this document is to guide you to check the CPU, memory and hard disk part number and serial number of Alpha system in Tru64 Unix or SRM.
The system serial number can be got with “consvar –g sys_serial_num”.
Example:
# consvar -g sys_serial_num
sys_serial_num = S384200730
Check the CPU part number and serial number
Method 1: errorlog
“errorlog” is a utility to analyze the event log of EV6 and EV67 Alpha systems,
you can download it from http://cybrary.inet.cpqcorp.net/DOWNLOAD/UTILITIES/SYSTEM/contents.htm#MACHINECHECK
Example:
# errlog +a ./binary.errlog | grep CPU | more
CPU slot 0 = (Serial Num. JA31700516) (Part Num. 54-30362-B3.C2 )
CPU slot 1 = (Serial Num. JA31700421) (Part Num. 54-30362-B3.C2 )
Method 2: wsea
Description: wsea is a utility to analyze the error log of EV6+ Alpha systems
Example:
# wsea x fru ./binary_cisa.errlog > fru.txt
# grep -E "part_number|serial_number" fru.txt |more
processor_serial_numberJA31700516
processor_serial_numberJA31700421
…
FRU_part_number 54-30362-B3.C2
FRU_serial_number JA31700516
FRU_part_number 54-30362-B3.C2
FRU_serial_number JA31700421
…
又或者:
#strings /var/adm/binary.errlog >/fru.txt
#cat fru.txt
这样如果是wsea能看到的这样也能看到。如果在wsea看不到,这样也会看不到。
Method 3: strings ./binary.errlog
Description: For the old module Alpha systems, i.e Alpha 4100, 2100, 1000, the errorlog and wsea don’t work for them, so you have to use the “strings” to decode the binay.errlog to get the fru.
Example:
# strings ./binary.errlog | more
…
Digital
AlphaServer 4000
ZG80902441 ß---------------------------System serial number
V5.4-2, 8-APR-1999 14:36:23
…
Digital
KA703TMAFN
Digital
200000007
B3004-DA < -----------------------------CPU module EV56, 466Mhz
KA703TMAFN < ---------------------------CPU serial number
V3.0
Digital
KA723WYJEJ
Digital
200000007
B3004-DA < ----------------------------- Another CPU
KA723WYJEJ
V3.0
Method 4: show fru
Example:
P00>>> show fru
FRUname E Part# Serial# Model/Other Alias/Misc
SMB0 00 54-25385-02.A01 AY12111139
SMB0.CPU0 80 54-30362-01.D01 AY04408875
SMB0.CPU1 00 54-30362-01.B01 AY02010641
SMB0.CPU2 00 54-30362-01.B01 AY02207110
SMB0.CPU3 00 54-30362-01.B01 AY02010606
…
Check the memory module number and serial number
Method 1: wsea
Note: You can’t get the memory module number and serial number of old Alpha systems, i.e. Alpha 4100, 2100, 1000
Example:
# wsea x fru ./binary.errlog > fru.txt
# grep -E "part_number|serial_number" fru.txt |more
…
FRU_part_number 20-01ESA08
FRU_serial_number 008cbc15
FRU_part_number 20-01ESA08
FRU_serial_number 0084bd15
FRU_part_number 54-25582-02.A03
FRU_serial_number AY12012478
FRU_part_number 20-01DSA08
FRU_serial_number 017a1b25
FRU_part_number 20-01DSA08
FRU_serial_number 00381b25
FRU_part_number 54-25582-02.A03
FRU_serial_number AY12012199
FRU_part_number 20-01DSA08
FRU_serial_number 01a81b25
FRU_part_number 20-01DSA08
FRU_serial_number 01a41b25…
Method 3: show fru
P00>>>show fru
FRUname E Part# Serial# Model/Other Alias/Misc
…
SMB0.MMB0 00 54-25582-02.A03 AY12012478
SMB0.MMB0.DIM1 00 20-00FSA-08 29a03f31 6704 7f
SMB0.MMB0.DIM2 00 20-00FSA-08 29a03f5e 6704 7f
SMB0.MMB1 00 54-25582-02.A03 AY12012199
SMB0.MMB1.DIM1 00 20-00FSA-08 29a03f32 6704 7f
SMB0.MMB1.DIM2 00 20-00FSA-08 29a03f6e 6704 7f
SMB0.MMB2 00 54-25582-02.A03 AY12012514
SMB0.MMB2.DIM1 c6 20-00FSA-08 29e073c1 671e 7f
SMB0.MMB2.DIM2 c6 20-00FSA-08 29e073be 671e 7f
SMB0.MMB3 00 54-25582-02.A03 AY12012457
SMB0.MMB3.DIM1 c6 20-00FSA-08 1d400d18 671e 7f
SMB0.MMB3.DIM2 86 20-00FSA-08 1d400de8 671e 7f
…
Check the hard disk module number of Alpha, HSG80 and EVA.
We can’t get the serial number of hard disks of Alpha, HSG80 or EVA unless you pull out the hard disk.
We can get the module number of hard disks
Check the module number of hard disks of Alpha Systems
# scu show edt
Example:
# scu show edt
CAM Equipment Device Table (EDT) Information:
Bus/Target/Lun Device Type ANSI Vendor ID Product ID Revision N/W
-------------- ----------- ------ --------- ---------------- -------- ---
0 4 0 CD-ROM SCSI-2 DEC RRD46 (C) DEC 1337 N
1 0 0 Direct SCSI-2 DEC RZ1CB-CS (C) DEC 0844 W
1 1 0 Direct SCSI-2 DEC RZ29B (C) DEC 0016 W
1 2 0 Direct SCSI-2 DEC RZ29B (C) DEC 0016 W
1 3 0 Direct SCSI-2 DEC RZ29B (C) DEC 0016 W
1 6 0 Direct SCSI-2 DEC RZ28M (C) DEC 1104 N
P00>>>show device
dka500.5.0.1.0 DKA500 RRD43 1084
dra0.0.0.1007.0 DRA0 1 Member JBOD
dra1.0.0.1007.0 DRA1 1 Member JBOD
dra2.0.0.1007.0 DRA2 1 Member JBOD
dva0.0.0.1000.0 DVA0 RX26/RX23
mka300.3.0.1.0 MKA300 TZK11 00A1
Check the module number of hard disks of HSG80
BOT> show disk full
…
Name Type Port Targ Lun Used by
-----------------------------------------------------------------------
DISK10000 disk 1 0 0 M1
COMPAQ BD0366349C 3B02
Switches:
NOTRANSPORTABLE
TRANSFER_RATE_REQUESTED=20MHZ(synchronous 20.00 MHZ
negotiated)
Size: 71114623 blocks
…
Check the module number of hard disks of EVA
Connect the SAN Management Appliance with SSSU
Issue the “show disk full”
Example:
EVA2> SHOW DISK FULL
Disks available on this Cell:
\Disk Groups\Default Disk Group\Disk 001 information:
Identification:
Name : \Disk Groups\Default Disk Group\Disk 001
Loop_Pair : LoopPair1
Node_World_Wide_ID : 2000-0004-CFC2-430D
rssid : 1
rssindex : 7
Loop A:
Port_World_Wide_ID : 2000-0004-CFC2-430D
Assigned_Lun : 0
Loop_ID : 105
loopalpa : 2d
Loop B:
Port_World_Wide_ID : 2000-0004-CFC2-430D
Assigned_Lun : 0
Loop_ID : 105
loopalpa : 2d
…
Physical:
Type : Fibre Channel Disk
Manufacturer : COMPAQ
Model_Number : BD07254498
Firmware_Revision : 3BE3
Formatted_Capacity : 67.83 GB
- 将帖子标记为未读
- 加注书签
- 订阅
- 禁止
- 订阅此主题的 RSS 提要
- 高亮显示此帖
- 打印此帖
- 报告不当内容
修改时间 03-01-2012 09:43 AM
修改时间 03-01-2012 09:43 AM
回复: 【经验共享】怎样在Alpha系统查看CPU、内存、硬盘的Part Number和序列号
不太明白这个alpha系统是啥么系统啊,true64还是openvms,还是其他?