Mac Set Up
System Stuff
- Ensure
TRIM
is enabled: UseSystem Profiler
andsudo trimforce enable
- Turn off
notification
- Turn off
siri
TRIM
is enabled: Use System Profiler
and sudo trimforce enable
notification
siri
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/
diskutil list
/dev/disk2
diskutil unmountDisk /dev/diskX
.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
# 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 |
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), |
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 |
// go here to install package control | |
// https://packagecontrol.io/installation | |
// install Babel | |
// install Sass | |
{ | |
"always_show_minimap_viewport": true, | |
"binary_file_patterns": | |
[ | |
"*.sqlite", |