Table of Contents

Server Setup

anubis host

Drives

Retired

Virtual Machines

baal

Exporting an NFS mount via NFS.

/pegasus/pub/music 192.168.0.0/16(ro,async,no_subtree_check,fsid=2)

carter

hathor

oneill

ra

jadin

Special Setup

NFS exports

On startup it seems that the NFS exports are getting applied before DNS is available, so the /etc/exports entries do not work properly. I created an /etc/rc.local script with these contents to rectify this:

#!/bin/sh

exportfs -a
sleep 2
exportfs -a
sleep 3
exportfs -a
sleep 5
exportfs -a
sleep 10
exportfs -a

To delay VM startup so the VM has a chance to mount NFS, add the following to /lib/systemd/system/libvirt-guests.service:

ExecStartPre=/bin/sleep 20