If you are one among those one million users who successfully downloaded and installed Yosemite public beta which offered by the Apple one week ago which was available free to download. But what if you are a regular Mac user and you have to switch between Yosemite beta and OS X Mavericks without any trouble. Fortunately we find an easy way to switch between Yosemite Beta and Mavericks by using simple code script, you can find here.
As we know that Apple already seeded four betas of OS X Yosemite but you got the public beta, and if you find an easy way to boot into another Operating system will be definitely a big ease for you rather hanging around for some other options.
See Also:
- Install OS X Yosemite Public Beta For Free [How To]
- OS X Mavericks 10.9.4 4th Beta Seeded To Developers [Build 13E25]
- OS X Mavericks 10.9.5 Beta Seeded To Developers [Build 13F7]
Here are few easy steps you can follow:
- Launch the Scrpit Editor by navigating âApplication -> Utilities ->Script Editorâ and click on new document
- Â Just paste following script in this new Apple Script document:
set deviceID to (do shell script âdiskutil list | awk â/Yosemite/ {print $NF}ââ) do shell script âbless -device /dev/â & deviceID & ¬ â -setBoot -nextonlyâ with administrator privileges tell application âFinderâ to restart
- Change âYosemiteâ with the partition name where OS X is installed for booting into OS X Mavericks automatically. For instance, your OS X Mavericks is installed on partition called âMacintosh HD,â in order to boot into OS X Mavericks, the very first line of code would be:
set deviceID to (do shell script âdiskutil list | awk â/Macintosh HD/ {print $NF}ââ)
Hereâs the script window should seem like:
NOTE: The same code on BootCamp to boot into Windows is somewhat different, as you have to add the word â-legacyâ before â -setBoot.â Just as before, make sure you have change directory location from the âBOOTCAMPâ, in case your partition using a different name.
set deviceID to (do shell script âdiskutil list | awk â/BOOTCAMP/ {print $NF}ââ) do shell script âbless -device /dev/â & deviceID & ¬ â -legacy -setBoot -nextonlyâ with administrator privileges tell application âFinderâ to restart
We suggest making scripts to switch between other OS by placing that code in each system partition, in order to make use of this method properly. We are highly exited by finding such easy script and what to you think.
No comments:
Post a Comment