nullfs examples and implementation

I'm new to FreeBSD and interested in file systems. I looking at 'nullfs'. Do we have any example file system implemented with help of nullfs? .Thanks for any links/tutorials on it
 
nullfs(5) isn't a 'real' filesystem. You can use it to mount directories, for lack of a better description. An example probably says more:
# mount -t nullfs /usr/ports /jail/j1/usr/ports
This will 'mount' the /usr/ports directory on /jail/j1/usr/ports/.
 
Back
Top