<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Blog of Finster &#187; linux</title>
	<atom:link href="http://finster.co.uk/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://finster.co.uk</link>
	<description>Technical Notes</description>
	<lastBuildDate>Sun, 10 Jul 2011 15:04:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Checking video codec information via the command-line</title>
		<link>http://finster.co.uk/2010/11/23/checking-video-codec-information-via-the-command-line/</link>
		<comments>http://finster.co.uk/2010/11/23/checking-video-codec-information-via-the-command-line/#comments</comments>
		<pubDate>Mon, 22 Nov 2010 23:04:36 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=194</guid>
		<description><![CDATA[Here are a couple of commands to get he information about a video file in Linux (bitrate etc): - ffmpeg -i foo.avi mplayer -vo null -ao null -identify -frames 0 foo.avi]]></description>
			<content:encoded><![CDATA[<p>Here are a couple of commands to get he information about a video file in Linux (bitrate etc): -</p>
<pre> ffmpeg -i foo.avi </pre>
<pre> mplayer -vo null -ao null -identify -frames 0 foo.avi </pre>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2010/11/23/checking-video-codec-information-via-the-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VirtualBox piix4_smbus Error</title>
		<link>http://finster.co.uk/2010/11/16/virtualbox-piix4_smbus-error/</link>
		<comments>http://finster.co.uk/2010/11/16/virtualbox-piix4_smbus-error/#comments</comments>
		<pubDate>Tue, 16 Nov 2010 20:00:23 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[virtualisation]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=189</guid>
		<description><![CDATA[VirtualBox 3.2.10 gives me the following error message when booting Ubuntu 10.10: - piix4_smbus 0000.00.07.0: SMBus base address uninitialized - upgrade bios or use force_addr=0xaddr This error is caused by VM having no smbus but Ubuntu always trying to load the module. It doesn&#8217;t affect anything but is a bit annoying &#8211; to fix: - [...]]]></description>
			<content:encoded><![CDATA[<p>VirtualBox 3.2.10 gives me the following error message when booting Ubuntu 10.10: -</p>
<pre>piix4_smbus 0000.00.07.0: SMBus base address uninitialized - upgrade bios or use force_addr=0xaddr</pre>
<p>This error is caused by VM having no smbus but Ubuntu always trying to load the module. It doesn&#8217;t affect anything but is a bit annoying &#8211; to fix: -</p>
<p>1. Check module is being loaded: -</p>
<pre>lsmod | grep i2c_piix4</pre>
<p>2. If so, blacklist it in /etc/modprobe.d/blacklist.conf, by adding the following to the end of the file :-</p>
<pre>blacklist i2c_piix4</pre>
<p>3. Update the initramfs</p>
<pre>update-initramfs -u -k all</pre>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2010/11/16/virtualbox-piix4_smbus-error/feed/</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
		<item>
		<title>Installing Torrentflux on the Viglen MPC-L</title>
		<link>http://finster.co.uk/2010/01/10/installing-torrentflux-on-the-viglen-mpc-l/</link>
		<comments>http://finster.co.uk/2010/01/10/installing-torrentflux-on-the-viglen-mpc-l/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 11:49:04 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[revo]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=142</guid>
		<description><![CDATA[This is a quick guide to installing Torrentflux on my Viglen MPC-L. First, make sure that python, mysql-server and mysql-client are installed. Then simply install the software with apt-get: - sudo apt-get install torrentflux Once it is installed, point your web browser at the following location (where a.b.c.d is the IP address of your Viglen).: [...]]]></description>
			<content:encoded><![CDATA[<p>This is a quick guide to installing Torrentflux on my Viglen MPC-L.</p>
<p>First, make sure that python, mysql-server and mysql-client are installed.</p>
<p>Then simply install the software with apt-get: -</p>
<pre>    sudo apt-get install torrentflux</pre>
<p>Once it is installed, point your web browser at the following location (where a.b.c.d is the IP address of your Viglen).: -</p>
<p>http://a.b.c.d/torrentflux</p>
<p>&#8230;and then start uploading .torrent files to it.</p>
<p>By default, files are saved in the following location: -</p>
<pre>    /var/cache/torrentflux/</pre>
<p>By default, the ports used are 49160- 49300, so remember to open these on your firewall/router.</p>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2010/01/10/installing-torrentflux-on-the-viglen-mpc-l/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XBMC With VDPAU and iPlayer</title>
		<link>http://finster.co.uk/2009/07/04/xbmc-with-vdpau-and-iplayer/</link>
		<comments>http://finster.co.uk/2009/07/04/xbmc-with-vdpau-and-iplayer/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 23:22:04 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[Home Entertainment]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[revo]]></category>
		<category><![CDATA[xbmc]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=64</guid>
		<description><![CDATA[There&#8217;s an interesting article on the How to do something differently&#8230; blog about getting VDPAU working with iPlayer under Linux with the SVN build of XBMC. I&#8217;ll be sure to look into it some more when I install Ubuntu onto my Revo.]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s an interesting article on the <a href="http://doitdifferent.wordpress.com/2009/07/03/xbmc-with-vdpau-and-iplayer/"> How to do something differently&#8230; </a> blog about getting VDPAU working with iPlayer under Linux with the SVN build of XBMC. I&#8217;ll be sure to look into it some more when I install Ubuntu onto my Revo.</p>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2009/07/04/xbmc-with-vdpau-and-iplayer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Wallpapers</title>
		<link>http://finster.co.uk/2009/06/13/ubuntu-wallpapers/</link>
		<comments>http://finster.co.uk/2009/06/13/ubuntu-wallpapers/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 13:41:00 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wallpaper]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=28</guid>
		<description><![CDATA[To install some nice wallpapers on Ubuntu, run the following command: - sudo apt-get install peace-wallpapers tropic-wallpapers ubuntustudio-wallpapers blubuntu-wallpapers]]></description>
			<content:encoded><![CDATA[<p>To install some nice wallpapers on Ubuntu, run the following command: -</p>
<p><span style="font-family: courier new;font-size:85%;" >sudo apt-get install peace-wallpapers tropic-wallpapers ubuntustudio-wallpapers blubuntu-wallpapers</span></p>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2009/06/13/ubuntu-wallpapers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful Plugins for Gimp</title>
		<link>http://finster.co.uk/2009/04/03/useful-plugins-for-gimp/</link>
		<comments>http://finster.co.uk/2009/04/03/useful-plugins-for-gimp/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 20:29:00 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[gimp]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=27</guid>
		<description><![CDATA[Gimp is the image editing tool for Linux. To install additional plugins such as drop shadow etc, the easiest way is to install gimp-plugin-registry. This can be done using the Ubuntu packages: - sudo apt-get install gimp-plugin-registry]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.gimp.org/">Gimp</a> is the image editing tool for Linux. To install additional plugins such as drop shadow etc, the easiest way is to install <a href="http://packages.ubuntu.com/intrepid/gimp-plugin-registry">gimp-plugin-registry</a>.</p>
<p>This can be done using the Ubuntu packages: -</p>
<p><span style="font-size:85%;"><span style="font-family: courier new;">     sudo apt-get install gimp-plugin-registry</span><br /></span></p>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2009/04/03/useful-plugins-for-gimp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starting a VM from the Command Line</title>
		<link>http://finster.co.uk/2009/03/25/starting-a-vm-from-the-command-line/</link>
		<comments>http://finster.co.uk/2009/03/25/starting-a-vm-from-the-command-line/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 11:20:00 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[virtualisation]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=25</guid>
		<description><![CDATA[Starting a VM from the Command Line (or via a shortcut on the desktop) is easy &#8211; just use the command: - VBoxManage startvm name_of_virtual_machine for example : - VBoxManage startvm &#8220;Windows XP&#8221;]]></description>
			<content:encoded><![CDATA[<p>Starting a VM from the Command Line (or via a shortcut on the desktop) is easy &#8211; just use the command: -</p>
<p><span style="font-size:85%;"><span style="font-family: courier new;">   VBoxManage startvm <span style="font-style: italic;">name_of_virtual_machine</span></span></span></p>
<p>for example : -</p>
<p><span style="font-size:85%;"><span style="font-family: courier new;">   VBoxManage startvm &#8220;Windows XP&#8221;</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2009/03/25/starting-a-vm-from-the-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>USB in VirtualBox</title>
		<link>http://finster.co.uk/2009/03/22/usb-in-virtualbox/</link>
		<comments>http://finster.co.uk/2009/03/22/usb-in-virtualbox/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 09:36:00 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[virtualisation]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=24</guid>
		<description><![CDATA[Here are the steps required to get USB working on a Linux host (tested with VirtualBox 2.1.4) 1. Create a group usbusers and put yourself in it. sudo addgroup usbusersusermod -a -G usbusers andy 2. Note down the vendor and id numbers for the USB devices that you want to enable after running the following [...]]]></description>
			<content:encoded><![CDATA[<p>Here are the steps required to get USB working on a Linux host (tested with VirtualBox 2.1.4)</p>
<p>1. Create a group usbusers and put yourself in it.</p>
<p><span style="font-size:85%;"><span style="font-family:courier new;">sudo addgroup usbusers</span><br /><span style="font-family:courier new;">usermod -a -G usbusers andy</span></span></p>
<p>2. Note down the vendor and id numbers for the USB devices that you want to enable after running the following command: -</p>
<p><span style="font-size:85%;"><span style="font-family:courier new;">VBoxManage list usbhost</span></span></p>
<p>3. In VirtuaBox&#8217;s USB section add both of these devices, making sure you have the vendor and id numbers correct.</p>
<p>4. Add the following lines in /etc/fstab (you can get the ID of the usbusers group by looking in /etc/group) : -</p>
<p><span style="font-size:85%;"><span style="font-family:courier new;"># usbusers is the USB group (id 1001)</span><br /><span style="font-family:courier new;">none /proc/bus/usb usbfs devgid=1001,devmode=664 0 0</p>
<p></span></span>5. A reboot is required.</p>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2009/03/22/usb-in-virtualbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Combining PDF Files</title>
		<link>http://finster.co.uk/2009/01/02/combining-pdf-files/</link>
		<comments>http://finster.co.uk/2009/01/02/combining-pdf-files/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 15:34:00 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=23</guid>
		<description><![CDATA[Combining PDF files in Linux is ridiculously easy &#8211; its just a matter of installing the PDF Toolkit package (pdftk) and then running the following command: - pdftk file1.pdf file2.pdf file3.pdf cat output newfile.pdf]]></description>
			<content:encoded><![CDATA[<p>Combining PDF files in Linux is ridiculously easy &#8211; its just a matter of installing the PDF Toolkit package (pdftk) and then running the following command: -</p>
<p><span style="font-size:85%;"><span style="font-family:courier new;">pdftk file1.pdf file2.pdf file3.pdf cat output newfile.pdf</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2009/01/02/combining-pdf-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mounting QNAP from Linux</title>
		<link>http://finster.co.uk/2008/12/21/mounting-qnap-from-linux/</link>
		<comments>http://finster.co.uk/2008/12/21/mounting-qnap-from-linux/#comments</comments>
		<pubDate>Sun, 21 Dec 2008 21:24:00 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[qnap]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=22</guid>
		<description><![CDATA[Accessing the QNAP from Ubuntu is fairly easy. First install &#8220;smbfs&#8221;: - sudo apt-get install smbfsThen it&#8217;s just a matter of creating the relevant directories in /mnt sudo mkdir /mnt/Qdownloadsudo mkdir /mnt/publicsudo mkdir /mnt/Qmultimediasudo mkdir /mnt/Qweb &#8230;and then editing /etc/fstab //192.168.0.2/Qdownload /mnt/Qdownload cifs credentials=/root/.credentials,directio,iocharset=utf8,noacl,noperm,nosetuids,rw//192.168.0.2/Public /mnt/public cifs credentials=/root/.credentials,directio,iocharset=utf8,noacl,noperm,nosetuids,rw//192.168.0.2/Qmultimedia /mnt/Qmultimedia cifs credentials=/root/.credentials,directio,iocharset=utf8,noacl,noperm,nosetuids,rw//192.168.0.2/Qweb /mnt/Qweb cifs credentials=/root/.credentials,directio,iocharset=utf8,noacl,noperm,nosetuids,rw You then [...]]]></description>
			<content:encoded><![CDATA[<p>Accessing the QNAP from Ubuntu is fairly easy.</p>
<p>First install &#8220;smbfs&#8221;: -</p>
<p><span style="font-size:85%;"><span style="font-family: courier new;">sudo apt-get install smbfs</span><br /></span><span style="font-size: 85%;"><span style="font-family: courier new;"><br /></span></span>Then it&#8217;s just a matter of creating the relevant directories in /mnt</p>
<p><span style="font-size:85%;"><span style="font-family:courier new;">sudo mkdir /mnt/Qdownload</span><br /><span style="font-family:courier new;">sudo mkdir /mnt/public</span><br /><span style="font-family:courier new;">sudo mkdir /mnt/Qmultimedia</span><br /><span style="font-family:courier new;">sudo mkdir /mnt/Qweb</span></span></p>
<p>&#8230;and then editing /etc/fstab</p>
<p><span style="font-size:85%;"><span style="font-family:courier new;">//192.168.0.2/Qdownload    /mnt/Qdownload    cifs    credentials=/root/.credentials,directio,iocharset=utf8,noacl,noperm,nosetuids,rw</span><br /><span style="font-family:courier new;">//192.168.0.2/Public    /mnt/public    cifs    credentials=/root/.credentials,directio,iocharset=utf8,noacl,noperm,nosetuids,rw</span><br /><span style="font-family:courier new;">//192.168.0.2/Qmultimedia    /mnt/Qmultimedia    cifs    credentials=/root/.credentials,directio,iocharset=utf8,noacl,noperm,nosetuids,rw</span><br /><span style="font-family:courier new;">//192.168.0.2/Qweb    /mnt/Qweb    cifs    credentials=/root/.credentials,directio,iocharset=utf8,noacl,noperm,nosetuids,rw</span></span></p>
<p>You then need to create a file with your username and password in it: -</p>
<p><span style="font-size:85%;"><span style="font-family:courier new;">sudo vi /root/.credentials</span></span></p>
<p>and put the following in it: -</p>
<p><span style=";font-family:courier new;font-size:85%;"  >username=user<br />password=pass</span></p>
<p>A simple <span style="font-family:courier new;">&#8220;sudo mount -a&#8221;</span> will mount these filesystems ready for use.</p>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2008/12/21/mounting-qnap-from-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

