Posts

Showing posts with the label virtual box

Oracle10g Installation with ASM in Oracle Virtual Box

--- Create ASM Disk -------- VBoxManage.exe createhd --filename asm1.vdi --size 4096 --format VDI --variant Fixed VBoxManage.exe createhd --filename asm2.vdi --size 4096 --format VDI --variant Fixed VBoxManage.exe storageattach ORALINUXASM --storagectl "SATA Controller" --port 1 --device 0 --type hdd --medium asm1.vdi --mtype shareable VBoxManage.exe storageattach ORALINUXASM --storagectl "SATA Controller" --port 2 --device 0 --type hdd --medium asm2.vdi --mtype shareable VBoxManage.exe modifyhd asm1.vdi --type shareable VBoxManage.exe modifyhd asm2.vdi --type shareable --- Output of the commands ------- C:\Program Files\Oracle\VirtualBox>VBoxManage.exe createhd --filename asm1.vdi --size 4096 --format VDI --variant Fixed 0%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100% Disk image created. UUID: 67e80984-5851-4643-92d4-d6c56798d725 C:\Program Files\Oracle\VirtualBox>VBoxManage.exe createhd --filename asm2.vdi --size 4096 --format VDI --varian...