<?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; software</title>
	<atom:link href="http://finster.co.uk/category/software/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.1</generator>
		<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>Windows 7 and Samba Shares</title>
		<link>http://finster.co.uk/2010/01/02/windows-7-and-samba-shares/</link>
		<comments>http://finster.co.uk/2010/01/02/windows-7-and-samba-shares/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 12:49:21 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[Viglen]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[viglen mpc-l]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=129</guid>
		<description><![CDATA[This is a quick guide to setting up Samba file sharing on my Viglen MPC-L server which is running Ubuntu 8.04.3 LTS. The client is a Windows 7 machine – no changes to the registry or local security policy were needed. The following applies to the version of samba from the repositories &#8211;   smbd version [...]]]></description>
			<content:encoded><![CDATA[<p>This is a quick guide to setting up Samba file sharing on my Viglen MPC-L server which is running Ubuntu 8.04.3 LTS. The client is a Windows 7 machine – no changes to the registry or local security policy were needed. The following applies to the version of samba from the repositories &#8211;   smbd version 3.0.28a.</p>
<h2><strong>1. </strong><strong>Install Samba</strong></h2>
<pre>sudo apt-get install samba smbfs</pre>
<h2><strong>2. </strong><strong>Edit Samba Configuration File</strong></h2>
<p>Find the line which is commented out &#8211; “;   security=user” and change it to: -</p>
<pre>security = user</pre>
<pre>username map = /etc/samba/smbusers</pre>
<p>Find the line “encrypt passwords = no” and change it to “encrypt passwords = true”</p>
<p>Add a section for each share that you want to be available: -</p>
<pre>[data]</pre>
<pre>browseable = yes</pre>
<pre>comment = Data</pre>
<pre>path = /data</pre>
<pre>force user = viglen</pre>
<pre>force group = users</pre>
<pre>read only = No</pre>
<pre>guest ok = Yes</pre>
<p><strong> </strong></p>
<h2><strong>3. </strong><strong>Add “smbusers” file</strong></h2>
<p>A new file is now needed to map smb users onto local linux users. Create the file: -</p>
<pre>sudo vi /etc/samba/smbusers</pre>
<p>and add the following to it: -</p>
<pre>viglen = "viglen"</pre>
<h2><strong>4. </strong><strong>Change  SMB Password for user</strong></h2>
<p>Set a password for the viglen smb user by running the following command: -</p>
<pre>sudo smbpasswd viglen</pre>
<h2><strong>5. </strong><strong>Restart Samba</strong></h2>
<pre>sudo /etc/init.d/samba restart</pre>
<h2><strong>6. </strong><strong>Test Connection from Windows</strong></h2>
<p>Open a windows command prompt (Start -&gt; cmd) and enter the following command (with the correct IP address and password)</p>
<pre>net use q: \\aaa.bbb.ccc.ddd\data password /user:viglen</pre>
<p>You should get a message “The command completed successfully.”, and Q: should be accessible through Windows Explorer etc.</p>
<p>To remove the share, enter the following command: -</p>
<pre>net use /d q:</pre>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2010/01/02/windows-7-and-samba-shares/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dropbox</title>
		<link>http://finster.co.uk/2009/05/18/dropbox/</link>
		<comments>http://finster.co.uk/2009/05/18/dropbox/#comments</comments>
		<pubDate>Mon, 18 May 2009 22:25:45 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=40</guid>
		<description><![CDATA[I know its been around for ages, but I&#8217;ve finally got around to trying &#8220;dropbox&#8221;. If you haven&#8217;t heard, it allows you to synchronise folders across different PC&#8217;s. How it works is you install the software on your different PC&#8217;s (work laptop, home PC) and then you have a folder called &#8220;My Dropbox&#8221;. When you [...]]]></description>
			<content:encoded><![CDATA[<p>I know its been around for ages, but I&#8217;ve finally got around to trying &#8220;dropbox&#8221;. If you haven&#8217;t heard, it allows you to synchronise folders across different PC&#8217;s. How it works is you install the software on your different PC&#8217;s (work laptop, home PC) and then you have a folder called &#8220;My Dropbox&#8221;. When you add or modify a file in this folder it automagically appears on the other PC when you<br />
switch it on. It&#8217;s really simple and is great for sharing files between PC&#8217;s instead of putting them on a USB stick or emailing them etc.
</p>
<p>
You can also set up shared folders that other people can access.
</p>
<p>
The clever bit is that you can log onto the website on your iPhone and<br />
access all your documents and photos from there too. So it&#8217;s good for<br />
storing photos easily and being able to see them on your iPhone.
</p>
<p>
The client software is available for Linux, Windows and Mac OS X.
</p>
<p>
There&#8217;s 2 GB of storage for free, or if you sign up via my referral link below, we both get an extra 0.25gb of space free.
</p>
<p><a href="https://www.getdropbox.com/referrals/NTEyOTM1NjA5"> https://www.getdropbox.com/referrals/NTEyOTM1NjA5<br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2009/05/18/dropbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Media Centres</title>
		<link>http://finster.co.uk/2008/08/24/linux-media-centres/</link>
		<comments>http://finster.co.uk/2008/08/24/linux-media-centres/#comments</comments>
		<pubDate>Sun, 24 Aug 2008 00:14:00 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[media centre]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=17</guid>
		<description><![CDATA[I&#8217;m toying with the idea of creating a Media Centre PC running Linux. Here are the main contendors for Linux Media Centres that I can find. Boxee MythTV Freevo Elisa Geexbox Linuxmce]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m toying with the idea of creating a Media Centre PC running Linux. Here are the main contendors for Linux Media Centres that I can find.
<ul>
<li> <a href="http://boxee.tv/">Boxee</a></li>
<li> <a href="http://www.mythtv.org/">MythTV</a></li>
<li> <a href="http://freevo.sourceforge.net/">Freevo</a></li>
<li> <a href="http://elisa.fluendo.com/">Elisa</a></li>
<li> <a href="http://geexbox.org/en/index.html">Geexbox</a></li>
<li> <a href="http://www.linuxmce.org/">Linuxmce</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2008/08/24/linux-media-centres/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DeltaCopy &#8211; rsync for Windows</title>
		<link>http://finster.co.uk/2008/08/24/deltacopy-rsync-for-windows/</link>
		<comments>http://finster.co.uk/2008/08/24/deltacopy-rsync-for-windows/#comments</comments>
		<pubDate>Sun, 24 Aug 2008 00:02:00 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=15</guid>
		<description><![CDATA[DeltaCopy is a free piece of software for Windows that allows you to interface with other computers running rsync. Basically, it is a &#8220;Windows Friiendly&#8221; wrapper around rsync. It is fairly easy to use, and also allows you to run rsync from the command line without having to install CygWin.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.aboutmyip.com/AboutMyXApp/DeltaCopy.jsp">DeltaCopy</a> is a free piece of software for Windows that allows you to interface with other computers running <a href="http://samba.anu.edu.au/rsync/">rsync</a>. Basically, it is a &#8220;Windows Friiendly&#8221; wrapper around rsync. It is fairly easy to use, and also allows you to run rsync from the command line without having to install <a href="http://www.cygwin.com/">CygWin</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2008/08/24/deltacopy-rsync-for-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multi-Platform Applications</title>
		<link>http://finster.co.uk/2008/08/24/multi-platform-applications/</link>
		<comments>http://finster.co.uk/2008/08/24/multi-platform-applications/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 23:43:00 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=12</guid>
		<description><![CDATA[CrossPlatformApplications.org is a great little website that gives a summary of software that runs on a combination of Windows, Mac OS X and Linux. Great for if you have different PC&#8217;s running different OS&#8217;s and want to use the same software.]]></description>
			<content:encoded><![CDATA[<p><a href="http://crossplatformapplications.org/">CrossPlatformApplications.org</a> is a great little website that gives a summary of software that runs on a combination of Windows, Mac OS X and Linux. Great for if you have different PC&#8217;s running different OS&#8217;s and want to use the same software.</p>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2008/08/24/multi-platform-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Totally Free Burner</title>
		<link>http://finster.co.uk/2008/08/24/totally-free-burner/</link>
		<comments>http://finster.co.uk/2008/08/24/totally-free-burner/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 23:22:00 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=7</guid>
		<description><![CDATA[I&#8217;ve just found a great small new free piece of software : Totally Free Burner. This software burns audio, video, data, and ISO CDs and DVDs in just a few clicks. Great if you don&#8217;t need the bloat of Nero or Roxio etc.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just found a great small new free piece of software : <a href="http://www.dandans.com/TotallyFreeBurner.htm">Totally Free Burner</a>. This software burns audio, video, data, and ISO CDs and DVDs in just a few clicks. Great if you don&#8217;t need the bloat of Nero or Roxio etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2008/08/24/totally-free-burner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

