Installing El Capitain on VRBox Mountain Lion

Discussions related to using VirtualBox on Mac OS X hosts.
Post Reply
RASEVEN
Posts: 4
Joined: 31. Aug 2015, 17:20

Installing El Capitain on VRBox Mountain Lion

Post by RASEVEN »

Hello, i am trying to install El Capitain on a mac running with OSX 10.8.5. It has 12 gb ram and a 520 Gb SSD.
I installed the lastest VRbox, and set up a VR machine. But when i choose the ISO file and run the machine nothing happens it just says:
Press ESC in 4 sec to skip startup.nsh or any other key to continue. And then it just says 2.0 Shell....

But if i read many tuts on Yosemite in a VRBox it should automatically startup and i can choose to install.
loukingjr
Volunteer
Posts: 8851
Joined: 30. Apr 2009, 09:45
Primary OS: Mac OS X other
VBox Version: VirtualBox+Oracle ExtPack
Guest OSses: just about all that run

Re: Installing El Capitain on VRBox Mountain Lion

Post by loukingjr »

How did you create the .iso and which version of 10.11 did you use? developer preview 1 or public beta 1?
OSX, Linux and Windows Hosts & Guests
There are three groups of people. Those that can count and those that can't.
RASEVEN
Posts: 4
Joined: 31. Aug 2015, 17:20

Re: Installing El Capitain on VRBox Mountain Lion

Post by RASEVEN »

I used this script to create the .ISO

Code: Select all

# Mount the installer image
hdiutil attach /Applications/EL_CAPITAIN.app/Contents/SharedSupport/InstallESD.dmg -noverify -nobrowse -mountpoint /Volumes/install_app

# Convert the boot image to a sparse bundle
hdiutil convert /Volumes/install_app/BaseSystem.dmg -format UDSP -o /tmp/EL_CAPITAIN

# Increase the sparse bundle capacity to accommodate the packages
hdiutil resize -size 8g /tmp/EL_CAPITAIN.sparseimage

# Mount the sparse bundle for package addition
hdiutil attach /tmp/EL_CAPITAIN.sparseimage -noverify -nobrowse -mountpoint /Volumes/install_build

# Remove Package link and replace with actual files
rm /Volumes/install_build/System/Installation/Packages
cp -rp /Volumes/install_app/Packages /Volumes/install_build/System/Installation/

# Unmount the installer image
hdiutil detach /Volumes/install_app

# Unmount the sparse bundle
hdiutil detach /Volumes/install_build

# Resize the partition in the sparse bundle to remove any free space
hdiutil resize -size `hdiutil resize -limits /tmp/EL_CAPITAIN.sparseimage | tail -n 1 | awk '{ print $1 }'`b /tmp/EL_CAPITAIN.sparseimage

# Convert the sparse bundle to ISO/CD master
hdiutil convert /tmp/EL_CAPITAIN.sparseimage -format UDTO -o /tmp/EL_CAPITAIN

# Remove the sparse bundle
rm /tmp/EL_CAPITAIN.sparseimage

# Rename the ISO and move it to the desktop
mv /tmp/EL_CAPITAIN.cdr ~/Desktop/EL_CAPITAIN.iso
And i have OS X El Capitan Public Beta 7
loukingjr
Volunteer
Posts: 8851
Joined: 30. Apr 2009, 09:45
Primary OS: Mac OS X other
VBox Version: VirtualBox+Oracle ExtPack
Guest OSses: just about all that run

Re: Installing El Capitain on VRBox Mountain Lion

Post by loukingjr »

First let me state I have not tried to install the 10.11 Public beta as a guest. I do have a couple questions though. Did you rename the "Install OS X El Capitan Public Beta.app" to "EL_CAPITAIN.app" and did you read somewhere that was permissible? The other question I have is do you have the full 6+ GB installer or the 2+ GB delta updater?

FWIW I have read in a few places that people have successfully installed the developer beta as a guest but had issues with the public beta.

Lastly, I assume you are aware that there are no guest additions for OSX guests and therefor many features will not work.
OSX, Linux and Windows Hosts & Guests
There are three groups of people. Those that can count and those that can't.
RASEVEN
Posts: 4
Joined: 31. Aug 2015, 17:20

Re: Installing El Capitain on VRBox Mountain Lion

Post by RASEVEN »

yes i renamed it, for the script to work.
And yes i have the "Install OS X El Capitan Public Beta.app". 6 GB.
loukingjr
Volunteer
Posts: 8851
Joined: 30. Apr 2009, 09:45
Primary OS: Mac OS X other
VBox Version: VirtualBox+Oracle ExtPack
Guest OSses: just about all that run

Re: Installing El Capitain on VRBox Mountain Lion

Post by loukingjr »

All I can say is I've never seen people renaming the app to create the .iso. That doesn't mean it won't work. However the error you are getting is the same error others had trying to create a guest using the public beta whereas they didn't get the error with the developer preview. Not just with VirtualBox btw.

Seeing OSX is not a supported guest in VirtualBox, you'll have to wait until someone has successfully installed the public beta in VB and hope they report how they did it on the forum.
OSX, Linux and Windows Hosts & Guests
There are three groups of people. Those that can count and those that can't.
RASEVEN
Posts: 4
Joined: 31. Aug 2015, 17:20

Re: Installing El Capitain on VRBox Mountain Lion

Post by RASEVEN »

Thnx for the info :-)
loukingjr
Volunteer
Posts: 8851
Joined: 30. Apr 2009, 09:45
Primary OS: Mac OS X other
VBox Version: VirtualBox+Oracle ExtPack
Guest OSses: just about all that run

Re: Installing El Capitain on VRBox Mountain Lion

Post by loukingjr »

anytime.
OSX, Linux and Windows Hosts & Guests
There are three groups of people. Those that can count and those that can't.
greatfox
Posts: 2
Joined: 5. Oct 2015, 11:01

Re: Installing El Capitain on VRBox Mountain Lion

Post by greatfox »

RASEVEN wrote:I used this script to create the .ISO

Code: Select all

# Mount the installer image
hdiutil attach /Applications/EL_CAPITAIN.app/Contents/SharedSupport/InstallESD.dmg -noverify -nobrowse -mountpoint /Volumes/install_app

# Convert the boot image to a sparse bundle
hdiutil convert /Volumes/install_app/BaseSystem.dmg -format UDSP -o /tmp/EL_CAPITAIN

# Increase the sparse bundle capacity to accommodate the packages
hdiutil resize -size 8g /tmp/EL_CAPITAIN.sparseimage

# Mount the sparse bundle for package addition
hdiutil attach /tmp/EL_CAPITAIN.sparseimage -noverify -nobrowse -mountpoint /Volumes/install_build

# Remove Package link and replace with actual files
rm /Volumes/install_build/System/Installation/Packages
cp -rp /Volumes/install_app/Packages /Volumes/install_build/System/Installation/

# Unmount the installer image
hdiutil detach /Volumes/install_app

# Unmount the sparse bundle
hdiutil detach /Volumes/install_build

# Resize the partition in the sparse bundle to remove any free space
hdiutil resize -size `hdiutil resize -limits /tmp/EL_CAPITAIN.sparseimage | tail -n 1 | awk '{ print $1 }'`b /tmp/EL_CAPITAIN.sparseimage

# Convert the sparse bundle to ISO/CD master
hdiutil convert /tmp/EL_CAPITAIN.sparseimage -format UDTO -o /tmp/EL_CAPITAIN

# Remove the sparse bundle
rm /tmp/EL_CAPITAIN.sparseimage

# Rename the ISO and move it to the desktop
mv /tmp/EL_CAPITAIN.cdr ~/Desktop/EL_CAPITAIN.iso
And i have OS X El Capitan Public Beta 7
for some guide, you need cp BaseSystem.dmg and BaseSystem.checklist to install_build.
but, I met same problem even if i have copied those files.
loukingjr
Volunteer
Posts: 8851
Joined: 30. Apr 2009, 09:45
Primary OS: Mac OS X other
VBox Version: VirtualBox+Oracle ExtPack
Guest OSses: just about all that run

Re: Installing El Capitain on VRBox Mountain Lion

Post by loukingjr »

Just to clarify some things, not all of the developer or public seeds were full installers but updates only so of course you couldn't use the update images to create a guest. That being said, El Capitan has been released so you can create a VB guest on an OSX host if you care to.
OSX, Linux and Windows Hosts & Guests
There are three groups of people. Those that can count and those that can't.
socratis
Site Moderator
Posts: 27329
Joined: 22. Oct 2010, 11:03
Primary OS: Mac OS X other
VBox Version: VirtualBox+Oracle ExtPack
Guest OSses: Win(*>98), Linux*, OSX>10.5
Location: Greece

Re: Installing El Capitain on VRBox Mountain Lion

Post by socratis »

Take a look at this thread on the Mac OS X Guests board (actually, this is where this thread belongs as well, but, hey...), especially the explanation that I found in a linked article.
Do NOT send me Personal Messages (PMs) for troubleshooting, they are simply deleted.
Do NOT reply with the "QUOTE" button, please use the "POST REPLY", at the bottom of the form.
If you obfuscate any information requested, I will obfuscate my response. These are virtual UUIDs, not real ones.
loukingjr
Volunteer
Posts: 8851
Joined: 30. Apr 2009, 09:45
Primary OS: Mac OS X other
VBox Version: VirtualBox+Oracle ExtPack
Guest OSses: just about all that run

Re: Installing El Capitain on VRBox Mountain Lion

Post by loukingjr »

personalty I use VirtualBox for Windows and Linux guests but a nameless hypervisor for OSX guests. One because of the lack of guest additions for OSX in VB and two because I can just drop the OSX install apps onto the program without converting them to an .iso.
OSX, Linux and Windows Hosts & Guests
There are three groups of people. Those that can count and those that can't.
Post Reply