Configuring NFS Share on Ubuntu

Configuring NFS is a simple but can be a frustrating experience esp. if you are trying to export an NFS root. Here’s step by step instructions that helped me. On the server where NFS is configured, path is /storage. Let’s call this server nas. This NAS runs Ubuntu. Edit the /etc/exports file on the NAS. The IP is your network and subnet mask. The magic option is fsid=0 for NFS root. This allows the /storage …

Read moreConfiguring NFS Share on Ubuntu

Installing Webmin on Ubuntu 12.04

Edit the /etc/apt/sources.list file on your system and add the lines : deb http://download.webmin.com/download/repository sarge contrib   deb http://webmin.mirror.somersettechsolutions.co.uk/repository sarge contrib You should also fetch and install GPG key with which the repository is signed, with the commands : cd /root wget http://www.webmin.com/jcameron-key.asc   apt-key add jcameron-key.asc You will now be able to install with the commands : apt-get update apt-get install webmin All dependencies should be resolved automatically. Reference: http://www.webmin.com/deb.html