| # Generate a BaseSystem.dmg with 10.13 Install Packages | |
| hdiutil attach /Applications/Install\ macOS\ 10.13\ Beta.app/Contents/SharedSupport/InstallESD.dmg -noverify -mountpoint /Volumes/highsierra | |
| hdiutil create -o /tmp/HighSierraBase.cdr -size 7316m -layout SPUD -fs HFS+J | |
| hdiutil attach /tmp/HighSierraBase.cdr.dmg -noverify -mountpoint /Volumes/install_build | |
| asr restore -source /Applications/Install\ macOS\ 10.13\ Beta.app/Contents/SharedSupport/BaseSystem.dmg -target /Volumes/install_build -noprompt -noverify -erase | |
| cp -R /Volumes/highsierra/Packages /Volumes/OS\ X\ Base\ System/System/Installation | |
| hdiutil detach /Volumes/OS\ X\ Base\ System/ | |
| hdiutil detach /Volumes/highsierra/ | |
| mv /tmp/HighSierraBase.cdr.dmg /tmp/BaseSystem.dmg |
| #!/bin/bash | |
| prompt="$(PS1="$PS1" echo -n | bash --norc -i 2>&1)"; | |
| while [ true ]; do | |
| echo -n "${prompt%exit}"; | |
| read line; | |
| echo "-bash: $line: command not found"; | |
| done |
| #!/bin/bash | |
| ################################ | |
| # OS X Install ISO Creater # | |
| # # | |
| # Author: shela # | |
| ################################ | |
| ####################################### | |
| # Declarations |
| #!/bin/bash | |
| # | |
| # Credits to fuckbecauseican5 from https://www.reddit.com/r/hackintosh/comments/4s561a/macos_sierra_16a238m_install_success_and_guide/ | |
| # Adapted to work with the official image available into Mac App Store | |
| # | |
| # Enjoy! | |
| hdiutil attach /Applications/Install\ macOS\ Sierra.app/Contents/SharedSupport/InstallESD.dmg -noverify -nobrowse -mountpoint /Volumes/install_app | |
| hdiutil create -o /tmp/Sierra.cdr -size 7316m -layout SPUD -fs HFS+J | |
| hdiutil attach /tmp/Sierra.cdr.dmg -noverify -nobrowse -mountpoint /Volumes/install_build |
#Deploying BootCamp with DeployStudio & MDT/LiteTouch
So, you have a Windows Deployment Server and you'd like to use Microsoft Deployment Toolkit to image your Windows partitions on your dual-boot Macs.
Over the years--judging by the date of some of the posts I've seen on the topic--it seems that using MDT or SCCM to install BootCamp on a Mac en masse was more common in the past than it is now. Several folks cite their LiteTouch Task Sequences failing with this error or that ever since they upgraded from 2010 to something more modern.
There are other deployment tools out there for putting Windows on a Mac, but few are as flexible and modular as MDT--and things get even trickier in some ways with newer Macs that don't support Legacy booting, as their boot information is written to the EFI partition.
Using Windows-based installation tools ensures that the proper boot information gets written right the first time in the way Microsoft intended, no matter whether you are imaging a Legacy or UEFI-style instal
| 10.3 (Panther): | |
| https://swscan.apple.com/scanningpoints/scanningpointX.xml | |
| 10.4 (Tiger): | |
| https://swscan.apple.com/content/catalogs/index.sucatalog | |
| https://swscan.apple.com/content/catalogs/index-1.sucatalog | |
| 10.5 (Leopard): | |
| https://swscan.apple.com/content/catalogs/others/index-leopard.merged-1.sucatalog |
| #!ipxe | |
| set sysrcd-version 4.7.1 | |
| echo Booting SystemRescueCD ${sysrcd-version} x86 for ${initiator-iqn} | |
| # Kernel command-line options are documented here: | |
| # http://www.system-rescue-cd.org/Sysresccd-manual-en_Booting_the_CD-ROM#Network_boot_using_PXE | |
| set base-url sysrcd-${sysrcd-version}-x86/ | |
| kernel ${base-url}isolinux/altker${archs} setkmap=no net.ifnames=0 backstore=off | |
| initrd ${base-url}isolinux/initram.igz | |
| initrd ${base-url}sysrcd.dat /sysrcd.dat | |
| # Load the ramdisk again as a file inside the ramdisk, so our custom init script |
The Macbook Pro 11,3 (late 2013, Retina) is equipped with two GPUs:
- discrete: NVidia GPU: GeForce GT 750 M
- integrated: Intel Iris Pro
Currently under Linux the Intel GPU can only be used with the help of:
- gfxCardStatus v2.2.1
- faking the os identification:
- https://lists.gnu.org/archive/html/grub-devel/2013-12/msg00442.html
- https://bbs.archlinux.org/viewtopic.php?pid=1368083