SaltyCrane Blog — Notes on JavaScript and web development

NFS notes

Running on Ubuntu Hardy

References

Open ports in firewall

If necessary, open port TCP 2049

On NFS Server

  • Install NFS server
    apt-get install nfs-kernel-server
  • Edit /etc/exports

On NFS Client

  • Install NFS client
    apt-get install nfs-common
  • Mount remote path
    mkdir -p /my/local/path
    mount myremote.host.com:/my/remote/path /my/local/path

Comments