Jump to content

OS X in VirtualBox with AMD Host


8 posts in this topic

Recommended Posts

Alright. I've been working this problem most of today (wait, most of yesterday. Crud I'm up too late).

 

I would like to install OS X as a virtual machine with Virtual Box. I've been using VB pretty extensively to try out Linux distros and I'm very happy with the program.

 

 

I have a .dmg of the retail version of snow leopard. I also have a .iso of exactly the same file (converted via power iso). In addition I have an iso of Snow Leopard 10.6.2 SSE2.SSE3.INTEL.AMD which I downloaded after the retail copy failed.

 

In virtualbox I've tried these various settings:

 

OS: Mac OS X ()both versions) plus I've tried BSD/FreeBSD as the OS as some guides have suggested.

 

Base memory set to 1024 MB (12GB on the host so theres plenty to go around)

 

IP APIC and Absolute Pointing Device Enabled. EFI and Hardware Clock disabled.

 

PAE/NX enabled in Processor tab.

 

Acceleration enabled (Both VT-x/AMD-V and Nested Paging). Also enabled in host bios.

 

Display with 64mb of memory, no acceleration.

 

.vdi (hard drive) and any CD under an ICH6 IDE controller

 

Everything else as default. I've also toggled various settings here and there, which doesnt seem to produce any progress.

 

 

 

I've tried to boot [url="http://www.insanelymac.com/forum/topic/279450-why-insanelymac-does-not-support-tonymacx86/"]#####[/url] first, then load the ISO. All it does is hang at the apple boot screen.

Empire EFI (pretty much all the versions) gives me a

 

Memory Allocation error (0xdeadbeef, 0x0)

 

 

 

 

I've been testing out different combination of boot loaders, ISO's and VirtualBox settings for most of the day and I haven't gotten anywhere. At one point I googled the Memory Allocation error and opened every site on googles first page, but most guides seem to slide over the error with ease by changing something simple. Needless to say when I change the same thing my error does not go away.

 

Its been a long time since I've done anything with OS X (The last time I did anything Hackintosh wise was 2007 or so) so I'm not really 'up' on the current state of things.

 

So, anyone have any advice? Anyone experienced similar issues?

 

I'd appreciate any help and suggestions at this point I'm very stuck.

Link to comment
Share on other sites

Hey,

 

I'm running OSX on an AMD 64bit system using VirtualBox - near flawless and pretty fast... things to try:

 

Don't use the EFI option

 

Do use the VT-x/AMD-V option (if motherboard supports Hardware Virtualization)

 

Actually just see attached image...

 

I started with the LegacyBootCD.iso, but later moved to myHack_Installer_1.1.mpkg (BootLoader) - choosing the chocolate kernel (legacy), etc. from Customize.

 

http://www.mediafire.com/?wlmnngjaius LegacyBootCD.iso (not sure this is the latest)

 

http://osx86.sojugarden.com/2010/06/myhack...r-1-1-released/ EFI BootLoader

 

I'll check back later - if you have any questions.

post-425129-1302660613_thumb.png

Link to comment
Share on other sites

Glad to hear someone has done it. I'm having to take a break from trying for a day or two but I'll defiantly be trying out that EFI loader. I tried the LegacyBootCD.iso with the proper settings and several different ISO's (I have quiet a collection at this point) to no avail.

Link to comment
Share on other sites

Funny - I have quite the collection myself, alot of trial and error...

 

I did receive great advice from some of the experts here - first was to do a vanilla install, also - to get the best support, and know more about where the problem is - boot with the -v (verbose) option, and report your findings (where it's freezing, kernel panic, etc.).

 

Good luck, I will check back to see how you getting along - but I'm sure the real experts will kick in as soon as they have somthing more to work with.

Link to comment
Share on other sites

Funny - I have quite the collection myself, alot of trial and error...

 

I did receive great advice from some of the experts here - first was to do a vanilla install, also - to get the best support, and know more about where the problem is - boot with the -v (verbose) option, and report your findings (where it's freezing, kernel panic, etc.).

 

Good luck, I will check back to see how you getting along - but I'm sure the real experts will kick in as soon as they have somthing more to work with.

 

I thought verbose mode was an OS X thing? Or is it something that can be enabled in VirtualBox itself?

Link to comment
Share on other sites

I can get it installed with relative ease on VirtualBox using nawcom's disc (http://blog.nawcom.com), but I had a lot of issues getting it updated. Lots of kernel panics. At one point I actually had it updated to 10.6.7 with 1920x1080x32 resolution, working sound, and no issues at all. But I accidentally deleted it and was never able to get it back like that again. I switched over to VMWare and it's been a breeze. The audio is a bit more of a pain in the ass to get working on VMWare, but whatever.

 

 

At any rate, here is a script that I wrote to create the VirtualBox for myself. It wasn't really created with the intention of being distributed, but I'm posting it anyway in case there's anything in it that you find informative.

@echo off
 @echo Press any key to continue adding some custom settings.
 Pause>nul

 :: Two main settings are as follows:

 Set _Name=mac-osx-10.6.7-snow-leopard-amd64

 Set _Root=%~dp0

 Set _Cores=3

 ::Set _Storage=sata
 Set _Storage=ide

 Set _Audio=ac97
 Set _Audio=hda

 ::Set _HDD=vdi
 ::Set _HDD=vhd
 Set _HDD=vmdk

 ::Set _Chipset=ich9
 Set _Chipset=piix3


 REM Nothing to modify below this line.

 Pushd "%_Root%"
 Set _Root=%CD%
 Popd
 Pushd "%ProgramFiles%\Oracle\VirtualBox"
 If Exist "%_Root%\Machines\%_Name%\" (
   VBoxManage modifyvm "%_Name%" --cpus %_Cores%
   Call :%_Cores%_Cores
   ::VBoxManage modifyvm "%_Name%" --firmware efi64
   ::VBoxManage setextradata "%_Name%" VBoxInternal2/EfiGopMode 4
   ::VBoxManage setextradata "%_Name%" VBoxInternal2/EfiBootArgs " "
   echo changed to Intel CPU
   echo.
   echo Close this window now, or press any key to change back to default.
   pause>nul
   VBoxManage modifyvm "%_Name%" --cpuidremoveall
   Exit 0
 )
 If Not Exist "%_Root%\HDD" mkdir "%_Root%\HDD"
 VBoxManage createvm --name "%_Name%" --ostype MacOS_64 --register
 VBoxManage createhd --filename "%_Root%\HDD\%_Name%.%_HDD%" --format %_HDD% --size 40960
 VBoxManage modifyvm "%_Name%" --chipset %_Chipset% --cpus %_Cores%
 VBoxManage modifyvm "%_Name%" --memory 2048
 Call :%_Storage%
 VBoxManage modifyvm "%_Name%" --vram 128 --accelerate3d on
 VBoxManage modifyvm "%_Name%" --usb on --usbehci on --mouse ps2 --keyboard usb
 VBoxManage modifyvm "%_Name%" --acpi on --ioapic on
 VBoxManage modifyvm "%_Name%" --biosbootmenu messageandmenu --bioslogofadein off --bioslogofadeout on --bioslogodisplaytime 500
 VBoxManage modifyvm "%_Name%" --audio dsound --audiocontroller %_Audio%
 VBoxManage setextradata "%_Name%" VBoxInternal2/SmcDeviceKey  "ourhardworkbythesewordsguardedpleasedontsteal©AppleComputerInc"
 VBoxManage setextradata "%_Name%" "CustomVideoMode1" "1920x1080x32"
 echo.
 @echo If no errors are shown above, then everything was fine. 
 pause
 VBoxManage startvm "%_Name%" --type gui
 Popd
 exit

 :ide
 VBoxManage storagectl "%_Name%" --name "IDE Controller" --add ide --controller piix3
 VBoxManage storageattach "%_Name%" --storagectl "IDE Controller" --type hdd --port 0 --device 0 --medium "%_Root%\HDD\%_Name%.%_HDD%"
 VBoxManage storageattach "%_Name%" --storagectl "IDE Controller" --type dvddrive --port 0 --device 1 --medium "%_Root%\ISO\OSX86_ModCD-031111-171757.iso"
 Goto :EOF
 :sata
 VBoxManage storagectl "%_Name%" --name "SATA Controller" --add sata --controller IntelAHCI --hostiocache on
 VBoxManage storageattach "%_Name%" --storagectl "SATA Controller" --type hdd --port 0 --device 0 --medium "%_Root%\HDD\%_Name%.%_HDD%"
 VBoxManage storageattach "%_Name%" --storagectl "IDE Controller" --type dvddrive --port 1 --device 0 --medium "%_Root%\ISO\OSX86_ModCD-031111-171757.iso"
 Goto :EOF
 :2_Cores
 VBoxManage modifyvm "%_Name%" --cpuidset 00000000 0000000D 756E6547 6C65746E 49656E69 
 VBoxManage modifyvm "%_Name%" --cpuidset 00000001 0001067A 01020800 0408E3BD BFEBFBFF 
 VBoxManage modifyvm "%_Name%" --cpuidset 00000002 05B0B101 005657F0 00000000 2CB43048 
 VBoxManage modifyvm "%_Name%" --cpuidset 00000003 00000000 00000000 00000000 00000000 
 VBoxManage modifyvm "%_Name%" --cpuidset 00000004 04000121 01C0003F 0000003F 00000001 
 VBoxManage modifyvm "%_Name%" --cpuidset 00000005 00000040 00000040 00000003 00022220 
 VBoxManage modifyvm "%_Name%" --cpuidset 00000006 00000001 00000002 00000003 00000000 
 VBoxManage modifyvm "%_Name%" --cpuidset 00000007 00000000 00000000 00000000 00000000 
 VBoxManage modifyvm "%_Name%" --cpuidset 00000008 00000400 00000000 00000000 00000000 
 VBoxManage modifyvm "%_Name%" --cpuidset 00000009 00000000 00000000 00000000 00000000 
 ::VBoxManage modifyvm "%_Name%" --cpuidset 0000000A 07280202 00000000 00000000 00000503 
 ::VBoxManage modifyvm "%_Name%" --cpuidset 0000000B 00000000 00000000 00000000 00000000 
 ::VBoxManage modifyvm "%_Name%" --cpuidset 0000000C 00000000 00000000 00000000 00000000 
 ::VBoxManage modifyvm "%_Name%" --cpuidset 0000000D 00000003 00000240 00000240 00000000 
 VBoxManage modifyvm "%_Name%" --cpuidset 80000000 80000008 00000000 00000000 00000000 
 VBoxManage modifyvm "%_Name%" --cpuidset 80000001 00000000 00000000 00000001 20000000 
 VBoxManage modifyvm "%_Name%" --cpuidset 80000002 65746E49 2952286C 726F4320 4D542865 
 VBoxManage modifyvm "%_Name%" --cpuidset 80000003 44203229 43206F75 20205550 45202020 
 VBoxManage modifyvm "%_Name%" --cpuidset 80000004 30303637 20402020 36302E33 007A4847 
 VBoxManage modifyvm "%_Name%" --cpuidset 80000005 00000000 00000000 00000000 00000000 
 VBoxManage modifyvm "%_Name%" --cpuidset 80000006 00000000 00000000 0C006040 00000000 
 VBoxManage modifyvm "%_Name%" --cpuidset 80000007 00000000 00000000 00000000 00000000 
 VBoxManage modifyvm "%_Name%" --cpuidset 80000008 00003024 00000000 00000000 00000000 

 Goto :EOF

 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000000 0x0000000a 0x756e6547 0x6c65746e 0x49656e69
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000001 0x000006e8 0x01020800 0x0000c1a9 0xbfe9fbff
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000002 0x02b3b001 0x000000f0 0x00000000 0x2c04307d
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000003 0x00000000 0x00000000 0x00000000 0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000004 0x00000000 0x00000000 0x00000000 0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000005 0x00000040 0x00000040 0x00000003 0x00022220
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000006 0x00000001 0x00000002 0x00000001 0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000007 0x00000000 0x00000000 0x00000000 0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000008 0x00000000 0x00000000 0x00000000 0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000009 0x00000000 0x00000000 0x00000000 0x00000000
 ::VBoxManage modifyvm "%_Name%" --cpuidset 0x0000000a, 0: 0x07280201 0x00000000 0x00000000 0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x80000000 0x80000008 0x00000000 0x00000000 0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x80000001 0x00000000 0x00000000 0x00000000 0x00100000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x80000002 0x756e6547 0x20656e69 0x65746e49 0x2952286c
 VBoxManage modifyvm "%_Name%" --cpuidset 0x80000003 0x55504320 0x20202020 0x20202020 0x54202020
 VBoxManage modifyvm "%_Name%" --cpuidset 0x80000004 0x30303532 0x20402020 0x30302e32 0x007a4847
 VBoxManage modifyvm "%_Name%" --cpuidset 0x80000005 0x00000000 0x00000000 0x00000000 0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x80000006 0x00000000 0x00000000 0x08006040 0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x80000007 0x00000000 0x00000000 0x00000000 0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x80000008 0x00002020 0x00000000 0x00000000 0x00000000

 Goto :EOF

 :4_Cores
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000000        0x0000000B    0x756E6547    0x6C65746E    0x49656E69
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000001        0x000106A4    0x00100800    0x0098E3BD    0xBFEBFBFF
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000002        0x55035A01    0x00F0B2E4    0x00000000    0x09CA212C
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000003        0x00000000    0x00000000    0x00000000    0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000004        0x1C004121    0x01C0003F    0x0000003F    0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000004        0x1C004122    0x00C0003F    0x0000007F    0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000004        0x1C004143    0x01C0003F    0x000001FF    0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000004        0x1C03C163    0x03C0003F    0x00001FFF    0x00000002
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000005        0x00000040    0x00000040    0x00000003    0x00001120
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000006        0x00000003    0x00000002    0x00000001    0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000007        0x00000000    0x00000000    0x00000000    0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000008        0x00000000    0x00000000    0x00000000    0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000009        0x00000000    0x00000000    0x00000000    0x00000000
 ::VBoxManage modifyvm "%_Name%" --cpuidset 0x0000000A        0x07300403    0x00000040    0x00000000    0x00000603
 ::VBoxManage modifyvm "%_Name%" --cpuidset 0x0000000B        0x00000001    0x00000002    0x00000100    0x00000000
 ::VBoxManage modifyvm "%_Name%" --cpuidset 0x0000000B        0x00000004    0x00000008    0x00000201    0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x80000000        0x80000008    0x00000000    0x00000000    0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x80000001        0x00000000    0x00000000    0x00000001    0x28100800
 VBoxManage modifyvm "%_Name%" --cpuidset 0x80000002        0x65746E49    0x2952286C    0x726F4320    0x4D542865
 VBoxManage modifyvm "%_Name%" --cpuidset 0x80000003        0x37692029    0x55504320    0x20202020    0x20202020
 VBoxManage modifyvm "%_Name%" --cpuidset 0x80000004        0x30323920    0x20402020    0x37362E32    0x007A4847
 VBoxManage modifyvm "%_Name%" --cpuidset 0x80000005        0x00000000    0x00000000    0x00000000    0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x80000006        0x00000000    0x00000000    0x01006040    0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x80000007        0x00000000    0x00000000    0x00000000    0x00000100
 VBoxManage modifyvm "%_Name%" --cpuidset 0x80000008        0x00003024    0x00000000    0x00000000    0x00000000

 Goto :EOF

 VBoxManage modifyvm "%_Name%" --cpuidset         0x00000000              0x0000000D      0x756E6547      0x6C65746E      0x49656E69
 VBoxManage modifyvm "%_Name%" --cpuidset         0x00000001              0x000206A7      0x00100800      0x1FBAE3FF      0xBFEBFBFF
 VBoxManage modifyvm "%_Name%" --cpuidset         0x00000002              0x76035A01      0x00F0B2FF      0x00000000      0x00CA0000
 VBoxManage modifyvm "%_Name%" --cpuidset         0x00000003              0x00000000      0x00000000      0x00000000      0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset         0x00000004              0x1C004121      0x01C0003F      0x0000003F      0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset         0x00000004              0x1C004122      0x01C0003F      0x0000003F      0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset         0x00000004              0x1C004143      0x01C0003F      0x000001FF      0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset         0x00000004              0x1C03C163      0x03C0003F      0x00001FFF      0x00000006
 VBoxManage modifyvm "%_Name%" --cpuidset         0x00000005              0x00000040      0x00000040      0x00000003      0x00001120
 VBoxManage modifyvm "%_Name%" --cpuidset         0x00000006              0x00000077      0x00000002      0x0000000B      0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset         0x00000007              0x00000000      0x00000000      0x00000000      0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset         0x00000008              0x00000000      0x00000000      0x00000000      0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset         0x00000009              0x00000000      0x00000000      0x00000000      0x00000000
 ::VBoxManage modifyvm "%_Name%" --cpuidset         0x0000000A              0x07300403      0x00000000      0x00000000      0x00000603
 ::VBoxManage modifyvm "%_Name%" --cpuidset         0x0000000B              0x00000001      0x00000002      0x00000100      0x00000000
 ::VBoxManage modifyvm "%_Name%" --cpuidset         0x0000000B              0x00000004      0x00000008      0x00000201      0x00000000
 ::VBoxManage modifyvm "%_Name%" --cpuidset         0x0000000C              0x00000000      0x00000000      0x00000000      0x00000000
 ::VBoxManage modifyvm "%_Name%" --cpuidset         0x0000000D              0x00000000      0x00000000      0x00000000      0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset         0x80000000              0x80000008      0x00000000      0x00000000      0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset         0x80000001              0x00000000      0x00000000      0x00000001      0x28000800
 VBoxManage modifyvm "%_Name%" --cpuidset         0x80000002              0x20202020      0x20202020      0x65746E49      0x2952286C
 VBoxManage modifyvm "%_Name%" --cpuidset         0x80000003              0x726F4320      0x4D542865      0x37692029      0x3036322D
 VBoxManage modifyvm "%_Name%" --cpuidset         0x80000004              0x50432030      0x20402055      0x30342E33      0x007A4847
 VBoxManage modifyvm "%_Name%" --cpuidset         0x80000005              0x00000000      0x00000000      0x00000000      0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset         0x80000006              0x00000000      0x00000000      0x01006040      0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset         0x80000007              0x00000000      0x00000000      0x00000000      0x00000100
 VBoxManage modifyvm "%_Name%" --cpuidset         0x80000008              0x00003024      0x00000000      0x00000000      0x00000000

 Goto :EOF
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000000 0x0000000B 0x756E6547 0x6C65746E 0x49656E69
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000001 0x000106E5 0x04100800 0x0098E3FD 0xBFEBFBFF
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000002 0x55035A01 0x00F0B0E4 0x00000000 0x09CA212C
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000003 0x00000000 0x00000000 0x00000000 0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000004 0x1C004121 0x01C0003F 0x0000003F 0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000004 0x1C004122 0x00C0003F 0x0000007F 0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000004 0x1C004143 0x01C0003F 0x000001FF 0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000004 0x1C03C163 0x03C0003F 0x00001FFF 0x00000002
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000005 0x00000040 0x00000040 0x00000003 0x00001120
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000006 0x00000003 0x00000002 0x00000001 0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000007 0x00000000 0x00000000 0x00000000 0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000008 0x00000000 0x00000000 0x00000000 0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x00000009 0x00000000 0x00000000 0x00000000 0x00000000
 ::VBoxManage modifyvm "%_Name%" --cpuidset 0x0000000A 0x07300403 0x00000044 0x00000000 0x00000603
 ::VBoxManage modifyvm "%_Name%" --cpuidset 0x0000000B 0x00000001 0x00000001 0x00000100 0x00000004
 ::VBoxManage modifyvm "%_Name%" --cpuidset 0x0000000B 0x00000004 0x00000004 0x00000201 0x00000004
 VBoxManage modifyvm "%_Name%" --cpuidset 0x80000000 0x80000008 0x00000000 0x00000000 0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x80000001 0x00000000 0x00000000 0x00000001 0x28100000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x80000002 0x65746E49 0x2952286C 0x726F4320 0x4D542865
 VBoxManage modifyvm "%_Name%" --cpuidset 0x80000003 0x35692029 0x55504320 0x20202020 0x20202020
 VBoxManage modifyvm "%_Name%" --cpuidset 0x80000004 0x30363720 0x20402020 0x30382E32 0x007A4847
 VBoxManage modifyvm "%_Name%" --cpuidset 0x80000005 0x00000000 0x00000000 0x00000000 0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x80000006 0x00000000 0x00000000 0x01006040 0x00000000
 VBoxManage modifyvm "%_Name%" --cpuidset 0x80000007 0x00000000 0x00000000 0x00000000 0x00000100
 VBoxManage modifyvm "%_Name%" --cpuidset 0x80000008 0x00003024 0x00000000 0x00000000 0x00000000

 Goto :EOF

Note that the CPUID stuff was just experimentation to see if I could bypass some of the issues I was having and use the default VirtualBox EFI, but it never worked. I thought it was a really clever idea, but it just didn't work. :(

 

The script expects itself to be in a directory that has subdirectories HDD and ISO to store hard disk images and CD images, respectively. It also expects that the machine directory is located in a subdirectory called Machines. That's just how I organize my files. Again, this script wasn't intended to be distributed; I just didn't want it to go to waste.

Link to comment
Share on other sites

 Share

×
×
  • Create New...