Last active
September 2, 2015 18:09
-
-
Save kainam00/ef314d4b67c21374c8c6 to your computer and use it in GitHub Desktop.
NFS client on Amazon (AWS) linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -x | |
yum install nfs-utils rpcbind -y | |
service rpcbind start | |
service nfslock start | |
chkconfig rpcbind on | |
chkconfig nfslock on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Simple commands to get NFS client related things onto an Amazon Linux box.
Usage:
curl -s https://gist.githubusercontent.com/kainam00/ef314d4b67c21374c8c6/raw/3570fb85c6bc75e839cfbfbb99c599303f288436/aws-nfs-client.bash | bash -x