Deploying Oracle 10G RAC with Linux and ASM on ESXi Platform
Oracle 10G RAC+Linux+ASM Installation Guide
1. Software Preparation
10201_database_linux_x86_64.cpio - Oracle 10.2.0.1 database software
10201_clusterware_linux_x86_64.cpio.gz - Oracle 10.2.0.1 clusterware software
p8202632_10205_Linux-x86-64.zip - Oracle 10.2.0.5 upgrade package
2. System Environment Setup
Hostname
IP Addresses
Operating ...
Posted on Fri, 21 Aug 2026 16:14:57 +0000 by jamey
Retrieving Virtual Machine Device Information from ESXi Hosts Using Python
from pyVim.connect import SmartConnect
from pyVmomi import vim
import ssl
import json
def collect_vm_hardware(vm_obj):
hardware_list = []
try:
if vm_obj.config and hasattr(vm_obj.config.hardware, 'device'):
for hw in vm_obj.config.hardware.device:
if hasattr(hw.deviceInfo, 'label'):
...
Posted on Thu, 07 May 2026 10:21:46 +0000 by orange08