<?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>don't feed the seagulls &#187; Linux</title>
	<atom:link href="http://dontfeedtheseagulls.com/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://dontfeedtheseagulls.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 23 Jul 2010 13:28:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Using awk to add new files to svn</title>
		<link>http://dontfeedtheseagulls.com/2009/07/17/using-awk-to-add-new-files-to-svn/</link>
		<comments>http://dontfeedtheseagulls.com/2009/07/17/using-awk-to-add-new-files-to-svn/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 20:02:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[awk]]></category>
		<category><![CDATA[shell commands]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://dontfeedtheseagulls.com/?p=56</guid>
		<description><![CDATA[svn add `svn status &#124; grep "^?" &#124; awk '{print $2 }'` you can also use grep -v to exclude specific files svn add `svn status &#124; grep "^?" &#124; awk '{print $2 }' &#124; grep -v prefs.inc.php`]]></description>
			<content:encoded><![CDATA[<pre>svn add `svn status | grep "^?" | awk '{print $2 }'`</pre>
<p>you can also use grep -v to exclude specific files</p>
<pre>svn add `svn status | grep "^?" | awk '{print $2 }' | grep -v prefs.inc.php`</pre>
]]></content:encoded>
			<wfw:commentRss>http://dontfeedtheseagulls.com/2009/07/17/using-awk-to-add-new-files-to-svn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recursively convert all text files in a directory from Windows EOL to Unix with dos2unix</title>
		<link>http://dontfeedtheseagulls.com/2009/04/10/recursively-convert-all-text-files-in-a-directory-from-windows-eol-to-unix-with-dos2unix/</link>
		<comments>http://dontfeedtheseagulls.com/2009/04/10/recursively-convert-all-text-files-in-a-directory-from-windows-eol-to-unix-with-dos2unix/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 21:36:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[dos2unix]]></category>
		<category><![CDATA[shell commands]]></category>

		<guid isPermaLink="false">http://dontfeedtheseagulls.com/?p=47</guid>
		<description><![CDATA[find . -type f -exec dos2unix {} \;]]></description>
			<content:encoded><![CDATA[<blockquote><pre>find . -type f -exec dos2unix {} \;</pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://dontfeedtheseagulls.com/2009/04/10/recursively-convert-all-text-files-in-a-directory-from-windows-eol-to-unix-with-dos2unix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Migrating a RedHat users file to FreeBSD/OpenBSD</title>
		<link>http://dontfeedtheseagulls.com/2009/04/05/migrating-a-redhat-users-file-to-freebsdopenbsd/</link>
		<comments>http://dontfeedtheseagulls.com/2009/04/05/migrating-a-redhat-users-file-to-freebsdopenbsd/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 04:33:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[shell commands]]></category>

		<guid isPermaLink="false">http://dontfeedtheseagulls.com/?p=34</guid>
		<description><![CDATA[http://www.openbsd.org/faq/faq9.html#passwd First, figure out if your Linux password file is shadowed or not. If it is, install John the Ripper from packages or ports (security/john) and use the unshadow utility that comes with it to merge your passwd and shadow files into one Sixth Edition-style file. Using your Linux password file, we&#8217;ll call it linux_passwd, [...]]]></description>
			<content:encoded><![CDATA[<p>http://www.openbsd.org/faq/faq9.html#passwd</p>
<p>First, figure out if your Linux password file is shadowed or not.  If it is, install <a href="http://www.openwall.com/john/">John the Ripper</a> from <a href="http://www.openbsd.org/faq/faq15.html">packages or ports</a> (<tt>security/john</tt>) and use the unshadow utility that comes with it to merge your <tt>passwd</tt> and <tt>shadow</tt> files into one Sixth Edition-style file.</p>
<p>Using your Linux password file, we&#8217;ll call it <tt>linux_passwd</tt>, you need to add in ::0:0 between fields four and seven. <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=awk&amp;sektion=1">awk(1)</a> does this for you.</p>
<blockquote>
<pre># <strong>cat linux_passwd | awk -F : '{printf("%s:%s:%s:%s::0:0:%s:%s:%s\n", \</strong>
&gt; <strong>$1,$2,$3,$4,$5,$6,$7); }' &gt; new_passwd</strong></pre>
</blockquote>
<p>At this point, you want to edit the <tt>new_passwd</tt> file and remove the root and other system entries that are already present in your OpenBSD password file or aren&#8217;t applicable with OpenBSD (all of them). Also, make sure there are no duplicate usernames or user IDs between <tt>new_passwd</tt> and your OpenBSD box&#8217;s <tt>/etc/passwd</tt>.  The easiest way to do this is to start with a fresh <tt>/etc/passwd</tt></p>
<p>.</p>
<blockquote>
<pre># <strong>cat new_passwd &gt;&gt; /etc/master.passwd</strong>
# <strong>pwd_mkdb -p /etc/master.passwd</strong></pre>
</blockquote>
<p>The last step, <tt>pwd_mkdb</tt> is necessary to rebuild the /etc/spwd.db and /etc/pwd.db files.  It also creates a Sixth Edition-style password file (minus encrypted passwords) at /etc/passwd for programs which use it.  OpenBSD uses a stronger encryption for passwords, blowfish, which is very unlikely to be found on any system which uses full Sixth Edition-style password files.  To switch over to this stronger encryption, simply have the users run &#8216;passwd&#8217; and change their password.  The new password they enter will be encrypted with your default setting (usually blowfish unless you&#8217;ve edited /etc/login.conf).  Or, as <em>root</em>, you can run <tt>passwd <em>username</em></tt>.</p>
<p>Also you will want to copy over the groups file. note again, only copy over groups that do not exist in both.</p>
]]></content:encoded>
			<wfw:commentRss>http://dontfeedtheseagulls.com/2009/04/05/migrating-a-redhat-users-file-to-freebsdopenbsd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>convert linux passwd to a FreeBSD one</title>
		<link>http://dontfeedtheseagulls.com/2009/03/31/convert-linux-passwd-to-a-freebsd-one/</link>
		<comments>http://dontfeedtheseagulls.com/2009/03/31/convert-linux-passwd-to-a-freebsd-one/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 20:47:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[shell commands]]></category>

		<guid isPermaLink="false">http://dontfeedtheseagulls.com/?p=32</guid>
		<description><![CDATA[cat linux_passwd &#124; awk -F : '{printf("%s:%s:%s:%s::0:0:%s:%s:%s\n", $1,$2,$3,$4,$5,$6,$7); }' &#62; new_passwd]]></description>
			<content:encoded><![CDATA[<pre>cat linux_passwd | awk -F : '{printf("%s:%s:%s:%s::0:0:%s:%s:%s\n", $1,$2,$3,$4,$5,$6,$7); }' &gt; new_passwd</pre>
]]></content:encoded>
			<wfw:commentRss>http://dontfeedtheseagulls.com/2009/03/31/convert-linux-passwd-to-a-freebsd-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing VMware Server on Ubuntu 8.04 Hardy Heron</title>
		<link>http://dontfeedtheseagulls.com/2008/06/16/installing-vmware-server-on-ubuntu-804-hardy-heron/</link>
		<comments>http://dontfeedtheseagulls.com/2008/06/16/installing-vmware-server-on-ubuntu-804-hardy-heron/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 01:35:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hardy Heron]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://dontfeedtheseagulls.com/?p=24</guid>
		<description><![CDATA[I found a great post at MakeTechEasier I changed it a little and posted it. You will be building kernel specific files so you need to have the proper header files installed for your kernel along with something to compile it. sudo apt-get install linux-headers-`uname -r` build-essential sudo apt-get install xinetd gcc-3.4 If you are [...]]]></description>
			<content:encoded><![CDATA[<p>I found a great post at <a href="http://maketecheasier.com/installing-vmware-server-in-hardy-heron/2008/04/29" target="_blank">MakeTechEasier</a> I changed it a little and posted it.</p>
<p>You will be building kernel specific files so you need to have the proper header files installed for your kernel along with something to compile it.</p>
<pre>sudo apt-get install linux-headers-`uname -r` build-essential
sudo apt-get install xinetd gcc-3.4</pre>
<p>If you are using 64 bits system, you have to install 32bit compatibility files</p>
<pre>sudo apt-get install ia32-libs</pre>
<p>Download <a href="http://www.vmware.com/download/server/" target="_blank">VMware Server 1.0.6</a></p>
<p>Download the patch file <a href="http://groups.google.com/group/vmkernelnewbies/files" target="_blank">vmware-any-any-update-116.tgz</a></p>
<p>Extract the downloaded files</p>
<pre>tar zxf vmware-any-any-update-116.tgz
tar xzf VMware-server-1.0.6-91891.tar.gz</pre>
<p>Run the VMware Server installer</p>
<pre>cd vmware-server-distrib
sudo ./vmware-install.pl</pre>
<p>You will be prompted to answer some questions. Press <strong>Enter</strong> to select the default answer. When it reaches the point that requires you to run <strong>vmware-config.pl</strong>, type <strong>No</strong>. The installer will exit.  Next, apply the patch</p>
<pre>cd vmware-any-any-update116
sudo ./runme.pl</pre>
<p>This time, press <strong>Enter</strong> for all the questions and enter <strong>Yes</strong> to run the <strong>vmware-comfig.pl</strong>.  Once it has finished compiling, you should now see the VMware console in your <em>Applications-&gt;Other</em>. The first time you run vmware use the console by typing <strong>vmware</strong> in the terminal. If there are any errors it will tell us. If it says it can&#8217;t find some files all we need to do is copy them from the /usr/lib directory.</p>
<pre>sudo cp /usr/lib/libpng12.so.0 /usr/lib/vmware/lib/libpng12.so.0/
sudo cp /lib/libgcc_s.so.1 /usr/lib/vmware/lib/libgcc_s.so.1/</pre>
<p>For 64 bit users</p>
<pre>sudo ln -s /usr/lib32 /usr/l32
sudo sed -i -e ’s/usr\/lib/usr\/l32/g’ /usr/lib32/gtk-2.0/2.10.0/loader-files.d/libgtk2.0-0.loaders
sudo sed -i -e ’s/usr\/lib/usr\/l32/g’ /usr/lib32/libgdk_pixbuf-2.0.so.0.1200.9</pre>
<p>That’s it. Your VMware Server should be working now.</p>
]]></content:encoded>
			<wfw:commentRss>http://dontfeedtheseagulls.com/2008/06/16/installing-vmware-server-on-ubuntu-804-hardy-heron/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Realtek ALC888 and Ubuntu Hardy Heron low audio problem</title>
		<link>http://dontfeedtheseagulls.com/2008/05/04/realtek-alc888-and-ubuntu-hardy-heron-low-audio-problem/</link>
		<comments>http://dontfeedtheseagulls.com/2008/05/04/realtek-alc888-and-ubuntu-hardy-heron-low-audio-problem/#comments</comments>
		<pubDate>Sun, 04 May 2008 16:26:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ALC888]]></category>
		<category><![CDATA[ALSA Mixer]]></category>
		<category><![CDATA[Hardy Heron]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://dontfeedtheseagulls.com/2008/05/04/realtek-alc888-and-ubuntu-hardy-heron-low-audio-problem/</guid>
		<description><![CDATA[Last night I installed Ubuntu 8.04 and I&#8217;m so impressed. I did the WbUI version. And let me tell you, It was the easiest OS install I have ever done. Everything is great only one problem. My audio was really quiet. I have an Realtek ALC888 chipset. I had to crank my speakers to get [...]]]></description>
			<content:encoded><![CDATA[<p>Last night I installed Ubuntu 8.04 and I&#8217;m so impressed. I did the WbUI version. And let me tell you, It was the easiest OS install I have ever done. Everything is great only one problem. My audio was really quiet. I have an Realtek ALC888 chipset. I had to crank my speakers to get a descent volume.</p>
<p>I found a solution.</p>
<p>Even through I have my speakers plugged into the &#8216;Green&#8217; standard front channel jack Ubuntu thinks it&#8217;s plugged into the side channel.</p>
<ol>
<li> Open up the ALSA mixer[double click on the speaker at the top by the time]</li>
<li>Click on Edit-&gt;Preferences</li>
<li>Check all of the output channels</li>
<li>Turn the volume up on all the devices till you find the right channel(be careful if you have your speakers still cranked or you&#8217;ll soil yourself)</li>
</ol>
<p>Thats it. Easy.</p>
]]></content:encoded>
			<wfw:commentRss>http://dontfeedtheseagulls.com/2008/05/04/realtek-alc888-and-ubuntu-hardy-heron-low-audio-problem/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Using rsync over ssh simple command</title>
		<link>http://dontfeedtheseagulls.com/2007/10/31/using-rsync-over-ssh-simple-command/</link>
		<comments>http://dontfeedtheseagulls.com/2007/10/31/using-rsync-over-ssh-simple-command/#comments</comments>
		<pubDate>Wed, 31 Oct 2007 12:58:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[shell commands]]></category>

		<guid isPermaLink="false">http://dontfeedtheseagulls.com/2007/10/31/using-rsync-over-ssh-simple-command/</guid>
		<description><![CDATA[rsync -avz --exclude "*bak" --exclude "*~" -e ssh remoteuser@remotehost:/remote/dir /this/dir/ arguments used: -a, &#8211;archive This is equivalent to -rlptgoD. It is a quick way of saying you want recursion and want to preserve almost everything (with -H being a notable omission). The only exception to the above equivalence is when &#8211;files-from is specified, in which [...]]]></description>
			<content:encoded><![CDATA[<pre>rsync -avz <a name="rsync"></a>--exclude "*bak" --exclude "*~" -e ssh remoteuser@remotehost:/remote/dir /this/dir/</pre>
<p>arguments used:</p>
<blockquote><p>-a, &#8211;archive<br />
This is equivalent to -rlptgoD. It is a quick way of saying you want recursion and want to preserve almost everything (with -H being a notable omission). The only exception to the above equivalence is when &#8211;files-from is specified, in which case -r is not implied.<br />
-v, &#8211;verbose<br />
This option increases the amount of information you are given during the transfer. By default, rsync works silently. A single -v will give you information about what files are being transferred and a brief summary at the end. Two -v flags will give you information on what files are being skipped and slightly more information at the end. More than two -v flags should only be used if you are debugging rsync.<br />
Note that the names of the transferred files that are output are done using a default &#8211;out-format of &#8220;%n%L&#8221;, which tells you just the name of the file and, if the item is a link, where it points. At the single -v level of verbosity, this does not mention when a file gets its attributes changed. If you ask for an itemized list of changed attributes (either &#8211;itemize-changes or adding &#8220;%i&#8221; to the &#8211;out-format setting), the output (on the client) increases to mention all items that are changed in any way. See the &#8211;out-format option for more details.<br />
-z, &#8211;compress<br />
With this option, rsync compresses the file data as it is sent to the destination machine, which reduces the amount of data being transmitted &#8212; something that is useful over a slow connection.<br />
Note that this option typically achieves better compression ratios than can be achieved by using a compressing remote shell or a compressing transport because it takes advantage of the implicit information in the matching data blocks that are not explicitly sent over the connection.<br />
Note that -a does not preserve hardlinks, because finding multiply-linked files is expensive. You must separately specify -H.<br />
-e, &#8211;rsh=COMMAND<br />
This option allows you to choose an alternative remote shell program to use for communication between the local and remote copies of rsync. Typically, rsync is configured to use ssh by default, but you may prefer to use rsh on a local network.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://dontfeedtheseagulls.com/2007/10/31/using-rsync-over-ssh-simple-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring Synaptics touchpad in Ubuntu/Kubuntu Feisty Fawn</title>
		<link>http://dontfeedtheseagulls.com/2007/08/20/configuring-synaptics-touchpad-in-ubuntukubuntu-feist-fawn/</link>
		<comments>http://dontfeedtheseagulls.com/2007/08/20/configuring-synaptics-touchpad-in-ubuntukubuntu-feist-fawn/#comments</comments>
		<pubDate>Mon, 20 Aug 2007 15:27:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Feisty Fawn]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Synaptics Touchpad]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://dontfeedtheseagulls.com/2007/08/20/configuring-synaptics-touchpad-in-ubuntukubuntu-feist-fawn/</guid>
		<description><![CDATA[Edit the /etc/X11/xorg.conf file and look for the section for Synaptics Touchpad. add Option &#8220;SHMConfig&#8221; &#8220;on&#8221; to the bottom save and restart xorg (ctrl-alt-backspace) install the gsynaptics package sudo apt-get install gsynaptics you can then run the program qsynaptics to bring up the gui to make the touchpad settings.]]></description>
			<content:encoded><![CDATA[<p>Edit the /etc/X11/xorg.conf file and look for the section for Synaptics Touchpad.</p>
<p>add Option &#8220;SHMConfig&#8221; &#8220;on&#8221; to the bottom</p>
<p>save and restart xorg (ctrl-alt-backspace)</p>
<p>install the gsynaptics package</p>
<p>sudo apt-get install gsynaptics</p>
<p>you can then run the program qsynaptics to bring up the gui to make the touchpad settings.</p>
]]></content:encoded>
			<wfw:commentRss>http://dontfeedtheseagulls.com/2007/08/20/configuring-synaptics-touchpad-in-ubuntukubuntu-feist-fawn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing proprietary Nvidia drivers on Ubuntu Feisty Fawn</title>
		<link>http://dontfeedtheseagulls.com/2007/07/21/installing-proprietary-nvidia-drivers-on-ubuntu-fiesty-fawn/</link>
		<comments>http://dontfeedtheseagulls.com/2007/07/21/installing-proprietary-nvidia-drivers-on-ubuntu-fiesty-fawn/#comments</comments>
		<pubDate>Sat, 21 Jul 2007 20:54:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[nvidia]]></category>

		<guid isPermaLink="false">http://dontfeedtheseagulls.com/2007/07/21/installing-proprietary-nvidia-drivers-on-ubuntu-fiesty-fawn/</guid>
		<description><![CDATA[After problems on multiple machines I finally got nvidia binary drivers to work. I kept getting an error that the kernel module did not match the driver version and vice versa. Finally figured it out by searching on the net here&#8217;s my findings. This procedure might work on other versions of Ubuntu but I don&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>After problems on multiple machines I finally got nvidia binary drivers to work. I kept getting an error that the kernel module did not match the driver version and vice versa. Finally figured it out by searching on the net here&#8217;s my findings.</p>
<p>This procedure might work on other versions of Ubuntu but I don&#8217;t have those to test.</p>
<p>The instructions that nvidia gives with it&#8217;s binary are as generic as can be. This is a major problem for anyone who has installed the restricted drivers that are shipped with Ubuntu. If yer like me I always want the latest video drivers and you may run into some problems with that.</p>
<p>all the commands we will use will require root access we&#8217;ll have to use sudo. To make it easier we&#8217;ll issue sudo -s so we don&#8217;t have to use sudo in front of every command.</p>
<pre>sudo -s</pre>
<p>We first have to make sure we have the development packages with the linux headers and xorg dev installed.</p>
<pre>apt-get install build-essential
apt-get install xserver-xorg-dev</pre>
<p>Make sure we do not have any old drivers installed.</p>
<pre>apt-get remove nvidia-glx --purge
apt-get remove linux-restricted-modules-common</pre>
<p>There are some files that might be left behind that will need removing<br />
rm /etc/init.d/nvidia-glx<br />
rm /etc/init.d/nvidia-kernel</p>
<p>Additionally, delete the following file if it exists:</p>
<pre>
rm -f /lib/linux-restricted-modules/.nvidia_new_installed</pre>
<p>now just install the new drivers</p>
<pre>
sh NVIDIA-Linux-x86-100.14.11-pkg1.run</pre>
<p>Follow the instructions and everything should be good.</p>
]]></content:encoded>
			<wfw:commentRss>http://dontfeedtheseagulls.com/2007/07/21/installing-proprietary-nvidia-drivers-on-ubuntu-fiesty-fawn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Ubuntu Studio theme on existing Ubuntu Feisty installation</title>
		<link>http://dontfeedtheseagulls.com/2007/07/19/installing-ubuntu-studio-theme-on-existing-ubuntu-fiesty-installation/</link>
		<comments>http://dontfeedtheseagulls.com/2007/07/19/installing-ubuntu-studio-theme-on-existing-ubuntu-fiesty-installation/#comments</comments>
		<pubDate>Thu, 19 Jul 2007 11:07:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://dontfeedtheseagulls.com/2007/07/19/installing-ubuntu-studio-theme-on-existing-ubuntu-fiesty-installation/</guid>
		<description><![CDATA[Couldn&#8217;t be simpler wget http://archive.ubuntustudio.org/ubuntustudio.gpg -O- &#124; sudo apt-key add - sudo echo "deb http://archive.ubuntustudio.org/ubuntustudio feisty main" &#62;&#62; /etc/apt/sources.list sudo apt-get update sudo apt-get install ubuntustudio-look]]></description>
			<content:encoded><![CDATA[<p align="left">Couldn&#8217;t be simpler</p>
<pre>
wget <a href="http://archive.ubuntustudio.org/ubuntustudio.gpg" class="user">http://archive.ubuntustudio.org/ubuntustudio.gpg</a> -O- | sudo apt-key add -
sudo echo "deb <a href="http://archive.ubuntustudio.org/ubuntustudio" class="user">http://archive.ubuntustudio.org/ubuntustudio</a> feisty main" &gt;&gt; /etc/apt/sources.list
sudo apt-get update
sudo apt-get install ubuntustudio-look</pre>
]]></content:encoded>
			<wfw:commentRss>http://dontfeedtheseagulls.com/2007/07/19/installing-ubuntu-studio-theme-on-existing-ubuntu-fiesty-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
