- Install “MacInABox” under Apps.
- Container Starts automatically and installs two scripts.
- Script: Run Vmready Notify Script.
- Script: Run Macinabox helper.
- Start the created VM and access it via VNC.
- Select “MacOS” Base System and confirm.
- Select the “Disk Utility” in the selection screen.
- Format the hard disk.
- Close “Disk Utility” and select “Reinstall MacOS – Version.
- Set up MacOS normally. (Self-explanatory)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import ASUS.GPIO as GPIO | |
import os | |
import signal | |
import time | |
# Basic configuration | |
c_FAN = 26 # gpio pin the fan is connected to | |
c_FAN_TACHO = 19 # gpio pin the fan tachometer is connected to | |
c_MIN_TEMPERATURE = 45 # temperature in degrees c when fan should turn on |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!#/bin/bash/ | |
# Follow : https://docs.docker.com/install/linux/docker-ce/debian/#install-using-the-repository | |
# Installation for ARM SOC | |
apt-get remove docker docker-engine docker.io | |
apt-get update | |
apt-get install jq apt-transport-https ca-certificates curl gnupg2 software-properties-common | |
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add - |
OlderNewer