Saltycrane logo

SaltyCrane Blog

Notes on Python, Django, and web development on Ubuntu Linux

    

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

Post a comment

Required
Required, but not displayed
Optional

Format using Markdown. (No HTML.)
  • Code blocks: prefix each line by at least 4 spaces or 1 tab (and a blank line before and after)
  • Code span: surround with backticks
  • Blockquotes: prefix lines to be quoted with >
  • Links: <URL>
  • Links w/ description: [description](URL)
Created with Django | Hosted by Linode