Skip to content

Instantly share code, notes, and snippets.

@LazerPanther
Last active August 29, 2015 14:24
Show Gist options
  • Save LazerPanther/6207651e6364bcd2ea27 to your computer and use it in GitHub Desktop.
Save LazerPanther/6207651e6364bcd2ea27 to your computer and use it in GitHub Desktop.
Mac OSX El Captian Public Beta Dev Notes

#El Capitan Notes

  • /usr/bin is no longer writeable - even by root.
  • Xcode 7 required to build software

Vagrant:

  • Need to relink, since /usr/bin is not writeable
  • sudo ln -s /opt/vagrant/bin/vagrant /usr/local/bin/vagrant

Brew:

Homebrew 10.11 Issue Tracking

Reinstall required:

rm -rf /usr/local/.git
brew cleanup
# reinstall brew via the brew.sh script

MySQL:

  • Homebrew MySQL communication via 127.0.0.1 now instead of via mysql.sock


Write To NTFS

Install Homebrew:

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

Update Homebrew formulae:

brew update

Install Homebrew Cask

brew install caskroom/cask/brew-cask

Install osxfuse

brew cask install osxfuse

Install ntfs-3g

brew install homebrew/fuse/ntfs-3g

If you are on OSX 10.11 (El Capitan)

sudo nvram boot-args="rootless=0"

And reboot.

Create a symlink for mount_ntfs

sudo mv /sbin/mount_ntfs /sbin/mount_ntfs.original 
sudo ln -s /usr/local/sbin/mount_ntfs /sbin/mount_ntfs

Based on: http://apple.stackexchange.com/questions/152661/write-to-ntfs-formated-drives-on-yosemite


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment