setaOffice

Intelligence Desk (and hopefully an agency in the future)

Problems mounting an OCFS2 filesystem under Linux – Transport endpoint is not connected

Posted by Emerson Takahashi on June 15, 2009

I had a problem mounting an ocfs2 filesystem under Oracle Cluster Management Software.
root@oracm1:~# mount -a
mount.ocfs2: Transport endpoint is not connected while mounting /dev/mapper/oravg01-lvu03 on /u03. Check ‘dmesg’ for more information on this error.

The error message said to check dmesg for more information and there it was. The cluster was not handshaking with the other node because the network timeout was different.
root@oracm1:~# dmesg
Buffer I/O error on device sdab, logical block 262143
(8290,0):o2net_check_handshake:1180 node brsaoora2 (num 1) at 192.168.2.101:7777 uses a network idle timeout of 10000 ms, but we use 30000 ms locally.  disconnecting
(8211,0):dlm_request_join:901 ERROR: status = -107
(8211,0):dlm_try_to_join_domain:1049 ERROR: status = -107
(8211,0):dlm_join_domain:1321 ERROR: status = -107
(8211,0):dlm_register_domain:1514 ERROR: status = -107
(8211,0):ocfs2_dlm_init:2024 ERROR: status = -107
(8211,0):ocfs2_mount_volume:1133 ERROR: status = -107
ocfs2: Unmounting device (253,7) on (node 0)

I entered the other cluster node to check the cluster status. The heartbeat is active and the timeout is 10000.
root@oracm2:~# service o2cb status
Module “configfs”: Loaded
Filesystem “configfs”: Mounted
Module “ocfs2_nodemanager”: Loaded
Module “ocfs2_dlm”: Loaded
Module “ocfs2_dlmfs”: Loaded
Filesystem “ocfs2_dlmfs”: Mounted
Checking O2CB cluster ocfs2: Online
Heartbeat dead threshold: 61
Network idle timeout: 10000
Network keepalive delay: 5000
Network reconnect delay: 2000
Checking O2CB heartbeat: Active

root@oracm1:~# service 0o2cb status
Module “configfs”: Loaded
Filesystem “configfs”: Mounted
Module “ocfs2_nodemanager”: Loaded
Module “ocfs2_dlm”: Loaded
Module “ocfs2_dlmfs”: Loaded
Filesystem “ocfs2_dlmfs”: Mounted
Checking O2CB cluster ocfs2: Online
Heartbeat dead threshold: 61
Network idle timeout: 30000
Network keepalive delay: 5000
Network reconnect delay: 2000
Checking O2CB heartbeat: Not active

The host oracm1 needs to have exactly the same configuration as oracm2, so I invoked the o2cb script with the configure parameter to reconfigure the timeout.
root@oracm1:~# service o2cb configure
Configuring the O2CB driver.

This will configure the on-boot properties of the O2CB driver.
The following questions will determine whether the driver is loaded on
boot.  The current values will be shown in brackets (’[]‘).  Hitting
<ENTER> without typing an answer will keep that current value.  Ctrl-C
will abort.

Load O2CB driver on boot (y/n) [y]: y
Cluster to start on boot (Enter “none” to clear) [ocfs2]: ocfs2
Specify heartbeat dead threshold (>=7) [61]: 61
Specify network idle timeout in ms (>=5000) [30000]: 10000
Specify network keepalive delay in ms (>=1000) [5000]: 5000
Specify network reconnect delay in ms (>=2000) [2000]: 2000
Writing O2CB configuration: OK
O2CB cluster ocfs2 already online

I restarted the o2cb service
root@oracm1:~# service o2cb stop
root@oracm1:~# service o2cb start

And checked that the node entered the cluster.
root@oracm1:$ORACLE_HOME/oracm/log # grep “Successful reconfiguration” cm.log
Successful reconfiguration,  2 active node(s) node 1 is the master, my node num is 0 (reconfig 22) {Thu Jun 11 13:17:32 2009 }

root@oracm1:~# df -h /u03
Filesystem            Size  Used Avail Use% Mounted on
/dev/mapper/oravg01-lvu03
30G   29G  1.1G  97% /u03
root@oracm1:~# mount | grep u03
/dev/mapper/oravg01-lvu03 on /u03 type ocfs2 (rw,_netdev,datavolume,nointr,heartbeat=local)

Posted in Sysadmin | Tagged: , | Leave a Comment »

Xming – Warning: Cannot convert string to type FontStruct

Posted by Emerson Takahashi on May 2, 2009

I have a Windows desktop and I was connecting to a Linux server and starting an X11 application where displayed the following “error” message:

Warning: Cannot convert string “-*-lucida-medium-r-*-*-*-*-*-*-*-*-iso8859-1″ to type FontStruct

I downloaded  Xming-fonts and this solved the problem for me.

Posted in Sysadmin | Tagged: , | Leave a Comment »

Download IBM WebSM for HMC v6

Posted by Emerson Takahashi on April 13, 2009

To download the Web Based System Manager client you simply open a browser window and type the URL http://<ip address of your HMC>/remote_client.html.

The Hardware Management Console v7 has web access, so you don’t need to install a client to use it.

Posted in Sysadmin | Tagged: , , | Leave a Comment »

Getting console access using IBM HMC v6 Command Line

Posted by Emerson Takahashi on April 13, 2009

To get a console access through a remote connection, first ssh to the HMC

emerson@shellcore:~ $ ssh hscroot@hmc6
password:

Then type vtmenu. It will retrieve all the physical servers connected and that can be managed by the HMC.

hscroot@localhost:~> vtmenu

Retrieving name of managed system(s) . . . Server-9117-570-SN103CBBB 2-Server-9117-570-SN103CABB Server-9117-570-SN069D5BF Server-9119-595-SN8211572

———————————————————-
Managed Systems:
———————————————————-
1) Server-9117-570-SN103CBBB
2) 2-Server-9117-570-SN103CABB
3) Server-9117-570-SN069D5BF
4) Server-9119-595-SN8211572

Enter Number of Managed System. (q to quit): 1

You choose one of the managed servers and then it will show all LPARs available on that physical server.

———————————————————-
Partitions On Managed System:  Server-9117-570-SN103CBBB
OS/400 Partitions not listed
———————————————————-
1)    LPAR1                                   Running
2)    LPAR2                                   Running
3)    LPAR3                                   Running

After you selected which LPAR you will control, you will be shown the login screen
Open in progress..

Open Completed.

AIX Version 5
Copyright IBM Corporation, 1982, 2008.
Console login:

To exit you type tilde, space, tilde, space, dot.

~ ~ .

Posted in Hardware, Sysadmin | Tagged: , | Leave a Comment »

Get hardware information under Linux

Posted by Emerson Takahashi on March 16, 2009

To get hardware information under Linux you use the dmidecode tool and pass a keyboard as an argument.

root@hostname:~ # dmidecode –type
Valid type keywords are:
bios
system
baseboard
chassis
processor
memory
cache
connector
slot

root@hostname:~ # dmidecode –type bios
# dmidecode 2.7
SMBIOS 2.5 present.

Handle 0×0005, DMI type 0, 24 bytes.
BIOS Information
Vendor: Intel Corporation
Version: SFC4UR.86B.01.00.0023.050220081213
Release Date: 05/02/2008
Address: 0xE8000
Runtime Size: 96 kB
ROM Size: 8192 kB
Characteristics:
PCI is supported
PNP is supported
BIOS is upgradeable
BIOS shadowing is allowed
Boot from CD is supported
Selectable boot is supported
EDD is supported
Print screen service is supported (int 5h)
8042 keyboard services are supported (int 9h)
Serial services are supported (int 14h)
CGA/mono video services are supported (int 10h)
ACPI is supported
USB legacy is supported
LS-120 boot is supported
ATAPI Zip drive boot is supported
BIOS boot specification is supported
Function key-initiated network boot is supported
Targeted content distribution is supported
BIOS Revision: 1.0
Firmware Revision: 0.0

Handle 0×0049, DMI type 13, 22 bytes.
BIOS Language Information
Installable Languages: 1
en|US|iso8859-1
Currently Installed Language: en|US|iso8859-1

root@hostname:~ # dmidecode –type system
# dmidecode 2.7
SMBIOS 2.5 present.

Handle 0×0002, DMI type 1, 27 bytes.
System Information
Manufacturer: Acer
Product Name: Altos R920
Version: Not Specified
Serial Number: Not Specified
UUID: E0BB31E0-E1CA-11DC-B32C-000BAB01BFD5
Wake-up Type: Power Switch
SKU Number: Not Specified
Family: Not Specified

Handle 0×0048, DMI type 12, 5 bytes.
System Configuration Options
Option 1: J1B1 1-2,3-4: Zone 3 Fan Speed Control.
Option 2: J8B1 1-2,3-4: Zone 2 Fan Speed Control.
Option 3: J9J2 1-2,3-4: Zone 1 Fan Speed Control.
Option 4: J3C2 2-3: Close to clear Password
Option 5: J3C3 2-3: Close to clear CMOS
Option 6: J3D1 1-2: Close to run BIOS Low Bank
Option 7: J5C1 2-3: Close to enable BMC Force Update Mode
Option 8: J6D1 2-3: Close to write-protect BMC Flash memory
Option 9: J1C2 1-2: Close to assert physical presence for TPM

Handle 0×004A, DMI type 32, 20 bytes.
System Boot Information
Status: No errors detected

root@hostname:~ # dmidecode –type baseboard
# dmidecode 2.7
SMBIOS 2.5 present.

Handle 0×0003, DMI type 2, 16 bytes.
Base Board Information
Manufacturer: Intel
Product Name: S7000FC4UR
Version: Not Specified
Serial Number: QSFX80801597
Asset Tag: Not Specified
Features:
Board is a hosting board
Board is replaceable
Location In Chassis: Not Specified
Chassis Handle: 0×0000
Type: Motherboard
Contained Object Handles: 0

Handle 0×0040, DMI type 10, 6 bytes.
On Board Device Information
Type: Video
Status: Enabled
Description: ATI Rage XL

Handle 0×0041, DMI type 10, 6 bytes.
On Board Device Information
Type: Ethernet
Status: Enabled
Description: Intel 82564EB Ethernet 1

Handle 0×0042, DMI type 10, 6 bytes.
On Board Device Information
Type: Ethernet
Status: Enabled
Description: Intel 82564EB Ethernet 2

Handle 0×0043, DMI type 10, 6 bytes.
On Board Device Information
Type: Ethernet
Status: Enabled
Description: Intel 82575EA Ethernet 3

Handle 0×0044, DMI type 10, 6 bytes.
On Board Device Information
Type: Ethernet
Status: Enabled
Description: Intel 82575EA Ethernet 4

Handle 0×0045, DMI type 10, 6 bytes.
On Board Device Information
Type: <OUT OF SPEC>
Status: Enabled
Description: ESB2 Integrated SATA Controller

Handle 0×0046, DMI type 10, 6 bytes.
On Board Device Information
Type: <OUT OF SPEC>
Status: Enabled
Description: LSI1078 SAS Controller

Handle 0×0047, DMI type 10, 6 bytes.
On Board Device Information
Type: Other
Status: Enabled
Description: NS PC87427 SIO3

root@hostname:~ # dmidecode –type chassis
# dmidecode 2.7
SMBIOS 2.5 present.

Handle 0×0004, DMI type 3, 22 bytes.
Chassis Information
Manufacturer: Not Specified
Type: Rack Mount Chassis
Lock: Not Present
Version: E10476-001
Serial Number: QSDH8090223
Asset Tag: Not Specified
Boot-up State: Safe
Power Supply State: Safe
Thermal State: Safe
Security Status: Unknown
OEM Information: 0×81581CF8
Heigth: 1 U
Number Of Power Cords: 1
Contained Elements: 0

root@hostname:~ # dmidecode –type processor
# dmidecode 2.7
SMBIOS 2.5 present.

Handle 0×004D, DMI type 4, 40 bytes.
Processor Information
Socket Designation: CPU_4
Type: Central Processor
Family: Xeon MP
Manufacturer: Intel(R) Corporation
ID: FB 06 00 00 FF FB EB BF
Signature: Type 0, Family 6, Model 15, Stepping 11
Flags:
FPU (Floating-point unit on-chip)
VME (Virtual mode extension)
DE (Debugging extension)
PSE (Page size extension)
TSC (Time stamp counter)
MSR (Model specific registers)
PAE (Physical address extension)
MCE (Machine check exception)
CX8 (CMPXCHG8 instruction supported)
APIC (On-chip APIC hardware supported)
SEP (Fast system call)
MTRR (Memory type range registers)
PGE (Page global enable)
MCA (Machine check architecture)
CMOV (Conditional move instruction supported)
PAT (Page attribute table)
PSE-36 (36-bit page size extension)
CLFSH (CLFLUSH instruction supported)
DS (Debug store)
ACPI (ACPI supported)
MMX (MMX technology supported)
FXSR (Fast floating-point save and restore)
SSE (Streaming SIMD extensions)
SSE2 (Streaming SIMD extensions 2)
SS (Self-snoop)
HTT (Hyper-threading technology)
TM (Thermal monitor supported)
PBE (Pending break enabled)
Version: Intel(R) Xeon(R) CPU           E7310  @ 1.60GHz
Voltage: 1.5 V
External Clock: 1066 MHz
Max Speed: 1600 MHz
Current Speed: 1600 MHz
Status: Populated, Enabled
Upgrade: ZIF Socket
L1 Cache Handle: 0×004F
L2 Cache Handle: 0×004E
L3 Cache Handle: Not Provided
Serial Number: Not Specified
Asset Tag: Not Specified
Part Number: Not Specified

Handle 0×0050, DMI type 4, 40 bytes.
Processor Information
Socket Designation: CPU_1
Type: Central Processor
Family: Xeon MP
Manufacturer: Intel(R) Corporation
ID: FB 06 00 00 FF FB EB BF
Signature: Type 0, Family 6, Model 15, Stepping 11
Flags:
FPU (Floating-point unit on-chip)
VME (Virtual mode extension)
DE (Debugging extension)
PSE (Page size extension)
TSC (Time stamp counter)
MSR (Model specific registers)
PAE (Physical address extension)
MCE (Machine check exception)
CX8 (CMPXCHG8 instruction supported)
APIC (On-chip APIC hardware supported)
SEP (Fast system call)
MTRR (Memory type range registers)
PGE (Page global enable)
MCA (Machine check architecture)
CMOV (Conditional move instruction supported)
PAT (Page attribute table)
PSE-36 (36-bit page size extension)
CLFSH (CLFLUSH instruction supported)
DS (Debug store)
ACPI (ACPI supported)
MMX (MMX technology supported)
FXSR (Fast floating-point save and restore)
SSE (Streaming SIMD extensions)
SSE2 (Streaming SIMD extensions 2)
SS (Self-snoop)
HTT (Hyper-threading technology)
TM (Thermal monitor supported)
PBE (Pending break enabled)
Version: Intel(R) Xeon(R) CPU           E7310  @ 1.60GHz
Voltage: 1.5 V
External Clock: 1066 MHz
Max Speed: 1600 MHz
Current Speed: 1600 MHz
Status: Populated, Enabled
Upgrade: ZIF Socket
L1 Cache Handle: 0×0052
L2 Cache Handle: 0×0051
L3 Cache Handle: Not Provided
Serial Number: Not Specified
Asset Tag: Not Specified
Part Number: Not Specified

Handle 0×0053, DMI type 4, 40 bytes.
Processor Information
Socket Designation: CPU_2
Type: Central Processor
Family: Xeon MP
Manufacturer: Intel(R) Corporation
ID: FB 06 00 00 FF FB EB BF
Signature: Type 0, Family 6, Model 15, Stepping 11
Flags:
FPU (Floating-point unit on-chip)
VME (Virtual mode extension)
DE (Debugging extension)
PSE (Page size extension)
TSC (Time stamp counter)
MSR (Model specific registers)
PAE (Physical address extension)
MCE (Machine check exception)
CX8 (CMPXCHG8 instruction supported)
APIC (On-chip APIC hardware supported)
SEP (Fast system call)
MTRR (Memory type range registers)
PGE (Page global enable)
MCA (Machine check architecture)
CMOV (Conditional move instruction supported)
PAT (Page attribute table)
PSE-36 (36-bit page size extension)
CLFSH (CLFLUSH instruction supported)
DS (Debug store)
ACPI (ACPI supported)
MMX (MMX technology supported)
FXSR (Fast floating-point save and restore)
SSE (Streaming SIMD extensions)
SSE2 (Streaming SIMD extensions 2)
SS (Self-snoop)
HTT (Hyper-threading technology)
TM (Thermal monitor supported)
PBE (Pending break enabled)
Version: Intel(R) Xeon(R) CPU           E7310  @ 1.60GHz
Voltage: 1.5 V
External Clock: 1066 MHz
Max Speed: 1600 MHz
Current Speed: 1600 MHz
Status: Populated, Enabled
Upgrade: ZIF Socket
L1 Cache Handle: 0×0055
L2 Cache Handle: 0×0054
L3 Cache Handle: Not Provided
Serial Number: Not Specified
Asset Tag: Not Specified
Part Number: Not Specified

Handle 0×0056, DMI type 4, 40 bytes.
Processor Information
Socket Designation: CPU_3
Type: Central Processor
Family: Xeon MP
Manufacturer: Intel(R) Corporation
ID: FB 06 00 00 FF FB EB BF
Signature: Type 0, Family 6, Model 15, Stepping 11
Flags:
FPU (Floating-point unit on-chip)
VME (Virtual mode extension)
DE (Debugging extension)
PSE (Page size extension)
TSC (Time stamp counter)
MSR (Model specific registers)
PAE (Physical address extension)
MCE (Machine check exception)
CX8 (CMPXCHG8 instruction supported)
APIC (On-chip APIC hardware supported)
SEP (Fast system call)
MTRR (Memory type range registers)
PGE (Page global enable)
MCA (Machine check architecture)
CMOV (Conditional move instruction supported)
PAT (Page attribute table)
PSE-36 (36-bit page size extension)
CLFSH (CLFLUSH instruction supported)
DS (Debug store)
ACPI (ACPI supported)
MMX (MMX technology supported)
FXSR (Fast floating-point save and restore)
SSE (Streaming SIMD extensions)
SSE2 (Streaming SIMD extensions 2)
SS (Self-snoop)
HTT (Hyper-threading technology)
TM (Thermal monitor supported)
PBE (Pending break enabled)
Version: Intel(R) Xeon(R) CPU           E7310  @ 1.60GHz
Voltage: 1.5 V
External Clock: 1066 MHz
Max Speed: 1600 MHz
Current Speed: 1600 MHz
Status: Populated, Enabled
Upgrade: ZIF Socket
L1 Cache Handle: 0×0058
L2 Cache Handle: 0×0057
L3 Cache Handle: Not Provided
Serial Number: Not Specified
Asset Tag: Not Specified
Part Number: Not Specified

[root@tfpgrid2 ~]# dmidecode –type memory
# dmidecode 2.7
SMBIOS 2.5 present.

Handle 0×005A, DMI type 16, 15 bytes.
Physical Memory Array
Location: Proprietary Add-on Card
Use: System Memory
Error Correction Type: Multi-bit ECC
Maximum Capacity: 64 GB
Error Information Handle: Not Provided
Number Of Devices: 8

Handle 0×005B, DMI type 17, 27 bytes.
Memory Device
Array Handle: 0×005A
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 4096 MB
Form Factor: <OUT OF SPEC>
Set: 1
Locator: Memory Board A, DIMM_1
Bank Locator: MEMORY RISER_A
Type: <OUT OF SPEC>
Type Detail: Synchronous
Speed: 667 MHz (1.5 ns)
Manufacturer: 0×017A
Serial Number: 0×00000000
Asset Tag: Not Specified
Part Number: 0×000000000000000000000000000000000000

Handle 0×005C, DMI type 17, 27 bytes.
Memory Device
Array Handle: 0×005A
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 4096 MB
Form Factor: <OUT OF SPEC>
Set: 2
Locator: Memory Board A, DIMM_2
Bank Locator: MEMORY RISER_A
Type: <OUT OF SPEC>
Type Detail: Synchronous
Speed: 667 MHz (1.5 ns)
Manufacturer: 0×017A
Serial Number: 0×00000000
Asset Tag: Not Specified
Part Number: 0×000000000000000000000000000000000000

Handle 0×005D, DMI type 17, 27 bytes.
Memory Device
Array Handle: 0×005A
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 4096 MB
Form Factor: <OUT OF SPEC>
Set: 3
Locator: Memory Board A, DIMM_3
Bank Locator: MEMORY RISER_A
Type: <OUT OF SPEC>
Type Detail: Synchronous
Speed: 667 MHz (1.5 ns)
Manufacturer: 0×017A
Serial Number: 0×00000000
Asset Tag: Not Specified
Part Number: 0×000000000000000000000000000000000000

Handle 0×005E, DMI type 17, 27 bytes.
Memory Device
Array Handle: 0×005A
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 4096 MB
Form Factor: <OUT OF SPEC>
Set: 4
Locator: Memory Board A, DIMM_4
Bank Locator: MEMORY RISER_A
Type: <OUT OF SPEC>
Type Detail: Synchronous
Speed: 667 MHz (1.5 ns)
Manufacturer: 0×017A
Serial Number: 0×00000000
Asset Tag: Not Specified
Part Number: 0×000000000000000000000000000000000000

Handle 0×005F, DMI type 17, 27 bytes.
Memory Device
Array Handle: 0×005A
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 4096 MB
Form Factor: <OUT OF SPEC>
Set: 5
Locator: Memory Board A, DIMM_5
Bank Locator: MEMORY RISER_A
Type: <OUT OF SPEC>
Type Detail: Synchronous
Speed: 667 MHz (1.5 ns)
Manufacturer: 0×017A
Serial Number: 0×00000000
Asset Tag: Not Specified
Part Number: 0×000000000000000000000000000000000000

Handle 0×0060, DMI type 17, 27 bytes.
Memory Device
Array Handle: 0×005A
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 4096 MB
Form Factor: <OUT OF SPEC>
Set: 6
Locator: Memory Board A, DIMM_6
Bank Locator: MEMORY RISER_A
Type: <OUT OF SPEC>
Type Detail: Synchronous
Speed: 667 MHz (1.5 ns)
Manufacturer: 0×017A
Serial Number: 0×00000000
Asset Tag: Not Specified
Part Number: 0×000000000000000000000000000000000000

Handle 0×0061, DMI type 17, 27 bytes.
Memory Device
Array Handle: 0×005A
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 4096 MB
Form Factor: <OUT OF SPEC>
Set: 7
Locator: Memory Board A, DIMM_7
Bank Locator: MEMORY RISER_A
Type: <OUT OF SPEC>
Type Detail: Synchronous
Speed: 667 MHz (1.5 ns)
Manufacturer: 0×017A
Serial Number: 0×00000000
Asset Tag: Not Specified
Part Number: 0×000000000000000000000000000000000000

Handle 0×0062, DMI type 17, 27 bytes.
Memory Device
Array Handle: 0×005A
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 4096 MB
Form Factor: <OUT OF SPEC>
Set: 8
Locator: Memory Board A, DIMM_8
Bank Locator: MEMORY RISER_A
Type: <OUT OF SPEC>
Type Detail: Synchronous
Speed: 667 MHz (1.5 ns)
Manufacturer: 0×017A
Serial Number: 0×00000000
Asset Tag: Not Specified
Part Number: 0×000000000000000000000000000000000000

Handle 0×0064, DMI type 16, 15 bytes.
Physical Memory Array
Location: Proprietary Add-on Card
Use: System Memory
Error Correction Type: Multi-bit ECC
Maximum Capacity: 64 GB
Error Information Handle: Not Provided
Number Of Devices: 8

Handle 0×0065, DMI type 17, 27 bytes.
Memory Device
Array Handle: 0×0064
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 4096 MB
Form Factor: <OUT OF SPEC>
Set: 1
Locator: Memory Board B, DIMM_1
Bank Locator: MEMORY RISER_B
Type: <OUT OF SPEC>
Type Detail: Synchronous
Speed: 667 MHz (1.5 ns)
Manufacturer: 0×017A
Serial Number: 0×00000000
Asset Tag: Not Specified
Part Number: 0×000000000000000000000000000000000000

Handle 0×0066, DMI type 17, 27 bytes.
Memory Device
Array Handle: 0×0064
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 4096 MB
Form Factor: <OUT OF SPEC>
Set: 2
Locator: Memory Board B, DIMM_2
Bank Locator: MEMORY RISER_B
Type: <OUT OF SPEC>
Type Detail: Synchronous
Speed: 667 MHz (1.5 ns)
Manufacturer: 0×017A
Serial Number: 0×00000000
Asset Tag: Not Specified
Part Number: 0×000000000000000000000000000000000000

Handle 0×0067, DMI type 17, 27 bytes.
Memory Device
Array Handle: 0×0064
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 4096 MB
Form Factor: <OUT OF SPEC>
Set: 3
Locator: Memory Board B, DIMM_3
Bank Locator: MEMORY RISER_B
Type: <OUT OF SPEC>
Type Detail: Synchronous
Speed: 667 MHz (1.5 ns)
Manufacturer: 0×017A
Serial Number: 0×00000000
Asset Tag: Not Specified
Part Number: 0×000000000000000000000000000000000000

Handle 0×0068, DMI type 17, 27 bytes.
Memory Device
Array Handle: 0×0064
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 4096 MB
Form Factor: <OUT OF SPEC>
Set: 4
Locator: Memory Board B, DIMM_4
Bank Locator: MEMORY RISER_B
Type: <OUT OF SPEC>
Type Detail: Synchronous
Speed: 667 MHz (1.5 ns)
Manufacturer: 0×017A
Serial Number: 0×00000000
Asset Tag: Not Specified
Part Number: 0×000000000000000000000000000000000000

Handle 0×0069, DMI type 17, 27 bytes.
Memory Device
Array Handle: 0×0064
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 4096 MB
Form Factor: <OUT OF SPEC>
Set: 5
Locator: Memory Board B, DIMM_5
Bank Locator: MEMORY RISER_B
Type: <OUT OF SPEC>
Type Detail: Synchronous
Speed: 667 MHz (1.5 ns)
Manufacturer: 0×017A
Serial Number: 0×00000000
Asset Tag: Not Specified
Part Number: 0×000000000000000000000000000000000000

Handle 0×006A, DMI type 17, 27 bytes.
Memory Device
Array Handle: 0×0064
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 4096 MB
Form Factor: <OUT OF SPEC>
Set: 6
Locator: Memory Board B, DIMM_6
Bank Locator: MEMORY RISER_B
Type: <OUT OF SPEC>
Type Detail: Synchronous
Speed: 667 MHz (1.5 ns)
Manufacturer: 0×017A
Serial Number: 0×00000000
Asset Tag: Not Specified
Part Number: 0×000000000000000000000000000000000000

Handle 0×006B, DMI type 17, 27 bytes.
Memory Device
Array Handle: 0×0064
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 4096 MB
Form Factor: <OUT OF SPEC>
Set: 7
Locator: Memory Board B, DIMM_7
Bank Locator: MEMORY RISER_B
Type: <OUT OF SPEC>
Type Detail: Synchronous
Speed: 667 MHz (1.5 ns)
Manufacturer: 0×017A
Serial Number: 0×00000000
Asset Tag: Not Specified
Part Number: 0×000000000000000000000000000000000000

Handle 0×006C, DMI type 17, 27 bytes.
Memory Device
Array Handle: 0×0064
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 4096 MB
Form Factor: <OUT OF SPEC>
Set: 8
Locator: Memory Board B, DIMM_8
Bank Locator: MEMORY RISER_B
Type: <OUT OF SPEC>
Type Detail: Synchronous
Speed: 667 MHz (1.5 ns)
Manufacturer: 0×017A
Serial Number: 0×00000000
Asset Tag: Not Specified
Part Number: 0×000000000000000000000000000000000000

root@hostname:~ # dmidecode –type cache
# dmidecode 2.7
SMBIOS 2.5 present.

Handle 0×004E, DMI type 7, 19 bytes.
Cache Information
Socket Designation: L2-Cache
Configuration: Enabled, Not Socketed, Level 2
Operational Mode: Write Back
Location: Internal
Installed Size: 4096 KB
Maximum Size: 4096 KB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Unified
Associativity: 8-way Set-associative

Handle 0×004F, DMI type 7, 19 bytes.
Cache Information
Socket Designation: L1-Cache
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 128 KB
Maximum Size: 128 KB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Data
Associativity: 8-way Set-associative

Handle 0×0051, DMI type 7, 19 bytes.
Cache Information
Socket Designation: L2-Cache
Configuration: Enabled, Not Socketed, Level 2
Operational Mode: Write Back
Location: Internal
Installed Size: 4096 KB
Maximum Size: 4096 KB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Unified
Associativity: 8-way Set-associative

Handle 0×0052, DMI type 7, 19 bytes.
Cache Information
Socket Designation: L1-Cache
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 128 KB
Maximum Size: 128 KB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Data
Associativity: 8-way Set-associative

Handle 0×0054, DMI type 7, 19 bytes.
Cache Information
Socket Designation: L2-Cache
Configuration: Enabled, Not Socketed, Level 2
Operational Mode: Write Back
Location: Internal
Installed Size: 4096 KB
Maximum Size: 4096 KB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Unified
Associativity: 8-way Set-associative

Handle 0×0055, DMI type 7, 19 bytes.
Cache Information
Socket Designation: L1-Cache
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 128 KB
Maximum Size: 128 KB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Data
Associativity: 8-way Set-associative

Handle 0×0057, DMI type 7, 19 bytes.
Cache Information
Socket Designation: L2-Cache
Configuration: Enabled, Not Socketed, Level 2
Operational Mode: Write Back
Location: Internal
Installed Size: 4096 KB
Maximum Size: 4096 KB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Unified
Associativity: 8-way Set-associative

Handle 0×0058, DMI type 7, 19 bytes.
Cache Information
Socket Designation: L1-Cache
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 128 KB
Maximum Size: 128 KB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Data
Associativity: 8-way Set-associative

root@hostname:~ # dmidecode –type connector
# dmidecode 2.7
SMBIOS 2.5 present.

Handle 0×0006, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: None
External Reference Designator: LAN 1
External Connector Type: RJ-45
Port Type: Network Port

Handle 0×0007, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: None
External Reference Designator: LAN 2
External Connector Type: RJ-45
Port Type: Network Port

Handle 0×0008, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: J1B2
Internal Connector Type: Other
External Reference Designator: Memory Fan 3
External Connector Type: None
Port Type: Other

Handle 0×0009, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: J1A1
Internal Connector Type: Other
External Reference Designator: Memory Fan 4
External Connector Type: None
Port Type: Other

Handle 0×000A, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: J8A3
Internal Connector Type: Other
External Reference Designator: Memory Fan 2
External Connector Type: None
Port Type: Other

Handle 0×000B, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: J8B2
Internal Connector Type: Other
External Reference Designator: Memory Fan 1
External Connector Type: None
Port Type: Other

Handle 0×000C, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: None
External Reference Designator: COM 1
External Connector Type: DB-9 male
Port Type: Serial Port 16550A Compatible

Handle 0×000D, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: J4A4
Internal Connector Type: 9 Pin Dual Inline (pin 10 cut)
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Serial Port 16550A Compatible

Handle 0×000E, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: DB-15 female
External Reference Designator: Video – Rear
External Connector Type: On Board Sound Input From CD-ROM
Port Type: Other

Handle 0×000F, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: J2E1
Internal Connector Type: Access Bus (USB)
External Reference Designator: Not Specified
External Connector Type: None
Port Type: USB

Handle 0×0010, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: None
External Reference Designator: USB 2
External Connector Type: Access Bus (USB)
Port Type: USB

Handle 0×0011, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: None
External Reference Designator: USB 3
External Connector Type: Access Bus (USB)
Port Type: USB

Handle 0×0012, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: J4B2 – IPMB
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other

Handle 0×0013, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: J3C1 – IButton
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other

Handle 0×0014, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: J3E1 – CD-RW/DVD
Internal Connector Type: <OUT OF SPEC>
External Reference Designator: Not Specified
External Connector Type: None
Port Type: <OUT OF SPEC>

Handle 0×0015, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: J3D1 – Internal SATA
Internal Connector Type: <OUT OF SPEC>
External Reference Designator: Not Specified
External Connector Type: None
Port Type: <OUT OF SPEC>

Handle 0×0016, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: J3F2 – SATA 1-4
Internal Connector Type: <OUT OF SPEC>
External Reference Designator: Not Specified
External Connector Type: None
Port Type: <OUT OF SPEC>

Handle 0×0017, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: J5F6 – Advanced Post
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other

Handle 0×0018, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: J1H1 – Chassis Intrusion
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other

Handle 0×0019, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: J9J1 – Front Panel
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other

Handle 0×001A, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: J6E1 – PLD ISP
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other

Handle 0×001B, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: J9K1 – Main Power
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other

Handle 0×001C, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: J9K2 – Main Power
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other

Handle 0×001D, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: J9K3 – Main Power
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other

Handle 0×001E, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: None
External Reference Designator: LAN 3
External Connector Type: RJ-45
Port Type: Network Port

Handle 0×001F, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: None
External Reference Designator: LAN 4
External Connector Type: RJ-45
Port Type: Network Port

Handle 0×0020, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: I/O Riser – J7C1 – RMM
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other

Handle 0×0021, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: I/O Riser – J8M1 – GCM
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other

Handle 0×0022, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: None
External Reference Designator: GCM NIC
External Connector Type: RJ-45
Port Type: Network Port

Handle 0×0023, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: SAS Backplane – J1A1 – CD-RW/DVD Power
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other

Handle 0×0024, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: SAS Backplane – J3A3 – Main Power
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other

Handle 0×0025, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: SAS Backplane – J3A2 – Front Fan Header
Internal Connector Type: Other
External Reference Designator: Front Fans 3-4
External Connector Type: None
Port Type: Other

Handle 0×0026, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: SAS Backplane – J3A2 – Front Fan Header
Internal Connector Type: Other
External Reference Designator: Front Fans 1-2
External Connector Type: None
Port Type: Other

Handle 0×0027, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: SAS Backplane – J4B1 – SAS Cable A
Internal Connector Type: <OUT OF SPEC>
External Reference Designator: Not Specified
External Connector Type: None
Port Type: <OUT OF SPEC>

Handle 0×0028, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: SAS Backplane – J3B1 – SAS Cable B
Internal Connector Type: <OUT OF SPEC>
External Reference Designator: Not Specified
External Connector Type: None
Port Type: <OUT OF SPEC>

Handle 0×0029, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: SAS Backplane – J1N1 – SAS HDD 0
Internal Connector Type: <OUT OF SPEC>
External Reference Designator: Not Specified
External Connector Type: None
Port Type: <OUT OF SPEC>

Handle 0×002A, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: SAS Backplane – J1N2 – SAS HDD 1
Internal Connector Type: <OUT OF SPEC>
External Reference Designator: Not Specified
External Connector Type: None
Port Type: <OUT OF SPEC>

Handle 0×002B, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: SAS Backplane – J2N2 – SAS HDD 2
Internal Connector Type: <OUT OF SPEC>
External Reference Designator: Not Specified
External Connector Type: None
Port Type: <OUT OF SPEC>

Handle 0×002C, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: SAS Backplane – J3N1 – SAS HDD 3
Internal Connector Type: <OUT OF SPEC>
External Reference Designator: Not Specified
External Connector Type: None
Port Type: <OUT OF SPEC>

Handle 0×002D, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: SAS Backplane – J4N1 – SAS HDD 4
Internal Connector Type: <OUT OF SPEC>
External Reference Designator: Not Specified
External Connector Type: None
Port Type: <OUT OF SPEC>

Handle 0×002E, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: SAS Backplane – J4N2 – SAS HDD 5
Internal Connector Type: <OUT OF SPEC>
External Reference Designator: Not Specified
External Connector Type: None
Port Type: <OUT OF SPEC>

Handle 0×002F, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: SAS Backplane – J5N1 – SAS HDD 6
Internal Connector Type: <OUT OF SPEC>
External Reference Designator: Not Specified
External Connector Type: None
Port Type: <OUT OF SPEC>

Handle 0×0030, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: SAS Backplane – J6N1 – SAS HDD 7
Internal Connector Type: <OUT OF SPEC>
External Reference Designator: Not Specified
External Connector Type: None
Port Type: <OUT OF SPEC>

Handle 0×0031, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: SAS Backplane – J3A1 – Front Panel
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other

Handle 0×0032, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: Front Panel – J1D1 – Baseboard
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other

Handle 0×0033, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: Front Panel – J1E1 – SAS Backplane
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other

Handle 0×0034, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: Front Panel – J1B1 – Button Panel
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other

Handle 0×0035, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: DB-15 female
External Reference Designator: Video – Front
External Connector Type: On Board Sound Input From CD-ROM
Port Type: Other

Handle 0×0036, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: None
External Reference Designator: USB 4
External Connector Type: Access Bus (USB)
Port Type: USB

Handle 0×0037, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: None
External Reference Designator: USB 5
External Connector Type: Access Bus (USB)
Port Type: USB

Handle 0×0038, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: None
External Reference Designator: USB 6
External Connector Type: Access Bus (USB)
Port Type: USB

Handle 0×0039, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: SAS Riser – SAS DIMM
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other

Handle 0×003A, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: SAS Riser – J14 – SAS Cable A
Internal Connector Type: <OUT OF SPEC>
External Reference Designator: Not Specified
External Connector Type: None
Port Type: <OUT OF SPEC>

Handle 0×003B, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: SAS Riser – J13 – SAS Cable B
Internal Connector Type: <OUT OF SPEC>
External Reference Designator: Not Specified
External Connector Type: None
Port Type: <OUT OF SPEC>

Handle 0×003C, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: SAS Riser – J15 – IBBU
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other

Handle 0×003D, DMI type 8, 9 bytes.
Port Connector Information
Internal Reference Designator: SAS Riser – J2 – SMB
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other

[root@tfpgrid2 ~]# dmidecode –type slot
# dmidecode 2.7
SMBIOS 2.5 present.

Handle 0×003E, DMI type 9, 13 bytes.
System Slot Information
Designation: I/O Riser
Type: x4 I/O Riser Card
Current Usage: In Use
Length: Other
Characteristics:
3.3 V is provided

Handle 0×003F, DMI type 9, 13 bytes.
System Slot Information
Designation: SAS Riser
Type: x4 I/O Riser Card
Current Usage: In Use
Length: Other
Characteristics:
3.3 V is provided

Handle 0×0059, DMI type 9, 13 bytes.
System Slot Information
Designation: Memory Board A
Type: 64-bit Proprietary Memory Card
Current Usage: In Use
Length: Other
Characteristics: None

Handle 0×0063, DMI type 9, 13 bytes.
System Slot Information
Designation: Memory Board B
Type: 64-bit Proprietary Memory Card
Current Usage: In Use
Length: Other
Characteristics: None

Handle 0×006D, DMI type 9, 13 bytes.
System Slot Information
Designation: Memory Board C
Type: 64-bit Proprietary Memory Card
Current Usage: Available
Length: Other
Characteristics: None

Handle 0×006E, DMI type 9, 13 bytes.
System Slot Information
Designation: Memory Board D
Type: 64-bit Proprietary Memory Card
Current Usage: Available
Length: Other
Characteristics: None

Handle 0×006F, DMI type 9, 13 bytes.
System Slot Information
Designation: Slot 1, PCI EXP x8
Type: x8 PCI Express
Current Usage: In Use
Length: Long
Characteristics:
3.3 V is provided
PME signal is supported
Hot-plug devices are supported
SMBus signal is supported

Handle 0×0070, DMI type 9, 13 bytes.
System Slot Information
Designation: Slot 2, PCI EXP x8
Type: x8 PCI Express
Current Usage: In Use
Length: Long
Characteristics:
3.3 V is provided
PME signal is supported
Hot-plug devices are supported
SMBus signal is supported

Handle 0×0071, DMI type 9, 13 bytes.
System Slot Information
Designation: Slot 3, PCI EXP x8
Type: x8 PCI Express
Current Usage: In Use
Length: Long
Characteristics:
3.3 V is provided
PME signal is supported
SMBus signal is supported

Handle 0×0072, DMI type 9, 13 bytes.
System Slot Information
Designation: Slot 4, PCI EXP x8
Type: x8 PCI Express
Current Usage: In Use
Length: Short
Characteristics:
3.3 V is provided
PME signal is supported
SMBus signal is supported

Handle 0×0073, DMI type 9, 13 bytes.
System Slot Information
Designation: Slot 5, PCI EXP x4
Type: x4 PCI Express
Current Usage: Available
Length: Short
Characteristics:
3.3 V is provided
PME signal is supported
SMBus signal is supported

Handle 0×0074, DMI type 9, 13 bytes.
System Slot Information
Designation: Slot 6, PCI EXP x4
Type: x4 PCI Express
Current Usage: Available
Length: Long
Characteristics:
3.3 V is provided
PME signal is supported
SMBus signal is supported

Handle 0×0075, DMI type 9, 13 bytes.
System Slot Information
Designation: Slot 7, PCI EXP x4
Type: x4 PCI Express
Current Usage: Available
Length: Long
Characteristics:
3.3 V is provided
PME signal is supported
SMBus signal is supported

Posted in Sysadmin | Tagged: , | Leave a Comment »

AIX Error Code 0503-003 geninstall: The specified device is not a valid device or file.

Posted by Emerson Takahashi on February 28, 2009

I had the following error when trying to upgrade AIX Maintenance Level: 0503-003 geninstall:  The specified device /tmp/patches is not a valid device or file.

What happened is that my .toc file was empty and I needed to recreate it using inutoc /tmp/patches. After that the upgrade went smoothly.

root@aix53:/ # instfix -i | grep ML
All filesets for 5.3.0.0_AIX_ML were found.
All filesets for 5300-01_AIX_ML were found.
All filesets for 5300-02_AIX_ML were found.
All filesets for 5300-03_AIX_ML were found.
All filesets for 5300-04_AIX_ML were found.
All filesets for 5300-05_AIX_ML were found.
All filesets for 5300-06_AIX_ML were found.
All filesets for 5300-07_AIX_ML were found.
All filesets for 5300-08_AIX_ML were found.
All filesets for 5300-09_AIX_ML were found.

Posted in Sysadmin | Tagged: | Leave a Comment »

Gears of War 2 in Brazil – Confusion over Flashback Maps DLC outside USA

Posted by Emerson Takahashi on November 16, 2008

The brazilian Gears of War 2 Standard Edition doesn’t have the Flashback Maps pack like the US version and it didn’t even have the Xbox Live Seal. The Xbox Live seal still appears at the Limited Edition of Gears of War 2.

South Africa and some other countries (Brazil included) also don’t so this is an widespread issue.

Brazilian Gears of War and Gears of War 2 box art
Brazilian Gears of War Box
Brazilian Gears of War 2 Box

Posted in Games | Tagged: , , , | Leave a Comment »

TechCrunch lays the Google’s strategy in Japan

Posted by Emerson Takahashi on August 31, 2008

Here is why I think Google’s Strategy In Japan: Avoid Yahoo And Take Over The Mobile Web First will fail.

Softbank mobile phones have a Yahoo! key.

You can see from the Engadget pages about Softbank pages where they show a close up from the mobile phones where the key is located. Softbank being an investor in Yahoo! Japan has a huge leverage and I don’t think that being inside the operator/carrier menu will bring market share to Google.

Being a physical key in your phone is an advantage that can’t be dismissed because not everyone knows how to access every function of their mobile phone.

Posted in Mobile | Tagged: , , , , | Leave a Comment »

Samsung E215

Posted by Emerson Takahashi on August 30, 2008

Samsung released a new mobile phone here in Brazil officially called Samsung E215L. It is currently advertised as an exclusive item by Submarino (a brazilian online retailer) and I didn’t find anywhere mentioning about this mobile phone so I decided to post some information.

Samsung released a press release saying that it could be found July 2008 but it was released August 2008.

This is what the sales package has:

  • Samsung E215 phone
  • Battery
  • Charger
  • Stereo earphone
  • 512MB MicroSD card
  • User guide
  • Warranty certificate

It features 19MB of internal memory, a VGA (640×480 pixels) camera, bluetooth and a memory slot to use up to 2GB MicroSD card.

Measuring 91 x 45 x 18mm and weighting 85g can be considered a small phone

The Samsung E215 is a quadriband phone and has an estimated 180 minutes of talk time and 250 standby time and retails for R$349,00.

Samsung E215 Box cover - Top
Samsung E215 Box cover - top front
Samsung E215 - Front closed
Samsung E215 - Front open
Samsung E215 - Battery Cover
Samsung E215 compared with a credit card
Samsung E215 - Left side
Samsung E215 - Right side

Posted in Hardware, Mobile | Tagged: , , , , | Leave a Comment »

EDS shareholders approved the merger with HP

Posted by Emerson Takahashi on July 31, 2008

The shareholders of my employer, EDS, voted for the merger with HP. It’s getting closer to the merger since no US agency has anything against it.

Posted in Enterprises | Tagged: | Leave a Comment »