<?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>andymadge.com &#187; Ubuntu Linux</title>
	<atom:link href="http://www.andymadge.com/category/ubuntu-linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.andymadge.com</link>
	<description>Nothing to see here, move along…</description>
	<lastBuildDate>Sun, 23 Aug 2009 20:37:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Installing additional Ubuntu software</title>
		<link>http://www.andymadge.com/2007/01/installing-additional-ubuntu-software/</link>
		<comments>http://www.andymadge.com/2007/01/installing-additional-ubuntu-software/#comments</comments>
		<pubDate>Mon, 29 Jan 2007 22:25:35 +0000</pubDate>
		<dc:creator>AndyM</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Ubuntu Linux]]></category>

		<guid isPermaLink="false">http://blog.andymadge.com/computers/2007/01/29/installing-additional-ubuntu-software/</guid>
		<description><![CDATA[To install additional software required to support various types of multimedia:
The GUI way

Applications->Add/Remove Applications.
Type xine into the search box at the top.
Find &#8220;Xine extra plugins&#8221; in the list and tick it.
Find and select &#8220;Gstreamer extra codec&#8221; and &#8220;Sun Java 5.0 Plugin&#8221;
Press OK.

The Command Line way
This is much quicker as long as you know the names [...]]]></description>
			<content:encoded><![CDATA[<p>To install additional software required to support various types of multimedia:</p>
<h4>The GUI way</h4>
<ol>
<li>Applications->Add/Remove Applications.</li>
<li>Type <code>xine</code> into the search box at the top.</li>
<li>Find &#8220;Xine extra plugins&#8221; in the list and tick it.</li>
<li>Find and select &#8220;Gstreamer extra codec&#8221; and &#8220;Sun Java 5.0 Plugin&#8221;</li>
<li>Press OK.</li>
</ol>
<h4>The Command Line way</h4>
<p>This is much quicker as long as you know the names of the packages you want to install.</p>
<ol>
<li>Install codecs etc:
<pre>sudo apt-get install sox vorbis-tools flac lame mpg321 faad faac</pre>
</li>
<li>Install the Xine-backend version of Totem:
<pre>sudo apt-get install totem-xine</pre>
</li>
</ol>
<h4>Flash v9</h4>
<p>The version of Flash in Ubuntu 6.10 is v7 which is quite old.  Lots of websites now require version 9, which is easy to install in Firefox:</p>
<ol>
<li>Go to <a href="http://www.adobe.com/products/flash/about/">http://www.adobe.com/products/flash/about/</a></li>
<li>Click on the green jigsaw piece icon to install the current version of Flash.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.andymadge.com/2007/01/installing-additional-ubuntu-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mount MP3 network share located on main Windows PC</title>
		<link>http://www.andymadge.com/2007/01/mount-mp3-network-share-located-on-main-windows-pc/</link>
		<comments>http://www.andymadge.com/2007/01/mount-mp3-network-share-located-on-main-windows-pc/#comments</comments>
		<pubDate>Mon, 29 Jan 2007 12:26:38 +0000</pubDate>
		<dc:creator>AndyM</dc:creator>
				<category><![CDATA[Ubuntu Linux]]></category>

		<guid isPermaLink="false">http://blog.andymadge.com/ubuntu/2007/01/29/mount-mp3-network-share-located-on-main-windows-pc/</guid>
		<description><![CDATA[SlimServer doesn&#8217;t like the Music Folder path in the form smb://computer/share &#8211; presumably it can&#8217;t use smbclient.  I therefore need to mount this share in the filesystem.
Parts of this are taken from here and here.


Install smbfs:
sudo apt-get install smbfs

Create a folder in the /media folder:
sudo mkdir /media/mp3

Mount the share manually to test it:
sudo smbmount [...]]]></description>
			<content:encoded><![CDATA[<p>SlimServer doesn&#8217;t like the Music Folder path in the form <code>smb://computer/share</code> &#8211; presumably it can&#8217;t use smbclient.  I therefore need to mount this share in the filesystem.</p>
<p>Parts of this are taken from <a href="http://ubuntuforums.org/showthread.php?t=280473">here</a> and <a href="http://www.mattvanstone.com/2006/06/automatically_mounting_smb_sha.html">here</a>.</p>
<p><span id="more-33"></span></p>
<ol>
<li>Install smbfs:
<pre>sudo apt-get install smbfs</pre>
</li>
<li>Create a folder in the /media folder:
<pre>sudo mkdir /media/mp3</pre>
</li>
<li>Mount the share manually to test it:
<pre>sudo smbmount //computer/MP3 /media/mp3 -o username=USER,password=PASSWORD,uid=1000,mask=000</pre>
<p>Note: Change USER to your linux username. The <code>uid=USER,gid=users</code> is important because if you dont use that, only root will have access to write files to the mounted share.</li>
<li>Unmount it:
<pre>sudo smbumount /media/mp3</pre>
</li>
<li>Add an entry to <code>/etc/fstab</code> so it is mounted on boot:
<pre>sudo gedit /etc/fstab</pre>
<p>and add this line at the bottom:</p>
<pre>//computer/MP3 /media/mp3   smbfs  auto,credentials=/home/USER/.credentials,uid=1000,umask=000,user   0 0</pre>
</li>
<li>Create the <code>.smbcredentials</code> file in the user&#8217;s home directory:
<pre>sudo gedit ~/.smbcredentials</pre>
<p>Add the following lines to the file, but change USER to your SMB username and PASSWORD to your SMB password.</p>
<pre>username=USER
password=PASSWORD</pre>
</li>
<li>Reload fstab:</li>
<pre>sudo mount -a</pre>
</ol>
<p>NOTE: you could have included the username and password in the fstab but this way is more secure.</p>
<p>NOTE: Do not try and mount a folder on a share, it wont work. The source for an SMB mount has to be a share.</p>
<p>NOTE: Do not put a trailing &#8220;/&#8221; on the share path or the directory path, it will cause it to fail.</p>
<h3>SMB Shares with spaces in the names</h3>
<p>If you have an SMB share with a space in the path then replace the space with &#8220;<code>\040</code>&#8221; (This only applies to the entry in <code>/etc/fstab</code>, from the command line you can just enclose the share path in quotes)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andymadge.com/2007/01/mount-mp3-network-share-located-on-main-windows-pc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing SlimServer 6.5.1 on Ubuntu 6.10</title>
		<link>http://www.andymadge.com/2007/01/installing-slimserver-651-on-ubuntu-610/</link>
		<comments>http://www.andymadge.com/2007/01/installing-slimserver-651-on-ubuntu-610/#comments</comments>
		<pubDate>Sun, 28 Jan 2007 23:56:05 +0000</pubDate>
		<dc:creator>AndyM</dc:creator>
				<category><![CDATA[Ubuntu Linux]]></category>

		<guid isPermaLink="false">http://blog.andymadge.com/ubuntu/2007/01/28/installing-slimserver-651-on-ubuntu-610/</guid>
		<description><![CDATA[Ubuntu is based on Debian, so I followed the instructions on the Slim Devices website here and it worked fine.  It basically involves adding the Slim Devices repository to Synaptic Package Manager (Settings/Repository-&#62;Third Party) and then installing using apt-get.
The next thing to do is mount the network share so it can be accessed by [...]]]></description>
			<content:encoded><![CDATA[<p>Ubuntu is based on Debian, so I followed the instructions on the Slim Devices website <a href="http://wiki.slimdevices.com/index.php/Debian_Package">here</a> and it worked fine.  It basically involves adding the Slim Devices repository to Synaptic Package Manager (Settings/Repository-&gt;Third Party) and then installing using apt-get.</p>
<p>The next thing to do is mount the network share so it can be accessed by SlimServer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andymadge.com/2007/01/installing-slimserver-651-on-ubuntu-610/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Auto Mounting NTFS partitions at boot</title>
		<link>http://www.andymadge.com/2007/01/auto-mounting-ntfs-partitions-at-boot/</link>
		<comments>http://www.andymadge.com/2007/01/auto-mounting-ntfs-partitions-at-boot/#comments</comments>
		<pubDate>Sun, 28 Jan 2007 22:53:48 +0000</pubDate>
		<dc:creator>AndyM</dc:creator>
				<category><![CDATA[Ubuntu Linux]]></category>

		<guid isPermaLink="false">http://blog.andymadge.com/uncategorized/2007/01/28/ubuntu-continued/</guid>
		<description><![CDATA[There&#8217;s a very useful Getting Started document over at UbuntuGuide which describes lots of basic configuration tasks.
In the Ubuntu 6.10 official documentation there seem to be references to a utility in System->Administration->Disks but apparently the Disks utility was removed in v6.10.  It&#8217;s not difficult to edit the /etc/fstab file as on any other Linux. [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a very useful Getting Started document over at <a href="http://ubuntuguide.org/wiki/Ubuntu_Edgy">UbuntuGuide</a> which describes lots of basic configuration tasks.</p>
<p>In the Ubuntu 6.10 official documentation there seem to be references to a utility in System->Administration->Disks but apparently the Disks utility was removed in v6.10.  It&#8217;s not difficult to edit the /etc/fstab file as on any other Linux.  There are instructions in the Ubuntu documentation and also <a href="http://ubuntuguide.org/wiki/Ubuntu_Edgy#How_to_mount_Windows_partitions_.28NTFS.29_on_boot-up.2C_and_allow_all_users_to_read_only">here</a></p>
<p><span id="more-31"></span></p>
<blockquote>
<h4>How to mount Windows partitions (NTFS) on boot-up, and allow all users to read only</h4>
<ul>
<li>Read <a href="http://ubuntuguide.org/wiki/Ubuntu_Edgy#General_Notes">#General Notes</a></li>
<li>Read <a href="http://ubuntuguide.org/wiki/Ubuntu_Edgy#How_to_list_partition_tables">#How to list partition tables</a></li>
</ul>
<dl>
<dd><em>e.g. Assumed that /dev/hda1 is the location of Windows partition (NTFS)</em> </dd>
<dd><em>   Local mount folder: /media/windows</em> </dd>
</dl>
<pre>sudo mkdir /media/windows
sudo cp /etc/fstab /etc/fstab_backup
gksudo gedit /etc/fstab</pre>
<ul>
<li>Append the following line at the end of file</li>
</ul>
<pre>/dev/hda1    /media/windows ntfs  nls=utf8,umask=0222 0    0</pre>
<ul>
<li>Save the edited file</li>
<li>Read <a href="http://ubuntuguide.org/wiki/Ubuntu_Edgy#How_to_remount_.2Fetc.2Ffstab_without_rebooting">#How to remount /etc/fstab without rebooting</a></li>
</ul>
</blockquote>
<p>To remount without rebooting, type:</p>
<pre>sudo mount -a</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.andymadge.com/2007/01/auto-mounting-ntfs-partitions-at-boot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First time Ubuntu experiences&#8230;</title>
		<link>http://www.andymadge.com/2007/01/ubuntu-experiences/</link>
		<comments>http://www.andymadge.com/2007/01/ubuntu-experiences/#comments</comments>
		<pubDate>Sun, 28 Jan 2007 22:24:57 +0000</pubDate>
		<dc:creator>AndyM</dc:creator>
				<category><![CDATA[Ubuntu Linux]]></category>

		<guid isPermaLink="false">http://blog.andymadge.com/linux/ubuntu/2007/01/28/ubuntu-experiences/</guid>
		<description><![CDATA[
I&#8217;ve just installed Ubuntu 6.10 and I&#8217;m going to be recording my experiences here, mostly so I can refer back to it later when I can&#8217;t remember how I did things&#8230;

The computer I&#8217;m installing it on is an old Compaq Celeron 850 with 256MB RAM, a 60GB HDD and a Nvidia FX5200 graphics card.  [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-145 alignright" title="Ubuntu logo" src="http://www.andymadge.com/blog/wp-content/uploads/Ubuntu_Logo.png" alt="Ubuntu logo" width="250" height="65" /></p>
<p>I&#8217;ve just installed <a href="http://www.ubuntu.com/">Ubuntu</a> 6.10 and I&#8217;m going to be recording my experiences here, mostly so I can refer back to it later when I can&#8217;t remember how I did things&#8230;<br />
<span id="more-30"></span><br />
The computer I&#8217;m installing it on is an old Compaq Celeron 850 with 256MB RAM, a 60GB HDD and a Nvidia FX5200 graphics card.  It is currently running Windows XP and is connected to the TV and hi-fi in my lounge for watching movies and browsing the web.  I also want to run SlimServer &#8211; It&#8217;s current running on my main desktop PC and it&#8217;s a bit slow.</p>
<p>I&#8217;ve tried the Ubuntu 6.10 LiveCD and it seems to support most of the hardware including the wireless network card.  Performance is a bit sluggish but I hope this is down to the fact that it&#8217;s running in 256MB RAM without a swap file.</p>
<p>The installation from the LiveCD is very easy and I managed to get it installed without problems. I was a bit worried about the partitioning, but it resized the old Windows XP partition and installed Grub on the MBR.</p>
<p>It now seems to be running quite well &#8211; it&#8217;s much more responsive than the LiveCD was and the dual boot with Windows XP is working properly.</p>
<p>My current todo list is:</p>
<ul>
<li><a href="/ubuntu/2007/01/28/auto-mounting-ntfs-partitions-at-boot/">Mount the Windows partition automatically at boot</a></li>
<li>Install newest Nvidia driver and configure TV out</li>
<li><a href="/ubuntu/2007/01/28/installing-slimserver-651-on-ubuntu-610/">Install SlimServer</a></li>
<li>Mount MP3 network share from main Windows PC &#8211; this is where all the music for SlimServer is stored.</li>
<li>Install multimedia software &#8211; DivX etc.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.andymadge.com/2007/01/ubuntu-experiences/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
