Skip to content

Instantly share code, notes, and snippets.

View nfaction's full-sized avatar

Matt DePorter nfaction

  • Mobile-Tech
  • Arizona, USA
View GitHub Profile

Keybase proof

I hereby claim:

  • I am nfaction on github.
  • I am spikebyte (https://keybase.io/spikebyte) on keybase.
  • I have a public key ASCfGr3f5o1T1JztfqJCNMQckDHG403P-2uW0uTccgeoVwo

To claim this, I am signing this object:

@nfaction
nfaction / osx_automount_nfs.md
Created October 29, 2018 04:14 — forked from L422Y/osx_automount_nfs.md
Automounting NFS share in OS X into /Volumes

I have spent quite a bit of time figuring out automounts of NFS shares in OS X...

Somewhere along the line, Apple decided allowing mounts directly into /Volumes should not be possible:

/etc/auto_master (see last line):

#
# Automounter master map
#

+auto_master # Use directory service

@nfaction
nfaction / Documentation.md
Created August 12, 2019 22:58 — forked from KartikTalwar/Documentation.md
Rsync over SSH - (40MB/s over 1GB NICs)

The fastest remote directory rsync over ssh archival I can muster (40MB/s over 1gb NICs)

This creates an archive that does the following:

rsync (Everyone seems to like -z, but it is much slower for me)

  • a: archive mode - rescursive, preserves owner, preserves permissions, preserves modification times, preserves group, copies symlinks as symlinks, preserves device files.
  • H: preserves hard-links
  • A: preserves ACLs