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    …

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 …

Read moreConfiguring VNC on Ubuntu Server

Looking forward to Windows 10!

Haters will hate. Critics will criticize. Complainers will complain. Guess what, Windows 10 is coming, and we the Windows fans are eagerly looking forward to it! Thank you Microsoft! Pic courtesy: https://blogs.windows.com/windows-insider/2014/09/30/announcing-windows-10/

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 …

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

django on apache2 with mod_wsgi

Reference: https://docs.djangoproject.com/en/dev/howto/deployment/wsgi/modwsgi/ Sitename: vkrm Location: /work/vkrm 1. Install mod_wsgi (and Apache if not already). I had both already installed (I checked for mod_wsgi by running “yum install mod_wsgi”). If not, follow instructions on: http://code.google.com/p/modwsgi/wiki/InstallationInstructions 2. Enable “mod_wsgi” and httpd.conf su -c vi /etc/httpd/conf/httpd.conf Add line: LoadModule wsgi_module modules/mod_wsgi.so 3. Create a static directory in your site. Inside the directory that …

Read moredjango on apache2 with mod_wsgi

Configuring headless transmission (torrent) client on Fedora 17

su yum install transmission yum install transmission-daemon make sure transmission-daemon service is not running service stop transmission-daemon edit configuration file to enable rpc and disable whitelist (or allow addresses in whitelist) vi /var/lib/transmission/.config/transmission/settings.json start transmission-daemon service start transmission-daemon Note: if you modify settings while transmission-daemon is running, changes won’t be saved! Therefore, first stop the service

Configuring NVidia Audio/Video on Fedora 17

A solution that worked for me: http://www.if-not-true-then-false.com/2012/fedora-17-nvidia-guide/ For audio, find the device ID and add a PulseAudio sink using instructions from here: ftp://download.nvidia.com/XFree86/gpu-hdmi-audio-document/gpu-hdmi-audio.html#_pulseaudio_default_device

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 …

Read moreInstalling Webmin on Ubuntu 12.04