Skip to content

Instantly share code, notes, and snippets.

@kainam00
Last active September 2, 2015 18:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kainam00/ef314d4b67c21374c8c6 to your computer and use it in GitHub Desktop.
Save kainam00/ef314d4b67c21374c8c6 to your computer and use it in GitHub Desktop.
NFS client on Amazon (AWS) linux
#!/bin/bash -x
yum install nfs-utils rpcbind -y
service rpcbind start
service nfslock start
chkconfig rpcbind on
chkconfig nfslock on
@kainam00
Copy link
Author

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment