https://webinstall.dev/flutter
curl https://webinstall.dev/flutter | bash
https://webinstall.dev/flutter
curl https://webinstall.dev/flutter | bash
If your Mac is out-of-order or you otherwise cannot download macOS from the App Store, you can still create a bootable OS X recovery USB, and you can use that to create an Installer USB.
The downloads used in this process are legal and freely avaliable - including disk images directly from Apple's IT support pages, and open source utilities for extracting and converting pkg, dmg, and HFS+.
#################################################################################################### | |
# bootableinstaller.com # | |
#################################################################################################### | |
set -e | |
set -u | |
# Create an empty 5200m+ volume | |
hdiutil create -o high-sierra -size 5500m -volname "Install macOS High Sierra" -layout SPUD -fs HFS+J |
######################### | |
# bootableinstaller.com # | |
######################### | |
set -e | |
set -u | |
# Create an empty | |
hdiutil create -o /tmp/empty -size 8400m -volname "Mojave" -layout SPUD -fs HFS+J |
See https://bootableinstaller.com
In order to create a bootable macOS installer or bootable OS X Installer from Windows or Linux you'll need to have an empty ISO file.
These are various sizes of SPUD
/ Apple Partition Map
ISO files created with hdiutil
.
macOS verison | Suggested Minimum | Suggested Maximum |
---|
######################### | |
# bootableinstaller.com # | |
######################### | |
set -e | |
set -u | |
# Create an empty | |
hdiutil create -o /tmp/empty -size 8400m -volname "Catalina" -layout SPUD -fs HFS+J |
################################################################################ | |
# See bootableinstaller.com # | |
################################################################################ | |
# set strict and verbose modes for bash | |
set -e | |
set -u | |
# If the script already ran once successfully, don't re-run | |
if [ -f "el-capitan.iso" ]; then |
grep
for .icns
Similarly you could run this command, but it may take several minutes to complete:
Set Shortcut to run as admin:
Enable-WindowsOptionalFeature -Online -FeatureName 'microsoft-windows-subsystem-linux' -All -Verbose
Enable-WindowsOptionalFeature -Online -FeatureName 'VirtualMachinePlatform' -All -Verbose
Enable-WindowsOptionalFeature -Online -FeatureName 'HypervisorPlatform' -All -Verbose
package main | |
import ( | |
"bytes" | |
"fmt" | |
"os/exec" | |
"strings" | |
) | |
// PowerShell struct |