- Ensure
TRIM
is enabled: UseSystem Profiler
andsudo trimforce enable
- Turn off
notification
- Turn off
siri
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
With autofs you can easily mount network volumes upon first access to the folder where you want to mount the volume. Autofs is available for many OS and is preinstalled on Mac OS X so I show you how I mounted my iTunes library folder using this method.
autofs needs to be configured so that it knows where to gets its configuration. Edit the file '/etc/auto_master' and add the last line:
#
# Automounter master map
#
+auto_master # Use directory service
Reference: https://www.cybrary.it/0p3n/macos-terminal-create-bootable-usb-iso-using-dd/
- Show attached devices:
diskutil list
- Locate the disk something like:
/dev/disk2
- Unmount the disk
diskutil unmountDisk /dev/diskX
- Copy the
.iso
:sudo dd if=/Users/kyle/Downloads/Linux.iso of=/dev/disk2 bs=8m
Some notes for creating and managing Mac OSx images and then distributing them onto client machines via NetRestore
- Mac mini (Late 2012)
- macOS Sierra Version 10.12.6
- Mac Server Version 5.3.1
- iMac 21.5" Desktop Intel 3.06 GHz, 4GB DDR3 RAM, 500GB HDD - MB950LL/A
This file contains 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
# Maybe use this: https://github.com/geerlingguy/macos-virtualbox-vm | |
#!/bin/bash | |
#taken from http://www.insanelymac.com/forum/topic/308533-how-to-create-a-bootable-el-capitan-iso-fo-vmware/ | |
# Mount the installer image | |
hdiutil attach /Applications/Install\ OS\ X\ El\ Capitan.app/Contents/SharedSupport/InstallESD.dmg -noverify -nobrowse -mountpoint /Volumes/install_app | |
# Create the ElCapitan Blank ISO Image of 7316mb with a Single Partition - Apple Partition Map |
- Create Partition with clean install of latest mac OS (sierra)
- Install/Configure the partition with desired applications, such as firefox or chrome, and files/documents you wish to be included on the image.
- Navigate to other partition on the same hard drive
- Open System Image Utility
- Under Source, select the partition you just created and loaded with apps/files.
- Follow instructions, make sure to select NetRestore, then the image will start to be created.
This file contains 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
function _getInvalidRule (rules, data, value) { | |
const resolveRuleResult = partial(_resolveRuleResult, [rules, data, value]) | |
const reducer = partial(_reducer, [resolveRuleResult]) | |
return Object.keys(rules).reduce(reducer, Promise.resolve(null)) | |
} | |
function _reducer (callback, accumulator, key) { | |
return pipeP( | |
always(accumulator), |
This file contains 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
https://support.apple.com/en-us/HT201372 | |
sudo /Applications/Install\ macOS\ Sierra.app/Contents/Resources/createinstallmedia --volume /Volumes/MyVolume --applicationpath /Applications/Install\ macOS\ Sierra.app | |
Debug network users: | |
https://discussions.apple.com/thread/6456928?start=0&tstart=0 |
NewerOlder