osxfuse


brew cask install osxfuse
brew install sshfs 
sshfs long@192.168.128.21:/home/mount/ mount  -o volname=dev

-o volname=... where you replace the ... with the volume name.

alias mount_raid=“diskutil umount force $RAID;sshfs long@$dev:/raid $RAID”
sync_ir(){
 fswatch -o /home/dev | xargs -n1 -I{} /home/local/sync_ir.sh
 }


diskutil umount force $RAID;sshfs long@$dev:/raid $RAID

Last updated