fixed1t Mac Support 728x90

Amazon Best Deals

Search This Blog

Showing posts with label Terminal Commands. Show all posts
Showing posts with label Terminal Commands. Show all posts

Saturday, 11 July 2015

I have been contacted by a user who pointed out that the link to this blog in my YouTube video:

How To Make A Apple Mac OS X Yosemite Installation Boot DVD

was no longer working.

I've deleted the original link and replaced it with a fully working link to this link.

Yosemite CD Terminal Commands 

If you find any further faults, please report them to me and I'll be happy to fix them ASAP.

Many thanks for your continued support.

#fixed1t

Friday, 30 January 2015

How To Make A Mac OS X Yosemite Installation Boot DVD

Yosemite Mac OS X system is free as a 6+ gig download so you only want to do it once and keeping a backup makes sense, here is how to make a Dual Layer Installation Boot DVD.




The terminal commands needed to do this are on:

This Blog Page

fixed1t

Terminal Commands To Create A OS X Yosemite DVD iso image

The following commands typed into the Mac Terminal Windows will create a Mac OS X Yosemite installation boot DVD iso image file that can be used to create a standalone Yosemite Installation DVD.  The fixed1t YouTube video:

How To Make A Mac OS X Yosemite Installation Boot DVD

will guide you through this process and subsequent step to make the DVD from the iso image file.   Here are the Terminal Commands for copying and pasting, this first command stretches of two lines, click at the end of it and drag all the way to the start of the first line before copying.

The Commands

hdiutil attach /Applications/Install\ OS\ X\ Yosemite.app/Contents/SharedSupport/InstallESD.dmg -noverify -nobrowse -mountpoint /Volumes/install_app

hdiutil convert /Volumes/install_app/BaseSystem.dmg -format UDSP -o /tmp/Yosemite

hdiutil resize -size 8g /tmp/Yosemite.sparseimage

hdiutil attach /tmp/Yosemite.sparseimage -noverify -nobrowse -mountpoint /Volumes/install_build

rm /Volumes/install_build/System/Installation/Packages

cp -rp /Volumes/install_app/Packages /Volumes/install_build/System/Installation/

cp -rp /Volumes/install_app/BaseSystem.chunklist /Volumes/install_build

cp -rp /Volumes/install_app/BaseSystem.dmg /Volumes/install_build

hdiutil detach /Volumes/install_app

hdiutil detach /Volumes/install_build

hdiutil resize -size `hdiutil resize -limits /tmp/Yosemite.sparseimage | tail -n 1 | awk '{ print $1 }'`b /tmp/Yosemite.sparseimage

hdiutil convert /tmp/Yosemite.sparseimage -format UDTO -o /tmp/Yosemite

rm /tmp/Yosemite.sparseimage

mv /tmp/Yosemite.cdr ~/Desktop/Yosemite.iso

Once this is completed, a Yosemite.iso disc image file should appear on the desktop.

fixed1t