<?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>Aleks&#039; Domain &#187; tip</title>
	<atom:link href="http://metaleks.net/tag/tip/feed" rel="self" type="application/rss+xml" />
	<link>http://metaleks.net</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Mon, 19 Apr 2010 20:33:48 +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>Recursively Removing .svn</title>
		<link>http://metaleks.net/programming/recursively-removing-svn</link>
		<comments>http://metaleks.net/programming/recursively-removing-svn#comments</comments>
		<pubDate>Mon, 19 Oct 2009 15:51:45 +0000</pubDate>
		<dc:creator>Aleksandar Micovic</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://metaleks.net/?p=546</guid>
		<description><![CDATA[I recently started working on an assignment that required me to copy some code from another repository. I did just that, but had a little trouble trying to add the new stuff to my new repository. After about a minute or two I realized that all of the newly copied old code still had the [...]]]></description>
			<content:encoded><![CDATA[<p>I recently started working on an assignment that required me to copy some code from another repository. I did just that, but had a little trouble trying to add the new stuff to my new repository. After about a minute or two I realized that all of the newly copied old code still had the hidden folder .svn&#8230;in every directory. I was copying an OS kernel, so there were quite a bit of these .svns sticking around. They needed to go if I was going to add any of my code into my repository.</p>
<p>How did I remove them? Like this.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">find</span> . <span style="color: #660033;">-name</span> .svn <span style="color: #660033;">-print0</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">xargs</span> <span style="color: #660033;">-0</span> <span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rf</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://metaleks.net/programming/recursively-removing-svn/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Removing Extra Ubuntu Entries in GRUB</title>
		<link>http://metaleks.net/open-source/ubuntu/removing-extra-ubuntu-entries-in-grub</link>
		<comments>http://metaleks.net/open-source/ubuntu/removing-extra-ubuntu-entries-in-grub#comments</comments>
		<pubDate>Tue, 15 Sep 2009 03:28:35 +0000</pubDate>
		<dc:creator>Aleksandar Micovic</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[boot]]></category>
		<category><![CDATA[grub]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://metaleks.net/?p=508</guid>
		<description><![CDATA[If you&#8217;ve used Ubuntu through any kernel updates, you&#8217;ll know that each major update will place not one, but two entries for booting from GRUB. A normal boot, and a safe mode. If you receive three updates, that&#8217;s a total of six new entries. Not to mention that if you&#8217;re dual booting like me, you&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve used Ubuntu through any kernel updates, you&#8217;ll know that each major update will place not one, but <em>two</em> entries for booting from GRUB. A normal boot, and a safe mode. If you receive three updates, that&#8217;s a total of six new entries. Not to mention that if you&#8217;re dual booting like me, you&#8217;ll have even more. I&#8217;ve been putting it off for a while, mostly because I didn&#8217;t care for the solution. But, I was bored today and I decided to look it up. I&#8217;m glad I did. It&#8217;s a lot easier than I thought.</p>
<p><code>sudo vim /boot/grub/menu.lst</code></p>
<p>That&#8217;s it. Then just comment out the entries (they span multiple lines, and are near the end of the file). If you don&#8217;t like vim, or working through the terminal then run the command below to edit the file in gedit.</p>
<p><code>gksu gedit /boot/grub/menu.lst</code></p>
<p>Once you have the file open, just comment out the entries by placing a &#8220;#&#8221; before every line in the entry. You may be tempted to delete some of the entries, but really, why would you want to do that? Commenting them out solves the problem, and if something does go wrong with your current kernel, you can always uncomment an Ubuntu entry that doesn&#8217;t have the problem.</p>
<p>A commented entry looks like this.</p>
<p><code>#title		Ubuntu 9.04, kernel 2.6.28-11-generic<br />
#uuid		b511d0d6-7d11-4909-bf5e-9764fce42f96<br />
#kernel		/boot/vmlinuz-2.6.28-11-generic root=UUID=b511d0d6-7d11-4909-bf5e-9764fce42f96 ro quiet splash<br />
#initrd		/boot/initrd.img-2.6.28-11-generic<br />
#quiet</code></p>
<p>Hope this helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://metaleks.net/open-source/ubuntu/removing-extra-ubuntu-entries-in-grub/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
