Support #932
Setup an NFS Server on Alpine Linux
Start date:
04/08/2018
Due date:
% Done:
100%
Estimated time:
0.50 h
Description
This is a guide on setting up an NFS server on Alpine Linux.
Install NFS¶
- Make a directory to serve files from:
mkdir -p /srv/nfs/public
- Install nfs-utils
apk add nfs-utils
- Edit the exports file:
nano /etc/exports
- And add the following:
/srv/nfs/public 192.168.1.0/24(ro,all_squash,insecure,no_subtree_check)
- And add the following:
- Start and enable nfs at boot:
rc-update add nfs rc-service nfs start
Resources¶
Updated by Daniel Curtis over 6 years ago
- Description updated (diff)
- Status changed from New to Resolved
- % Done changed from 0 to 100