Skip to content

Instantly share code, notes, and snippets.

View TomoakiNagahara's full-sized avatar

Tomoaki Nagahara TomoakiNagahara

View GitHub Profile
@dmilith
dmilith / BSD setup-zfs-and-share.sh
Created June 17, 2022 17:58
NFSv4 server on FreeBSD 13.1 and the macOS 12.4 client setup
zfs set sharenfs="-alldirs" MyZFSPoolName
zfs share -a
service rpcbind start
service statd start
service lockd start
service nfsuserd start
service nfscbd start
service nfsd start
@koshigoe
koshigoe / mount-ram.sh
Created February 11, 2011 14:57
Like tmpfs in Mac OSX
#!/bin/sh
# This program has two feature.
#
# 1. Create a disk image on RAM.
# 2. Mount that disk image.
#
# Usage:
# $0 <dir> <size>
#