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

Install Serviio on Ubuntu

I use Serviio as DLNA server hosted on Ubuntu to stream movies to Xbox One. It’s by far the best DLNA server I have used. Very easy to set up and quite feature rich.  Here’s the guide to installing it on Ubuntu Server: http://wiki.serviio.org/doku.php?id=howto:linux:install:ubuntu You can make it run at boot time by creating a service in Webmin. To configure you will need to download Windows Client.

MediaTomb breaking after Ubuntu upgrade

Yesterday, upgraded Ubuntu Server from 14.10 to 15.04, and somehow it broke MediaTomb. After upgrade, my uPnP server was not showing up in consuming devices. I looked at the logs, and found that MediaTomb was binding to localhost cat /var/log/mediatomb 2015-06-07 12:31:46    INFO: Loading configuration from: /etc/mediatomb/config.xml2015-06-07 12:31:46    INFO: Checking configuration…2015-06-07 12:31:46    INFO: Setting filesystem import charset to UTF-82015-06-07 12:31:46    INFO: Setting metadata import charset to UTF-82015-06-07 12:31:46    INFO: Setting playlist charset to UTF-82015-06-07 12:31:46 …

Read moreMediaTomb breaking after Ubuntu upgrade

Configuring VNC on Ubuntu Server

I recently configured VNC on my home server. This enables me to log on to the server and work in a GUI environment. I am using GNOME basic. Server – Assumed Ubuntu Server 14.04 Pre-reqs – Install GNOME basic desktop sudo apt-get install –no-install-recommends ubuntu-desktop Install gnome-panel sudo apt-get install gnome-panel Install VNC Server. I used TightVNC Server sudo apt-get install tightvncserver Set up VNC initial configuration vncserver Stop the VNC session vncserver -kill :1 …

Read moreConfiguring VNC on Ubuntu Server

Transmission Remote GUI enables you to control your torrents from Windows

I love Transmission BT client on my Ubuntu Server. However, I hate it’s web UI. Searching on the web I found an excellent UI for it. It’s called Transmission Remote GUI, and can be downloaded here. This UI is a “thick” client meaning you will need to connect to Transmission Server using this software installed on your client machine. In my case, I am using my Windows box to connect to Transmission Server using this wonderful …

Read moreTransmission Remote GUI enables you to control your torrents from Windows

Send emails from Ubuntu using your live.com address

This is a neat configuration to enable SMTP mail using Microsoft’s Live.com email. After successful configuration you’ll be able to send outgoing mails from your Ubuntu box using your live.com account. (Other email services will work too. I haven’t tested though). Will you ever manually send emails from Ubuntu? Perhaps not but this configuration is extremely useful in sending out system notifications to your email address. It’s also useful to send messages from websites hosted on the …

Read moreSend emails from Ubuntu using your live.com address

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