<?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>lstierneyltd &#187; ubuntu</title>
	<atom:link href="http://lstierneyltd.com/blog/tag/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://lstierneyltd.com/blog</link>
	<description>Yet another development blog</description>
	<lastBuildDate>Thu, 02 Sep 2010 18:04:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Reset Gnome desktop the easy way</title>
		<link>http://lstierneyltd.com/blog/development/tips/reset-gnome-desktop-the-easy-way/</link>
		<comments>http://lstierneyltd.com/blog/development/tips/reset-gnome-desktop-the-easy-way/#comments</comments>
		<pubDate>Sun, 16 May 2010 10:17:04 +0000</pubDate>
		<dc:creator>lawrence</dc:creator>
				<category><![CDATA[quick tips]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://lstierneyltd.com/blog/?p=109</guid>
		<description><![CDATA[I recently upgraded Ubuntu on one of machines from 9.10 (Karmic Koala) to 10.04 (Lucid Lynx). In the old version I had installed a lot of widgets, messed up the fonts, buttons &#8211; loads of things. I needed an easy way to restore/reset the Gnome desktop back to the default look and feel.
I could of [...]]]></description>
			<content:encoded><![CDATA[<p>I recently upgraded Ubuntu on one of machines from 9.10 (Karmic Koala) to 10.04 (Lucid Lynx). In the old version I had installed a lot of widgets, messed up the fonts, buttons &#8211; loads of things. I needed an easy way to restore/reset the Gnome desktop back to the default look and feel.</p>
<p>I could of course have used the gui&#8217;s to undo all the changes I made but why bother? This is Linux after all!</p>
<pre>
# cd
# [sudo] rm -rf .gnome .gnome2 .gconf .gconfd .metacity
</pre>
]]></content:encoded>
			<wfw:commentRss>http://lstierneyltd.com/blog/development/tips/reset-gnome-desktop-the-easy-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Server Minimal Install</title>
		<link>http://lstierneyltd.com/blog/development/ubuntu-server-minimal-install/</link>
		<comments>http://lstierneyltd.com/blog/development/ubuntu-server-minimal-install/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 13:02:54 +0000</pubDate>
		<dc:creator>lawrence</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://lstierneyltd.com/blog/?p=74</guid>
		<description><![CDATA[This is the install I like to use for an Ubuntu Server, usually run headless, with a *very* basic desktop and some other bits and bobs I like.
First of all install the basic Ubuntu Server edition
Then run the following script&#8230;&#8230;&#8230;.


#!/bin/bash
sudo apt-get -y install gnome-core gdm network-manager-gnome
human-theme x11-xserver-utils tangerine-icon-theme
gnome-themes-ubuntu ubuntu-artwork jockey-gtk
gnome-screensaver gnome-utils

# Extras.....
sudo apt-get install -y [...]]]></description>
			<content:encoded><![CDATA[<p>This is the install I like to use for an Ubuntu Server, usually run headless, with a *very* basic desktop and some other bits and bobs I like.</p>
<p>First of all install the basic Ubuntu Server edition</p>
<p>Then run the following script&#8230;&#8230;&#8230;.<br />
<code><span id="more-74"></span></code></p>
<pre>
#!/bin/bash
sudo apt-get -y install gnome-core gdm network-manager-gnome
human-theme x11-xserver-utils tangerine-icon-theme
gnome-themes-ubuntu ubuntu-artwork jockey-gtk
gnome-screensaver gnome-utils

# Extras.....
sudo apt-get install -y tsclient system-config-samba
gnome-disk-utility
</pre>
]]></content:encoded>
			<wfw:commentRss>http://lstierneyltd.com/blog/development/ubuntu-server-minimal-install/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Quickly Setup Subversion Server on Linux (Ubuntu)</title>
		<link>http://lstierneyltd.com/blog/development/how-to-quickly-setup-subversion-server-on-linux-ubuntu/</link>
		<comments>http://lstierneyltd.com/blog/development/how-to-quickly-setup-subversion-server-on-linux-ubuntu/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 19:55:35 +0000</pubDate>
		<dc:creator>lawrence</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[How to's]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://lstierneyltd.com/blog/?p=49</guid>
		<description><![CDATA[Installation
First of all you&#8217;ll need to see if you&#8217;ve got Subversion installed. Check this article on how to query installed packages or just try executing:
% svn help
If you haven&#8217;t got Subversion installed then:
% apt-get install subversion
Users and Groups
% addgroup subversion
% usermod -a -G subversion yourUser
Create Repository
% svnadmin create /path/to/repository
Configure Repository
% chgrp -R subversion /path/to/repository
% chmod [...]]]></description>
			<content:encoded><![CDATA[<h4>Installation</h4>
<p>First of all you&#8217;ll need to see if you&#8217;ve got Subversion installed. Check <a href="http://lstierneyltd.com/blog/development/tips/show-and-search-list-of-installed-packages-ubuntu/">this article</a> on how to query installed packages or just try executing:</p>
<pre>% svn help</pre>
<p>If you haven&#8217;t got Subversion installed then:</p>
<pre>% apt-get install subversion</pre>
<h4>Users and Groups</h4>
<pre>% addgroup subversion
% usermod -a -G subversion yourUser</pre>
<h4>Create Repository</h4>
<pre>% svnadmin create /path/to/repository</pre>
<h4>Configure Repository</h4>
<pre>% chgrp -R subversion /path/to/repository
% chmod -R g+rws /path/to/repository
% vi /path/to/repository/conf/svnserve.conf

Edit/uncomment the following lines:

anon-access = none
auth-access = write
password-db = passwd

% vi /path/to/repository/conf/passwd

Add the following line:

yourUser = yourSecretPassword</pre>
<h4>Start Subversion Server as Daemon</h4>
<pre>svnserve -d</pre>
<h4>Troubleshooting</h4>
<p>You will need sudo or root access (unless you want to see a lot of permission denied errors!)<br />
If you see this error (when using Windows SVN client):</p>
<pre>
Can’t move
‘..\..\.svn\entries’ to ‘..\..\.svn\entries’:
The file or directory is corrupted and unreadable.
</pre>
<p>Then try excluding the local directory from the Windows Indexer.</p>
]]></content:encoded>
			<wfw:commentRss>http://lstierneyltd.com/blog/development/how-to-quickly-setup-subversion-server-on-linux-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Show and search list of installed packages (Ubuntu)</title>
		<link>http://lstierneyltd.com/blog/development/tips/show-and-search-list-of-installed-packages-ubuntu/</link>
		<comments>http://lstierneyltd.com/blog/development/tips/show-and-search-list-of-installed-packages-ubuntu/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 12:39:56 +0000</pubDate>
		<dc:creator>lawrence</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[quick tips]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://lstierneyltd.com/blog/?p=45</guid>
		<description><![CDATA[To show the complete list:

dpkg --get-selections

To filter the list

dpkg --get-selections &#124; grep XXX

]]></description>
			<content:encoded><![CDATA[<p>To show the complete list:</p>
<pre>
dpkg --get-selections
</pre>
<p>To filter the list</p>
<pre>
dpkg --get-selections | grep XXX
</pre>
]]></content:encoded>
			<wfw:commentRss>http://lstierneyltd.com/blog/development/tips/show-and-search-list-of-installed-packages-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
