<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss 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:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>LinuxHaxor.net</title>
	
	<link>http://www.linuxhaxor.net</link>
	<description>Linux Hacking Portal</description>
	<pubDate>Tue, 02 Dec 2008 16:26:49 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
	<language>en</language>
			<thespringbox:skin xmlns:thespringbox="http://www.thespringbox.com/dtds/thespringbox-1.0.dtd">http://feeds.feedburner.com/linuxhaxor/zvzl?format=skin</thespringbox:skin><creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license><image><url>http://www.feedburner.com/fb/images/pub/fb_pwrd.gif</url></image><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/linuxhaxor/zvzl" type="application/rss+xml" /><feedburner:emailServiceId>1023550</feedburner:emailServiceId><feedburner:feedburnerHostname>http://www.feedburner.com</feedburner:feedburnerHostname><item>
		<title>Using Spawner To Populate SQL Database</title>
		<link>http://feeds.feedburner.com/~r/linuxhaxor/zvzl/~3/472245988/</link>
		<comments>http://www.linuxhaxor.net/2008/12/02/using-spawner-to-populate-sql-database/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 08:41:27 +0000</pubDate>
		<dc:creator>Owen</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.linuxhaxor.net/?p=1262</guid>
		<description><![CDATA[There are many reasons why you would want to generate bogus data for your database. Perhaps you&#8217;d like to know how well your databases will perform when filled with data, or maybe you just need some data so that you can start creating a front end for the database. I recently ran into the problem [...]]]></description>
			<content:encoded><![CDATA[<p>There are many reasons why you would want to generate bogus data for your database. Perhaps you&#8217;d like to know how well your databases will perform when filled with data, or maybe you just need some data so that you can start creating a front end for the database. I recently ran into the problem of not wanting to generate lots of data manually. I initially thought that I would write a shell script to do this, but figured I might as well look around first. I stumbled across a program called <a href="http://sourceforge.net/projects/spawner">Spawner</a> which is great for generating data for database testing.</p>
<p>Once you&#8217;ve downloaded spawner from sourceforge you&#8217;ll probably have to install some libraries. I had to install gtkhtml, gnome-spell2, gdk-pixbuf and glib on OpenSuse and very similar packages on Fedora 8.</p>
<p>To run the binary, I extracted it, moved it into my opt directory and chowned and chmodded the file. You should be able to do the following if you don&#8217;t know how to do it.</p>
<blockquote><p>wget http://downloads.sourceforge.net/spawner/spawner-0.1.5-linux-i386.tar.gz?modtime=1223296659&amp;big_mirror=0 tar xvzf spawner-0.1.5-linux-i386.tar.gz</p>
</blockquote>
<p>(as root, or sudo)</p>
<blockquote><p>sudo mv spawner-0.1.5-linux-i386 /opt/ sudo chown YOURUSER:YOURGROUP /opt/spawner-0.1.5-linux-i386</p>
</blockquote>
<p><span id="more-1262"></span></p>
<p>Once you&#8217;ve done that, to execute it you just type /opt/spawner-0.1.5-linux-i386/spawner and it should start right up if you have all of the dependencies installed.</p>
<p>Spawner is fairly simple to use but does have some &#8220;quirks&#8221; that I have noticed. From the main screen, you have three tabs; Fields, Output and Message log. The fields tab is used to enter your fields of your table. You specify the field name and type here. <strong>Notes:</strong> You must hit the save button for each field and sometimes using the arrow keys for the field types helps with selecting them. Once you have defined your fields I&#8217;d recommend saving them, just in case.</p>
<p align="center"><a href="http://farm4.static.flickr.com/3250/3076245825_a42963bc6f_o.png"><img alt="" hspace="0" src="http://farm4.static.flickr.com/3250/3076245825_b50c93aeb1.jpg" align="baseline" border="0" /></a></p>
<p>Once you have your field definitions set you can work the output tab. You can choose the output type as delimited, SQL or a MySQL Database. The first two options need an output file while the latter you will need your connection information. The output tab is also where you specify the number of records to generate.</p>
<p><iframe style="PADDING-RIGHT: 0px; PADDING-LEFT: 4px; BACKGROUND: #fff; FLOAT: right; MARGIN-BOTTOM: 5px; PADDING-BOTTOM: 2px; MARGIN-LEFT: 10px; PADDING-TOP: 4px" height="82" src="http://digg.com/api/diggthis.php?u=http://digg.com/linux_unix/Using_Spawner_To_Populate_SQL_Database" frameborder="0" width="55" scrolling="no"></iframe>
<p>Click the Spawn button! You can look at the &#8220;Message Log&#8221; tab for errors. If it only inserts one record, click the spawn again and see if it starts generating the amount of records you specified. Occasionally it will only generate one record without it being your fault, but chances are if it doesn&#8217;t start spawning records you may have specified a field name incorrectly, you&#8217;re trying to put invalid data into a field, your connection information is incorrect or your using the wrong database/table.</p>
<p>&nbsp;
<div class="aizattos_related_posts"><span class="related" >Related Posts:</span>
<ul>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2007/12/26/vnstat-network-traffic-monitor/" rel="bookmark" title="Permanent Link: vnStat &#8212; Network Traffic Monitor" >vnStat &#8212; Network Traffic Monitor</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2007/12/06/manage-password-with-keepassx/" rel="bookmark" title="Permanent Link: Manage Password With KeePassx" >Manage Password With KeePassx</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2008/04/28/i-am-jobless-and-it-feels-great/" rel="bookmark" title="Permanent Link: I Am Jobless And It Feels Great" >I Am Jobless And It Feels Great</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2008/01/08/commandline-password-database-utility/" rel="bookmark" title="Permanent Link: Commandline Password Database Utility" >Commandline Password Database Utility</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2007/12/18/integrit-integrity-verification-programs/" rel="bookmark" title="Permanent Link: integrit - Integrity Verification Programs" >integrit - Integrity Verification Programs</a></span></li>
</ul>
</div>

<p><a href="http://feeds.feedburner.com/~a/linuxhaxor/zvzl?a=BBrofF"><img src="http://feeds.feedburner.com/~a/linuxhaxor/zvzl?i=BBrofF" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=V1OjO"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=V1OjO" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=I5gjo"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=I5gjo" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=ZOXkO"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=ZOXkO" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=aOGJo"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=aOGJo" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=b7c8O"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=b7c8O" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=jIdZo"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=jIdZo" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=uU7lO"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=uU7lO" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/linuxhaxor/zvzl/~4/472245988" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.linuxhaxor.net/2008/12/02/using-spawner-to-populate-sql-database/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=linuxhaxor/zvzl&amp;itemurl=http%3A%2F%2Fwww.linuxhaxor.net%2F2008%2F12%2F02%2Fusing-spawner-to-populate-sql-database%2F</feedburner:awareness><feedburner:origLink>http://www.linuxhaxor.net/2008/12/02/using-spawner-to-populate-sql-database/</feedburner:origLink></item>
		<item>
		<title>Linux Virus: A False Sense Of Security</title>
		<link>http://feeds.feedburner.com/~r/linuxhaxor/zvzl/~3/466412477/</link>
		<comments>http://www.linuxhaxor.net/2008/11/26/linux-virus-a-false-sense-of-security/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 17:26:46 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.linuxhaxor.net/?p=1256</guid>
		<description><![CDATA[
There seems to be a false sense of security among some Linux users. The number of malicious programs specifically written for GNU/Linux has been on the increase in recent years and in the year of 2005 alone has more than doubled: from 422 to 863. Some security consultants will argue that Linux has fewer viruses/malwares [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><img alt="" hspace="0" src="http://farm4.static.flickr.com/3239/3060834097_9c15383c90.jpg" align="baseline" border="0" /></p>
<p>There seems to be a false sense of security among some Linux users. The number of malicious programs specifically written for GNU/Linux has been on the increase in recent years and in the year of 2005 alone has more than doubled: <a href="http://www.internetnews.com/dev-news/article.php/3601946">from 422 to 863</a>. Some security consultants will argue that Linux has fewer viruses/malwares because it is less attractive as a target for having a smaller user base (compare <strong>~90.66%</strong> Windows vs <strong>~0.93%</strong> Linux). You may call me a traitor but I agree with that assessment. There is no reason why we will not see a rise of malware designed for Linux as it becomes more mainstream among ordinary users.</p>
<p>I&#8217;ve heard so many times from beginners “do I need an anti-virus?”, “Linux has no viruses”, “There&#8217;s no way a virus could infect a Linux box”. This is the false sense of security that many new Linux users are dealing with today. Most are just starting out as Linux users and have no idea about the risks and safe actions to take. Newbie Linux users tends to feel safe with statements they read about how the Linux OS could never be infected and if so could never be executed because of the way files works under Linux.</p>
<p><span id="more-1256"></span></p>
<p>Linux does have its share of viruses, trojans and worms but would the Linux infected binaries really need to be exclusively executed by root for a major system apocalypse? Although in most cases the system programs are owned by root and the user is just running the program from a non-privileged account. Some people will argue that for a system wide infection, the infected binary would have to be derived exclusively from root and as a non-privileged user, by running an infected program would only effect the users /home directory and not a system wide infection.</p>
<p>There is a method to infect a system wide Linux OS without the need to become root, this procedure is a commonly known as “Privilege escalation” &#8211;</p>
<blockquote><p>“Privilege escalation is the act of exploiting a bug or design fault in a software application to gain access to resources which normally would have been protected from an application or user. The result is that the application performs actions with more privileges than intended by the application developer or system administrator” (<a href="http://en.wikipedia.org/wiki/Privilege_escalation">Privilege escalation</a>).</p>
</blockquote>
<p>Its not very likely that Linux malwares will ever compare to that of the Windows viruses and even more unlikely that Linux will ever see its share of the same issues with malware as the Windows operating system. If you take into consideration the email-borne viruses that Microsoft has, they are all executable and are in most cases executed by the user, whereas with Linux you would have to save the file make the file executable and manually run the file. Windows XP automatically makes the first named user an administrator, with the power to do anything to the system. Linux on the other hand uses the first named user as the root administrator but does not allow root login on boot-up.</p>
<p>As a Linux user, using the repositories, md5 checksums and using root privileges only when necessary are just a few ways to to guard against an intrusion. SSH is often the first point of entry to a Linux system but it&#8217;s not the last line of defense. Using a strong password and anti-virus software should always be common practice for any OS and could potentially limit the risk of a system catastrophe.</p>
<p><iframe style="PADDING-RIGHT: 0px; PADDING-LEFT: 4px; BACKGROUND: #fff; FLOAT: right; MARGIN-BOTTOM: 5px; PADDING-BOTTOM: 2px; MARGIN-LEFT: 10px; PADDING-TOP: 4px" height="82" src="http://digg.com/api/diggthis.php?u=http://digg.com/linux_unix/Linux_Virus_A_False_Sense_Of_Security" frameborder="0" width="55" scrolling="no"></iframe>
<p>Safe computing&#8230;.</p>
<p>&nbsp;
<div class="aizattos_related_posts"><span class="related" >Related Posts:</span>
<ul>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2008/01/21/really-a-tool-for-gaining-privilege-simple-realistic-sudo/" rel="bookmark" title="Permanent Link: really - a Tool for Gaining Privilege (simple, realistic sudo)" >really - a Tool for Gaining Privilege (simple, realistic sudo)</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2007/12/06/clamtk-clamav-gui/" rel="bookmark" title="Permanent Link: ClamTK &#8212; ClamAV GUI" >ClamTK &#8212; ClamAV GUI</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2007/12/26/scanrand-stateless-tcp-network-analysis-system/" rel="bookmark" title="Permanent Link: scanrand - Stateless TCP Network Analysis System" >scanrand - Stateless TCP Network Analysis System</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2007/11/21/10-basic-linux-security-tips-to-implement/" rel="bookmark" title="Permanent Link: 10 Basic Linux Security Tips to Implement" >10 Basic Linux Security Tips to Implement</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2007/11/30/bastille-harden-your-security/" rel="bookmark" title="Permanent Link: Bastille - Harden Your Security" >Bastille - Harden Your Security</a></span></li>
</ul>
</div>

<p><a href="http://feeds.feedburner.com/~a/linuxhaxor/zvzl?a=JeNakk"><img src="http://feeds.feedburner.com/~a/linuxhaxor/zvzl?i=JeNakk" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=T0uEN"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=T0uEN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=PyXVn"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=PyXVn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=Hws0N"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=Hws0N" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=P4WCn"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=P4WCn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=CR6JN"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=CR6JN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=IpJjn"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=IpJjn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=2yR1N"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=2yR1N" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/linuxhaxor/zvzl/~4/466412477" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.linuxhaxor.net/2008/11/26/linux-virus-a-false-sense-of-security/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=linuxhaxor/zvzl&amp;itemurl=http%3A%2F%2Fwww.linuxhaxor.net%2F2008%2F11%2F26%2Flinux-virus-a-false-sense-of-security%2F</feedburner:awareness><feedburner:origLink>http://www.linuxhaxor.net/2008/11/26/linux-virus-a-false-sense-of-security/</feedburner:origLink></item>
		<item>
		<title>Linux is a kernel, Now STFU</title>
		<link>http://feeds.feedburner.com/~r/linuxhaxor/zvzl/~3/460990341/</link>
		<comments>http://www.linuxhaxor.net/2008/11/21/linux-is-a-kernel-now-stfu/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 17:49:43 +0000</pubDate>
		<dc:creator>Pavs</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.linuxhaxor.net/?p=1235</guid>
		<description><![CDATA[
Ok. How many times did it happen to you that whenever you say &#8220;Linux&#8221; referring to Linux Distro or Linux as an OS in general, some righteous-grammar nazi pops out of nowhere only to correct you by pointing out the obvious and the annoying fact that &#8220;Linux is actually a kernel&#8221;; no really your family [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><img alt="" hspace="0" src="http://farm4.static.flickr.com/3219/3048448414_249c4fb224.jpg" align="baseline" border="0" /></p>
<p>Ok. How many times did it happen to you that whenever you say &#8220;Linux&#8221; referring to Linux Distro or Linux as an OS in general, some <font color="black"><strong>righteous-grammar nazi</strong></font> pops out of nowhere only to correct you by pointing out the obvious and the annoying fact that &#8220;Linux is actually a kernel&#8221;; no really your family will die and rot in hell if you don&#8217;t take the effort and specifically mention linux as a kernel.</p>
<p>So we can&#8217;t use one word to describe two things? It&#8217;s not like we are using the word &#8220;Intelligent&#8221; to describe both &#8220;Obama&#8221; and &#8220;Bush&#8221; - that would be totally wrong! Is using the word Linux in a loose reference to describe &#8220;Linux Kernel based OS&#8221;, so out of place?</p>
<p>If we can&#8217;t use one word to describe two things, then we shouldn&#8217;t use &#8220;kernel&#8221; to describe &#8220;Linux Kernel&#8221;; when clearly &#8220;corn kernel&#8221; came before Linux kernel and we shouldn&#8217;t use the word &#8220;kernel&#8221; to describe two things.</p>
<p>Let&#8217;s see what the reference guides have to say about the word &#8220;Linux&#8221;:</p>
<p>&nbsp;<br />
<span id="more-1235"></span></p>
<hr/>
<p><em>Linux (commonly pronounced IPA: /?l?n?ks/ in English; variants exist[1]) is a generic term commonly used to refer to Unix-like computer <strong>operating systems</strong> which use the Linux kernel.</em></p>
<div class="green"><small>
<p style="TEXT-ALIGN: right">&#8211; <a href="http://en.wikipedia.org/wiki/Linux">Wikipedia</a></p>
<p></small></div>
<p>&nbsp;</p>
<p><em>   1. (computing, uncountable) A free Unix-like <strong>operating system</strong> kernel created by Linus Torvalds and released under the GNU General Public License.<br />
   2. (countable) One of any number of systems that uses Linux as its kernel.<br /></em></p>
<div class="green"><small>
<p align="right">&#8211; <a href="http://en.wiktionary.org/wiki/linux">wikitionary</a></p>
<p></small></div>
<p>&nbsp;</p>
<p><em>A trademark for an open-source version of the UNIX <strong>operating system</strong>.</em></p>
<div class="green"><small>
<p align="right">&#8211; <a href="http://dictionary.reference.com/browse/linux">dictionary.com</a> &amp; <a href="http://www.thefreedictionary.com/linux">thefreedictionary</a></p>
<p></small></div>
<p>&nbsp;</p>
<p><em>A trademark for a computer <strong>operating system</strong> that is a free implementation of the UNIX operating system.</em></p>
<div class="green"><small>
<p align="right">&#8211; <a href="http://encarta.msn.com/dictionary_/linux.html">encarta</a></p>
<p></small></div>
<p>&nbsp;</p>
<p><em>An open-source version of the UNIX <strong>operating system</strong>.</em></p>
<div class="green"><small>
<p align="right">&#8211; <a href="http://www.wordreference.com/definition/linux">wordreference</a></p>
<p></small></div>
<p>&nbsp;</p>
<p><em>Pronounced lee-nucks or lih-nucks. A freely-distributable <strong>open source operating system</strong> that runs on a number of hardware platforms. The Linux kernel was developed mainly by Linus Torvalds and it is based on Unix. Because it&#8217;s free, and because it runs on many platforms, including PCs and Macintoshes, Linux has become an extremely popular alternative to proprietary operating systems.</em></p>
<div class="green"><small>
<p align="right">&#8211; <a href="http://www.webopedia.com/TERM/L/Linux.html">webopedia</a></p>
<p></small></div>
<p>&nbsp;</p>
<p>
<em>A freeware implementation of UNIX originally written from scratch with no proprietary code by Linus Torvalds, which can be used with many different operating systems.</em></p>
<div class="green"><small>
<p align="right">&#8211; <a href="http://www.techdictionary.com/search_action.lasso?-Database=db_A00534&amp;-Table=Layout+%231&amp;-ResponseAnyError=%2Fsearch_error.lasso&amp;-OperatorLogical=OR&amp;-Operator=eq&amp;-Token=-Search&amp;term=linux&amp;-Nothing=Search">techdictionary</a></p>
<p></small></div>
<p>&nbsp;</p>
<p><em>Linux is an <strong>operating system</strong> that was initially created as a hobby by a young student, Linus Torvalds, at the University of Helsinki in Finland. Linus had an interest in Minix, a small UNIX system, and decided to develop a system that exceeded the Minix standards.</em></p>
<div class="green"><small>
<p align="right">&#8211;<a href="http://www.linux.org/info/">linux.org</a></p>
<p></small></div>
<p>&nbsp;</p>
<p><em><strong>Depending on the context, the word &#8220;Linux&#8221; describes a couple of things</strong>. Most accurately, the word &#8220;Linux&#8221; describes an operating system kernel &#8212; that is, the low-level part of an operating system that does all the hard work of talking to the computer&#8217;s hardware, managing memory and devices, and generally doing the grunt work. Unless you are an advanced user, or you run into some sort of hardware or software problem, you&#8217;ll almost never interact or even need to think about the kernel itself.</em></p>
<p><em>While it&#8217;s a very important part of the system, it&#8217;s not something that users interact with directly. Instead, you&#8217;ll be working with what are referred to as &#8220;user-space&#8221; programs &#8212; so called because users actually work with the programs directly. When a vendor or project bundles the Linux kernel and a bunch of user-space programs together in a way that&#8217;s useful to end users, <strong>that&#8217;s called a Linux distribution, often just &#8220;Linux&#8221; for short &#8212; because Linux is at the heart of the whole thing to begin with, and saying &#8220;Linux distribution&#8221; every time is a bit long winded. Generally speaking, when people say something like &#8220;I use Linux,&#8221; or &#8220;have you tried Linux?&#8221; they&#8217;re not just talking about the kernel, they&#8217;re talking about a Linux distribution.</strong></em></p>
<div class="green"><small>
<p align="right">&#8211; <a href="http://www.linux.com/whatislinux/114354">linux.com</a></p>
<p></small></div>
<p>&nbsp;<br />
<iframe style="PADDING-RIGHT: 0px; PADDING-LEFT: 4px; BACKGROUND: #fff; FLOAT: right; MARGIN-BOTTOM: 5px; PADDING-BOTTOM: 2px; MARGIN-LEFT: 10px; PADDING-TOP: 4px" height="82" src="http://digg.com/api/diggthis.php?u=http://digg.com/linux_unix/Linux_is_a_kernel_Now_STFU" frameborder="0" width="55" scrolling="no"></iframe>
<p>Next up. <a href="http://en.wikipedia.org/wiki/GNU/Linux_naming_controversy">We should call it Linux or GNU/Linux</a>?</p>
</p>
<p>&nbsp;&nbsp;
<div class="aizattos_related_posts"><span class="related" >Related Posts:</span>
<ul>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2008/09/24/linux-on-a-nutshell/" rel="bookmark" title="Permanent Link: Linux On a Nutshell" >Linux On a Nutshell</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2007/08/02/lsmod-program-to-show-the-status-of-modules-in-the-linux-kernel/" rel="bookmark" title="Permanent Link: lsmod &#8212; program to show the status of modules in the Linux Kernel" >lsmod &#8212; program to show the status of modules in the Linux Kernel</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2008/01/09/sysprof-linux-profiler/" rel="bookmark" title="Permanent Link: Sysprof: Linux Profiler" >Sysprof: Linux Profiler</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2007/08/02/uname-get-name-and-information-about-current-kernel/" rel="bookmark" title="Permanent Link: uname - get name and information about current kernel" >uname - get name and information about current kernel</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2008/01/04/software-watchdog/" rel="bookmark" title="Permanent Link: Software Watchdog" >Software Watchdog</a></span></li>
</ul>
</div>

<p><a href="http://feeds.feedburner.com/~a/linuxhaxor/zvzl?a=DIBiec"><img src="http://feeds.feedburner.com/~a/linuxhaxor/zvzl?i=DIBiec" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=5tjsN"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=5tjsN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=RliQn"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=RliQn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=gdDYN"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=gdDYN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=nDA2n"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=nDA2n" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=6PLRN"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=6PLRN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=XDaIn"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=XDaIn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=5Tu4N"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=5Tu4N" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/linuxhaxor/zvzl/~4/460990341" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.linuxhaxor.net/2008/11/21/linux-is-a-kernel-now-stfu/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=linuxhaxor/zvzl&amp;itemurl=http%3A%2F%2Fwww.linuxhaxor.net%2F2008%2F11%2F21%2Flinux-is-a-kernel-now-stfu%2F</feedburner:awareness><feedburner:origLink>http://www.linuxhaxor.net/2008/11/21/linux-is-a-kernel-now-stfu/</feedburner:origLink></item>
		<item>
		<title>Complete Backup and Restore Using “tar” Command</title>
		<link>http://feeds.feedburner.com/~r/linuxhaxor/zvzl/~3/460178454/</link>
		<comments>http://www.linuxhaxor.net/2008/11/20/complete-backup-and-restore-using-tar-command/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 00:26:17 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.linuxhaxor.net/?p=1229</guid>
		<description><![CDATA[
We&#8217;ve all made mistakes during our configuration and at some point wish we could go back in time before the mistake. Now that you have the ultimate setup that you&#8217;ve worked so hard on, how are you going to be sure you have the same setup after a system or hard drive crash? I&#8217;ll explain [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><img alt="" hspace="0" src="http://farm4.static.flickr.com/3186/3047108018_ded8458476.jpg" align="baseline" border="0" /></p>
<p>We&#8217;ve all made mistakes during our configuration and at some point wish we could go back in time before the mistake. Now that you have the ultimate setup that you&#8217;ve worked so hard on, how are you going to be sure you have the same setup after a system or hard drive crash? I&#8217;ll explain methods I use to maintain my setup and configuration files without the loss of any data or personal settings. Once you have recovered from the crash, the restoration can be as simple as typing a single command using the Live CD and a terminal.</p>
<p>The first, and most important, is that the backup medium is not located on the same drive as your Linux setup. I personally use an external USB drive for all my backup data (which can be purchased for next to nothing nowadays), although you could use another remote drive within your system unit, even a non bootable drive. These techniques are based on my favorite flavor Ubuntu and can be applied to any version of GNU/Linux.</p>
<p>The easiest method would be to use a simple “tar” command (such as):</p>
<p align="center"><img alt="" hspace="0" src="http://farm4.static.flickr.com/3074/3046246523_190dc0ce2b_o.png" align="baseline" border="0" /></p>
<p><span id="more-1229"></span></p>
<p>Flags used by the “tar” command aid in the backup procedure by allowing us to include or exclude files or directories. With the “exclude” flag we can exclude system folders or individual files which are not necessary for the backup and can be recreated after the restore procedure (as I&#8217;ve demonstrated below). This is just a simple backup using the “tar” command but can be included in a more sophisticated approach.</p>
<p>Restoring the above backup procedure is as simple as becoming “root” (sudo su) going to “/” (root) and typing on a command line:</p>
<p align="center"><img alt="" hspace="0" src="http://farm4.static.flickr.com/3169/3046250493_19a1a909d8_o.png" align="baseline" border="0" /></p>
<p><font color="red">WARNING!!</font> This will overwrite every single file on your partition with the one in the backup archive!</p>
<p>To complete the restore just create the directories that you excluded in the above backup command using the “exclude” flag :</p>
<p><img alt="" hspace="0" src="http://farm4.static.flickr.com/3229/3046256209_43dfc6c672_o.png" align="baseline" border="0" /></p>
<p>By using the “tar” command to backup your data, you have the ability to extract any file or directory out of the “backup.tgz” file for recovery, for instance, if you have a corrupt or mis-configured &#8220;fstab&#8221; file you want to recover, you could simply issue the command:</p>
<p></p>
<p align="center"><img alt="" hspace="0" src="http://farm4.static.flickr.com/3239/3047092872_86b9b8c078_o.png" align="baseline" border="0" /></p>
<p>If your in the “/” root directory this will extract the “/etc/fstab” file to the original location. A far safer solution is to restore the desired files under a different directory (for example, your home directory), and then compare, move, or update the files to their original locations afterward. This works the same with complete directories as well.</p>
<p><strong>In conclusion:</strong></p>
<p>By using the method described above you can backup and restore a basic Linux install. We can use this method to give us a more sophisticated backup scheme by using a bash script and a few other backup details. Watch for upcoming write-ups explaining how we can save all configuration, system information, MBR and complete backup using such a scheme. No matter how complex your system, I find the “tar” procedure to be the most widely used and most reliable for any backup solution.</p>
<p>&nbsp;
<div class="aizattos_related_posts"><span class="related" >Related Posts:</span>
<ul>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2008/01/01/backup-manager-a-command-line-backup-tool/" rel="bookmark" title="Permanent Link: backup-manager: A Command Line Backup Tool" >backup-manager: A Command Line Backup Tool</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2007/11/27/7-thing-to-do-in-the-event-of-a-breach/" rel="bookmark" title="Permanent Link: 7 Thing to Do in the Event of a Breach" >7 Thing to Do in the Event of a Breach</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2008/01/22/dirvish-backing-up-filesystem-using-rsync/" rel="bookmark" title="Permanent Link: dirvish: Backing up Filesystem Using rsync" >dirvish: Backing up Filesystem Using rsync</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2008/01/15/hubackup-home-user-backup/" rel="bookmark" title="Permanent Link: Hubackup - Home User Backup" >Hubackup - Home User Backup</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2008/01/10/installing-hp-laserjet-1020-on-ubuntu/" rel="bookmark" title="Permanent Link: Installing HP Laserjet 1020 on Ubuntu" >Installing HP Laserjet 1020 on Ubuntu</a></span></li>
</ul>
</div>

<p><a href="http://feeds.feedburner.com/~a/linuxhaxor/zvzl?a=4tY1Gv"><img src="http://feeds.feedburner.com/~a/linuxhaxor/zvzl?i=4tY1Gv" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=2G2tN"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=2G2tN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=tdbEn"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=tdbEn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=aM3nN"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=aM3nN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=aFG8n"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=aFG8n" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=P4GbN"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=P4GbN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=t4NKn"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=t4NKn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=OZiiN"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=OZiiN" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/linuxhaxor/zvzl/~4/460178454" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.linuxhaxor.net/2008/11/20/complete-backup-and-restore-using-tar-command/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=linuxhaxor/zvzl&amp;itemurl=http%3A%2F%2Fwww.linuxhaxor.net%2F2008%2F11%2F20%2Fcomplete-backup-and-restore-using-tar-command%2F</feedburner:awareness><feedburner:origLink>http://www.linuxhaxor.net/2008/11/20/complete-backup-and-restore-using-tar-command/</feedburner:origLink></item>
		<item>
		<title>LoseThos: The Linux Killer?</title>
		<link>http://feeds.feedburner.com/~r/linuxhaxor/zvzl/~3/458462435/</link>
		<comments>http://www.linuxhaxor.net/2008/11/19/losethos-the-linux-killer/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 14:58:16 +0000</pubDate>
		<dc:creator>Pavs</dc:creator>
		
		<category><![CDATA[Hacking]]></category>

		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.linuxhaxor.net/?p=1218</guid>
		<description><![CDATA[
If every new iteration of Ubuntu can be a Windows killer and every new touch screen phone is an iphone killer; why can&#8217;t an open source, 64-bit, kernel mode, 100k line of original code, and with a funky name like LoseThos, be a Linux killer? Yeah, laugh it out. But don&#8217;t forget the infamous Linus [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><img alt="" hspace="0" src="http://farm4.static.flickr.com/3040/3042841803_429be39340.jpg" align="baseline" border="0" /></p>
<p>If every new iteration of Ubuntu can be a Windows killer and every new touch screen phone is an iphone killer; why can&#8217;t an open source, 64-bit, kernel mode, 100k line of original code, and with a funky name like <a href="http://www.losethos.com/">LoseThos</a>, be a Linux killer? Yeah, laugh it out. But don&#8217;t forget the infamous Linus Torvalds post at usenet - where he himself never thought much of the early version of Linux and look how far it has come today.</p>
<p><span id="more-1218"></span></p>
<p align="center"><img alt="" hspace="0" src="http://farm4.static.flickr.com/3140/3043713338_a16cc4031b.jpg" align="baseline" border="0" /></p>
<p>So what&#8217;s so awesome about this OS? As awesome as an early version of an OS written from scratch can be. To highlight some of the interesting aspect of this OS:</p>
<p>- 100% Open Source.<br />
- ISO is a Live CD, so try it without installing it.<br />
- Default kernel mode - screw security! We will crash it LIVE!<br />
- &#8220;Your MultiCore experience with LoseThos will be second to none.&#8221;<br />
- <strong>It reboots in 2 seconds.</strong><br />
- Has a new programming language based on C/C++.</p>
<p>So if you are a sucker for trying out new OS and tired of <a href="http://www.linuxhaxor.net/2008/11/17/attack-of-the-ubuntu-forks/">rebranded distro</a>, you should check it out.</p>
<p>&nbsp;
<div class="aizattos_related_posts"><span class="related" >Related Posts:</span>
<ul>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2008/09/10/hey-did-you-guys-try-jaunty-jackalope/" rel="bookmark" title="Permanent Link: Hey, Did you Guys Try Jaunty Jackalope?" >Hey, Did you Guys Try Jaunty Jackalope?</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2007/08/22/wep-explained/" rel="bookmark" title="Permanent Link: WEP Explained" >WEP Explained</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2008/09/24/linux-on-a-nutshell/" rel="bookmark" title="Permanent Link: Linux On a Nutshell" >Linux On a Nutshell</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2007/06/28/google-desktop-available-for-linux-i386/" rel="bookmark" title="Permanent Link: Google Desktop available for Linux (i386)" >Google Desktop available for Linux (i386)</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2008/09/17/happy-birthday-to-linux/" rel="bookmark" title="Permanent Link: Happy BirthDay Linux" >Happy BirthDay Linux</a></span></li>
</ul>
</div>

<p><a href="http://feeds.feedburner.com/~a/linuxhaxor/zvzl?a=AT9Rda"><img src="http://feeds.feedburner.com/~a/linuxhaxor/zvzl?i=AT9Rda" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=qil0N"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=qil0N" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=4NVxn"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=4NVxn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=z2q4N"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=z2q4N" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=xD9xn"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=xD9xn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=sIOoN"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=sIOoN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=dU9On"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=dU9On" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=MNDSN"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=MNDSN" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/linuxhaxor/zvzl/~4/458462435" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.linuxhaxor.net/2008/11/19/losethos-the-linux-killer/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=linuxhaxor/zvzl&amp;itemurl=http%3A%2F%2Fwww.linuxhaxor.net%2F2008%2F11%2F19%2Flosethos-the-linux-killer%2F</feedburner:awareness><feedburner:origLink>http://www.linuxhaxor.net/2008/11/19/losethos-the-linux-killer/</feedburner:origLink></item>
		<item>
		<title>Attack Of The Ubuntu Forks</title>
		<link>http://feeds.feedburner.com/~r/linuxhaxor/zvzl/~3/455977554/</link>
		<comments>http://www.linuxhaxor.net/2008/11/17/attack-of-the-ubuntu-forks/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 13:27:09 +0000</pubDate>
		<dc:creator>Pavs</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.linuxhaxor.net/?p=1191</guid>
		<description><![CDATA[Every time there is a new Linux distro that is making a lot of noise in the Linux community, it is just waiting to be forked by someone. Most of these forks are cosmetic in nature and are generally design improvements of user interface and sometimes adding packages not installed by default or removing few [...]]]></description>
			<content:encoded><![CDATA[<p>Every time there is a new Linux distro that is making a lot of noise in the Linux community, it is just waiting to be forked by someone. Most of these forks are cosmetic in nature and are generally design improvements of user interface and sometimes adding packages not installed by default or removing few not used by many. Some go as far as bundling them with custom kernel or using a different package manager. Ubuntu - being the most widely used Linux distribution - is also not immune to the clone/forks attacks. Today, we will look at some of the well-received Ubuntu based forks out there, which are not supported by Canonical.</p>
<p> &nbsp;</p>
<div class="green"><small><a>Linux Mint</a></small></div>
<p> &nbsp;</p>
<p align="center"><a href="http://farm4.static.flickr.com/3042/3037180203_e14a1aa728_o.png"><img alt="" hspace="0" src="http://farm4.static.flickr.com/3042/3037180203_16c9437582.jpg" align="baseline" border="0" /></a></p>
<p><span id="more-1191"></span></p>
<p><a href="http://www.linuxmint.com/index.php">Linux Mint</a> is the most popular Ubuntu forks out there - most Ubuntu users who have switched to Mint are generally very satisfied with their experience. The main elements that distinguish Mint from Ubuntu are:</p>
<ul>
<li>
<div align="left">A custom collection of system management tools (Mint Tools)</div>
</li>
<li>
<div align="left">A Unique user interface with custom theme - a lot better than the brownish theme you get with Ubuntu.</div>
</li>
<li>
<div align="left">Default installations of plugin so that you can play most common media files out of the box. Unlike Ubuntu.</div>
</li>
</ul>
<p>While Mint uses Ubuntu repositories for all software updates, it relies on its own repository for Mint specific packages.</p>
</p>
<p>&nbsp;</p>
<div class="green"><small><a>Ultimate Edition</a></small></div>
<p> &nbsp;</p>
<p align="center"><a href="http://farm4.static.flickr.com/3202/3038093164_e984992123_b.jpg"><img alt="" hspace="0" src="http://farm4.static.flickr.com/3202/3038093164_e984992123.jpg" align="baseline" border="0" /></a></p>
<p><a href="http://ultimateedition.info/">Ultimate Edition</a> (<strong>NOT</strong> Ubuntu Ultimate Edition) follows the tradition of Linux forks by having codecs of popular media files easily accessible by default for a better media experience. But unlike Mint, it is up-to-date with the latest Ubuntu build and has its own repositories for restricted drivers and repositories. UE is installed with large number of packages and Desktop Environments by default, hence the ISO is only available in large DVD formats. The author of the project also maintains Ultimate Gamers Edition for game addicts.</p>
</p>
<p>&nbsp;</p>
<div class="green"><small><a>gOS</a></small></div>
<p> &nbsp;</p>
<p align="center"><a href="http://farm4.static.flickr.com/3231/3037291195_87eabb0835_o.jpg"><img alt="" hspace="0" src="http://farm4.static.flickr.com/3231/3037291195_76cf747307.jpg" align="baseline" border="0" /></a></p>
<p>Based on Ubuntu 7.10, <a href="http://www.thinkgos.com/">gOS</a> (good OS) is an excellent example of what you can do with Linux and open source software. The whole distro is designed to work with mostly Google Apps and other online applications (Web 2.0 Apps). Though the design could use some work but IMHO it looks a lot better than Ubuntu default theme. The earlier releases were based on E17 desktop environment - the latest release has moved to Gnome as its interface of choice. You can think of gOS as an improvement of Ubuntu the same way Flock is an improvement on Firefox.</p>
</p>
<p> &nbsp;</p>
<div class="green"><small><a>CrunchBang Linux</a></small></div>
<p> &nbsp;</p>
<p align="center"><a href="http://farm4.static.flickr.com/3073/3037343287_8440d1b3e2_b.jpg"><img alt="" hspace="0" src="http://farm4.static.flickr.com/3073/3037343287_8440d1b3e2.jpg" align="baseline" border="0" /></a></p>
</p>
<p><a href="http://crunchbang.org/projects/linux/">CrunchBang</a> is a lightweight Linux distro with openbox as the default Desktop Environment. It was built with speed, usability and configurability in mind. It comes pre-installed with some popular applications not available in Ubuntu by default including restrictive drivers and codecs.</p>
<p><iframe style="PADDING-RIGHT: 0px; PADDING-LEFT: 4px; BACKGROUND: #fff; FLOAT: right; MARGIN-BOTTOM: 5px; PADDING-BOTTOM: 2px; MARGIN-LEFT: 10px; PADDING-TOP: 4px" height="82" src="http://digg.com/api/diggthis.php?u=http://digg.com/linux_unix/Attack_Of_The_Ubuntu_Forks" frameborder="0" width="55" scrolling="no"></iframe></p>
<p>While there are <a href="http://en.wikipedia.org/wiki/List_of_Ubuntu-based_distributions">many Ubutu forks</a> out there, these four are the most interesting ones that caught my eye. It is important to note that, contrary to popular belief, Ubuntu Studio is not a fork but has the blessings of Canonical.</p>
<p>&nbsp;
<div class="aizattos_related_posts"><span class="related" >Related Posts:</span>
<ul>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2008/11/19/losethos-the-linux-killer/" rel="bookmark" title="Permanent Link: LoseThos: The Linux Killer?" >LoseThos: The Linux Killer?</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2007/12/06/the-four-p-of-system-security/" rel="bookmark" title="Permanent Link: The Four &#8221; P &#8221; of System Security" >The Four &#8221; P &#8221; of System Security</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2007/11/27/burpsuite-an-integrated-platform-for-attacking-web-applications/" rel="bookmark" title="Permanent Link: Burpsuite : An integrated platform for attacking web applications" >Burpsuite : An integrated platform for attacking web applications</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2007/12/12/phishing-20/" rel="bookmark" title="Permanent Link: Phishing 2.0 ?" >Phishing 2.0 ?</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2007/12/12/7-types-of-vulnerabilities/" rel="bookmark" title="Permanent Link: 7 Types of Vulnerabilities" >7 Types of Vulnerabilities</a></span></li>
</ul>
</div>

<p><a href="http://feeds.feedburner.com/~a/linuxhaxor/zvzl?a=hzWLy6"><img src="http://feeds.feedburner.com/~a/linuxhaxor/zvzl?i=hzWLy6" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=g5bZN"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=g5bZN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=KIACn"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=KIACn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=OJlhN"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=OJlhN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=oXNSn"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=oXNSn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=8hMjN"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=8hMjN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=iYCqn"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=iYCqn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=frZWN"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=frZWN" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/linuxhaxor/zvzl/~4/455977554" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.linuxhaxor.net/2008/11/17/attack-of-the-ubuntu-forks/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=linuxhaxor/zvzl&amp;itemurl=http%3A%2F%2Fwww.linuxhaxor.net%2F2008%2F11%2F17%2Fattack-of-the-ubuntu-forks%2F</feedburner:awareness><feedburner:origLink>http://www.linuxhaxor.net/2008/11/17/attack-of-the-ubuntu-forks/</feedburner:origLink></item>
		<item>
		<title>Updates!</title>
		<link>http://feeds.feedburner.com/~r/linuxhaxor/zvzl/~3/454726668/</link>
		<comments>http://www.linuxhaxor.net/2008/11/16/updates/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 09:01:09 +0000</pubDate>
		<dc:creator>Pavs</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.linuxhaxor.net/?p=1188</guid>
		<description><![CDATA[Hi everyone. Sorry about the lack of updates. As some of you might now, this blog (and the rest in the network) has recently been acquired by ientry. This is great news for me because it means instead of spending time maintaining the site I can concentrate on creating contents. Yes, I will be still [...]]]></description>
			<content:encoded><![CDATA[<p>Hi everyone. Sorry about the lack of updates. As some of you might now, this blog (and the rest in the network) has recently been acquired by <a href="http://www.ientry.com/">ientry</a>. This is great news for me because it means instead of spending time maintaining the site I can concentrate on creating contents. Yes, I will be still here and I am in the process of building a team of writers for regular updates. If you are interested in a paid writing position <a href="http://www.linuxhaxor.net/contact/">drop me a line</a>, and make sure you tell us a little bit about yourself.</p>
<p>On a more exciting note I have been in touch with <a href="http://en.wikipedia.org/wiki/Adrian_Lamo">Adrián Lamo</a> recently and he has agreed to write for us as often as he can - so keep your eyes open for his articles.<br />
&nbsp;
<div class="aizattos_related_posts"><span class="related" >Related Posts:</span>
<ul>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2008/10/04/updates-on-older-posts/" rel="bookmark" title="Permanent Link: Updates On Older Posts" >Updates On Older Posts</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2007/12/18/view-sysytem-stats-with-saidar/" rel="bookmark" title="Permanent Link: View Sysytem Stats with Saidar" >View Sysytem Stats with Saidar</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2008/01/29/look-at-network-traffic-with-trafshow/" rel="bookmark" title="Permanent Link: Look at Network Traffic with trafshow" >Look at Network Traffic with trafshow</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2007/08/30/ubuntu-804-hardy-heron-anounced/" rel="bookmark" title="Permanent Link: Ubuntu 8.04 Hardy Heron Anounced" >Ubuntu 8.04 Hardy Heron Anounced</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2008/08/02/one-year-for-linuxhaxor/" rel="bookmark" title="Permanent Link: One Year For LinuxHaxor!!" >One Year For LinuxHaxor!!</a></span></li>
</ul>
</div>

<p><a href="http://feeds.feedburner.com/~a/linuxhaxor/zvzl?a=pDO9Au"><img src="http://feeds.feedburner.com/~a/linuxhaxor/zvzl?i=pDO9Au" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=yNcmN"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=yNcmN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=lv74n"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=lv74n" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=AeysN"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=AeysN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=Op1fn"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=Op1fn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=UkJEN"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=UkJEN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=QAZfn"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=QAZfn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=YTOWN"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=YTOWN" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/linuxhaxor/zvzl/~4/454726668" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.linuxhaxor.net/2008/11/16/updates/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=linuxhaxor/zvzl&amp;itemurl=http%3A%2F%2Fwww.linuxhaxor.net%2F2008%2F11%2F16%2Fupdates%2F</feedburner:awareness><feedburner:origLink>http://www.linuxhaxor.net/2008/11/16/updates/</feedburner:origLink></item>
		<item>
		<title>Geek War: Mac vs. PC vs. Linux</title>
		<link>http://feeds.feedburner.com/~r/linuxhaxor/zvzl/~3/432955615/</link>
		<comments>http://www.linuxhaxor.net/2008/10/26/geek-war-mac-vs-pc-vs-linux/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 21:50:36 +0000</pubDate>
		<dc:creator>Pavs</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.linuxhaxor.net/?p=1171</guid>
		<description><![CDATA[
 &#160; 
Source: A Geek Story
 &#160;



 &#160; 
Source: Interwebs
 &#160; 


 &#160; 
Source: Dueling Analogs
 &#160; 


 &#160; 
Source: Novell
 &#160;
Related Posts:

geek test v.3.1
10 Awesome Linux T-shirt
VMware Fusion beta 4 for OS X
Text-based Calendar And Todo Manager
Packet Capture and Interception for Switched Networks


]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" src="http://farm4.static.flickr.com/3037/2975967858_b66dd0841c.jpg" alt="Mac vs PC vs Linux" width="500" height="335" /></p>
<p> &nbsp; </p>
<div class="green"><small><a href="http://ageekstory.com/comic/mac-pc-2/">Source: A Geek Story</a></small></div>
<p> &nbsp;<br />
<span id="more-1171"></span></p>
<p style="text-align: center;">
<a href="http://farm4.static.flickr.com/3189/2976039000_67a4827c12_o.png"><img class="aligncenter" src="http://farm4.static.flickr.com/3189/2976039000_f651b53235.jpg" alt="null" width="500" height="222" /></a><br />
 &nbsp; </p>
<div class="green"><small><a>Source: Interwebs</a></small></div>
<p> &nbsp; </p>
<p style="text-align: center;">
<a href="http://farm4.static.flickr.com/3224/2975212331_13e058b794_o.png"><img class="aligncenter" src="http://farm4.static.flickr.com/3224/2975212331_10f21291d1.jpg" alt="null" /></a><br />
 &nbsp; </p>
<div class="green"><small><a href="http://www.duelinganalogs.com/">Source: Dueling Analogs</a></small></div>
<p> &nbsp; </p>
<div align="center">
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/rtp5gNhBZgo&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/rtp5gNhBZgo&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></div>
<p> &nbsp; </p>
<div class="green"><small><a href="http://www.novell.com/video/">Source: Novell</a></small></div>
<p> &nbsp;
<div class="aizattos_related_posts"><span class="related" >Related Posts:</span>
<ul>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2007/12/04/geek-test-v31/" rel="bookmark" title="Permanent Link: geek test v.3.1" >geek test v.3.1</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2008/07/12/10-awesome-linux-t-shirt/" rel="bookmark" title="Permanent Link: 10 Awesome Linux T-shirt" >10 Awesome Linux T-shirt</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2007/07/06/vmware-fusion-beta-4-for-os-x/" rel="bookmark" title="Permanent Link: VMware Fusion beta 4 for OS X" >VMware Fusion beta 4 for OS X</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2007/12/27/text-based-calendar-and-todo-manager/" rel="bookmark" title="Permanent Link: Text-based Calendar And Todo Manager" >Text-based Calendar And Todo Manager</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2008/01/10/packet-capture-and-interception-for-switched-networks/" rel="bookmark" title="Permanent Link: Packet Capture and Interception for Switched Networks" >Packet Capture and Interception for Switched Networks</a></span></li>
</ul>
</div>

<p><a href="http://feeds.feedburner.com/~a/linuxhaxor/zvzl?a=XwY6Bc"><img src="http://feeds.feedburner.com/~a/linuxhaxor/zvzl?i=XwY6Bc" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=FDwYM"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=FDwYM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=7ev9m"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=7ev9m" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=GTRmM"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=GTRmM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=9jotm"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=9jotm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=SPUXM"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=SPUXM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=zGwGm"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=zGwGm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=JSGqM"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=JSGqM" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/linuxhaxor/zvzl/~4/432955615" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.linuxhaxor.net/2008/10/26/geek-war-mac-vs-pc-vs-linux/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=linuxhaxor/zvzl&amp;itemurl=http%3A%2F%2Fwww.linuxhaxor.net%2F2008%2F10%2F26%2Fgeek-war-mac-vs-pc-vs-linux%2F</feedburner:awareness><feedburner:origLink>http://www.linuxhaxor.net/2008/10/26/geek-war-mac-vs-pc-vs-linux/</feedburner:origLink></item>
		<item>
		<title>Firefox Removes its License Agreement From Ubuntu</title>
		<link>http://feeds.feedburner.com/~r/linuxhaxor/zvzl/~3/431538440/</link>
		<comments>http://www.linuxhaxor.net/2008/10/25/firefox-removes-its-license-agreement-from-ubuntu/#comments</comments>
		<pubDate>Sat, 25 Oct 2008 08:35:18 +0000</pubDate>
		<dc:creator>Pavs</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.linuxhaxor.net/?p=1167</guid>
		<description><![CDATA[Mozilla received a lot of criticism from OS community for bundling EULA with Firefox builds. Even though they decided to remove EULA, earlier Ubuntu Ibex alpha builds still had the old EULA on.

The last update has removed this much talked about EULA and in to something perhaps more acceptable to the OS community:

 &#160;
Related Posts:

Firefox [...]]]></description>
			<content:encoded><![CDATA[<p>Mozilla received a lot of criticism from OS community for bundling EULA with Firefox builds. Even though they decided to remove EULA, earlier Ubuntu Ibex alpha builds still had the old EULA on.</p>
<p style="text-align: center;"><a href="http://farm4.static.flickr.com/3138/2971354168_d4c5d5fe5e_o.png"><img class="aligncenter" src="http://farm4.static.flickr.com/3138/2971354168_87af4ba307.jpg" alt="EULA" width="500" height="355" /></a></p>
<p>The last update has removed this much talked about EULA and in to something perhaps more acceptable to the OS community:</p>
<p style="text-align: center;"><a href="http://farm4.static.flickr.com/3229/2971338728_27b7a16210_o.png"><img class="aligncenter" src="http://farm4.static.flickr.com/3229/2971338728_51c7b9edd8.jpg" alt="Firefox" width="500" height="313" /></a></p>
<p> &nbsp;
<div class="aizattos_related_posts"><span class="related" >Related Posts:</span>
<ul>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2008/09/28/firefox-minefield-faster-than-chrome/" rel="bookmark" title="Permanent Link: Firefox Minefield: Faster Than Chrome" >Firefox Minefield: Faster Than Chrome</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2007/12/08/ephiphany-gnome-webbrowser/" rel="bookmark" title="Permanent Link: Ephiphany &#8212; Gnome Webbrowser" >Ephiphany &#8212; Gnome Webbrowser</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2008/05/07/installing-four-other-desktop-edition-on-ubuntu/" rel="bookmark" title="Permanent Link: Installing Four Other Desktop Edition on Ubuntu" >Installing Four Other Desktop Edition on Ubuntu</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2008/06/17/sometimes-when-i-wake-up-xkcd/" rel="bookmark" title="Permanent Link: Sometimes When I Wake Up: xkcd" >Sometimes When I Wake Up: xkcd</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2007/11/21/firefox-3-beta-1-now-available-for-download/" rel="bookmark" title="Permanent Link: Firefox 3 Beta 1 now available for download" >Firefox 3 Beta 1 now available for download</a></span></li>
</ul>
</div>

<p><a href="http://feeds.feedburner.com/~a/linuxhaxor/zvzl?a=xlg4MH"><img src="http://feeds.feedburner.com/~a/linuxhaxor/zvzl?i=xlg4MH" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=fnZcM"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=fnZcM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=sDb7m"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=sDb7m" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=dhW2M"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=dhW2M" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=99Jjm"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=99Jjm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=9rvNM"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=9rvNM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=9a9Pm"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=9a9Pm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=NceLM"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=NceLM" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/linuxhaxor/zvzl/~4/431538440" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.linuxhaxor.net/2008/10/25/firefox-removes-its-license-agreement-from-ubuntu/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=linuxhaxor/zvzl&amp;itemurl=http%3A%2F%2Fwww.linuxhaxor.net%2F2008%2F10%2F25%2Ffirefox-removes-its-license-agreement-from-ubuntu%2F</feedburner:awareness><feedburner:origLink>http://www.linuxhaxor.net/2008/10/25/firefox-removes-its-license-agreement-from-ubuntu/</feedburner:origLink></item>
		<item>
		<title>Everything You Wanted To know About Ubuntu Intrepid Ibex</title>
		<link>http://feeds.feedburner.com/~r/linuxhaxor/zvzl/~3/429955700/</link>
		<comments>http://www.linuxhaxor.net/2008/10/23/everything-you-wanted-to-know-about-ubuntu-intrepid-ibex/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 19:40:39 +0000</pubDate>
		<dc:creator>Pavs</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.linuxhaxor.net/?p=1157</guid>
		<description><![CDATA[
Earlier Alpha Release Screenshot.
The next version of Ubuntu 8.10 (Intrepid Ibex) is scheduled to be released on OCT 30th. Ubuntu, the only second Linux distro to have a six month release cycle, is the most popular Desktop Linux distribution of all time, with a market share of 30% among all Linux distributions.
&#160;
Background and Brief History [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><a href="http://farm4.static.flickr.com/3276/2966974554_ffa0ba2cce_o.jpg"><img alt="" hspace="0" src="http://farm4.static.flickr.com/3276/2966974554_8d60210e1e.jpg" align="baseline" border="0" /></a><br />
<strong>Earlier Alpha Release Screenshot.</strong></p>
<p>The next version of Ubuntu 8.10 (Intrepid Ibex) is scheduled to be released on OCT 30th. Ubuntu, the only second Linux distro to have a six month release cycle, is the most popular <strong>Desktop Linux</strong> distribution of all time, with a <a href="http://www.desktoplinux.com/cgi-bin/survey/survey.cgi?view=archive&amp;id=0813200712407">market share</a> of 30% among all Linux distributions.</p>
<p>&nbsp;</p>
<div class="red"><small><a>Background and Brief History of Ubuntu:</a></small></div>
<p><img style="PADDING-RIGHT: 0px; PADDING-LEFT: 2px; BACKGROUND: #fff; FLOAT: right; MARGIN-BOTTOM: 5px; PADDING-BOTTOM: 2px; MARGIN-LEFT: 5px; PADDING-TOP: 4px" height="75" src="http://farm4.static.flickr.com/3053/2966224447_5b0ee19818_s.jpg" width="75" scrolling="no" frameborder="0" />Ubuntu, which is based on Debian GNU/Linux, was first released in OCT 20 2004. Unlike some repackaged Linux distros (Mint and gOS), Ubuntu is significantly different and more frequently updated than Debian. Ubuntu is maintained and funded by Canonical LTD, which is owned by South African entrepreneur and a Debian developer, Mark Shuttleworth. Canonical generates revenue by selling paid support for Ubuntu, instead of selling Ubuntu itself. Ubuntu supports each release for 18 months in the form of patches and security updates and LTS releases, <em>which are released every 2 years</em>, are supported for three years for desktops and five years for servers. <a href="http://www.ubuntu.com/news/UbuntuFoundation">Ubuntu Foundations</a>, with an initial fund of $10 million dollars was created in 2005 by Canonical to help continue Ubuntu development in the future if Canonical cease to exist. Ubuntu is one of the Six Linux Distributions supported by Canonical, which defers in their package selection and philosophy. They are:</p>
<p><span id="more-1157"></span></p>
<ul>
<li><strong>Ubuntu:</strong> Flagship distro, based on Gnome Desktop Environment.</li>
<li><strong>Kubuntu:</strong> KDE is the desktop Environment of choice for Kubuntu and comes bundled with packages based on KDE/Qt by default.</li>
<li><strong>Xubuntu:</strong> With a focus on speed and simplicity, xfce is the choice of desktop environment for Xubuntu.</li>
<li><strong>Edubuntu:</strong> With students and schools in mind, Edubuntu was developed with collaboration of teachers and technologists in many countries and contains mostly education specific applications. Edubuntu comes with both KDE and Gnome desktop environment.</li>
<li><strong>Gobuntu:</strong> The philosophy behind Gobuntu was to release a distribution which has only free software. It has been announced that Gobuntu 8.04 will be the next and last release.</li>
<li><strong>JeOS:</strong> &#8220;JeOS is a specialized installation of Ubuntu Server Edition with a tuned kernel that only contains the base elements needed to run within a virtualized environment.&#8221; (<a href="http://www.ubuntu.com/products/whatisubuntu/serveredition/jeos">source</a>)</li>
</ul>
<p align="center"><a href="http://farm4.static.flickr.com/3217/2967736726_872aca7f5f_o.png"><img alt="" hspace="0" src="http://farm4.static.flickr.com/3241/2966933535_5d259a7d8d_o.png" align="baseline" border="0" /></a></p>
<p>&nbsp;</p>
<div class="red"><small><a>What&#8217;s new with Intrepid Ibex:</a></small></div>
<p>Ubuntu releases are evolutionary in nature; instead of drastic changes from one release to another like commercial proprietary operating systems (ie, Vista &amp; OS X), where the gap between each releases can range from two years to six years, Ubuntu is released every six months. Ubuntu releases are conveniently timed to be released one month after the release of Gnome (Ubuntu&#8217;s choice of Desktop Environment), while Gnome is released one month after the release of  X Window System (X.Org). So in effect Ubuntu releases are almost always bundled with the most recently released packages out there. To highlight <strong>some of the main</strong> features/updates of Intrepid Ibex:</p>
<p><strong>X.Org 7.4:</strong> Released in Sep 23, 2008; <a href="http://www.x.org/wiki/Releases/7.4">this version</a> comes with a significantly faster xorg-server and a better support for hot-pluggable input devices. Also introduces a new failsafe mode to better troubleshoot startup failures.</p>
<p><strong>Linux kernel 2.6.27:</strong> This is a significant kernel release which includes (among many updates), a new file system for flash-based storage devices, XEN support for saving and restoring virtual machines, better video camera support and improved support for many new drivers.</p>
<p><strong>GNOME 2.24:</strong> As previously mentioned each Ubuntu release comes with the <a href="http://library.gnome.org/misc/release-notes/2.24/">latest Gnome release</a>, this version has an improved Nautilus file manager with tabbed support, Ekiga conference client, new plugins for deskbar, support for multiple monitors and many more bug fixes.</p>
<p><strong>Guest Session:</strong> If you need to borrow your computer to a friend without letting them have access to your files and putting them in a restricted bubble, Ibex will have an option for a password less guest user account.</p>
<p><strong>DKMS:</strong> <a href="http://linux.dell.com/projects.shtml#dkms">Dynamic Kernel Module Support</a> will allow kernel package updates to be made available immediately without having to wait for rebuilds.</p>
<p><strong>Network Manager 0.7:</strong> Ibex will also feature a new and improved <a href="http://www.gnome.org/projects/NetworkManager/">network manager</a> which boasts some new features including:</p>
<ul>
<li>System wide settings</li>
<li>Management of 3G connections (GSM/CDMA)</li>
<li>Management of multiple active devices at once</li>
<li>Management of devices with static IP configurations</li>
</ul>
<p><strong>Encrypted private directory:</strong> Ibex will now support for a secret encrypted folder to securely store sensitive data using filesystem encryption, inside your home directory.</p>
<p><strong>Ubuntu Artworks:</strong> Unfortunately, it seems <strong>highly unlikely</strong> that Intrepid Ibex will look drastically any different from the previous version. Ibex will still have the same Human Theme with an optional <strong>DarkRoom Theme</strong> (shown in the first picture above) available which was used as default theme in Alpha Ibex releases. The wallpaper itself is <a href="http://cache.gawker.com/assets/images/lifehacker/2008/10/ibex_desktop_full.jpg">less than impressive</a>.</p>
<p>&nbsp;</p>
<div class="red"><small><a>Where to get Intrepid Ibex from?</a></small></div>
<p>For existing Ubuntu user, you will be prompted to upgrade to Ibex when up your Synaptic package manager.</p>
<p>New users can download <a href="http://releases.ubuntu.com/releases/8.10/">ISO images</a> from Ubuntu website directly or use torrent (highly recommended) and burn them on a CD to install on your computer. You can also download <a href="http://www.linuxhaxor.net/2008/10/07/wubi-best-thing-since-livecd/">wubi</a>, which is as Ubuntu installed for windows, the client will itself download the ibex and install it on your windows computer without compromising your existing OS or creating any partition. Additionally, you can also request a <a href="https://shipit.ubuntu.com/">free Ubuntu CD</a> mailed to you <strong>free</strong> of charge; however, depending on your location, delivery might take up to 10 weeks. If you are in the market to buy a computer you can check out the list of 19 places where you can order computer with <a href="http://www.linuxhaxor.net/2008/09/01/6-places-to-buy-pre-installed-linux-computers/">Ubuntu pre-installed</a>.</p>
<p>&nbsp;</p>
<div class="red"><small><a>I need Help with Ubuntu.</a></small></div>
<p>One thing that Ubuntu (or most Linux distro) has plenty of, are online resources and places to seek help when needed:</p>
<p><a href="https://help.ubuntu.com/">Documentation for Ubuntu</a>.<br />
<a href="https://help.ubuntu.com/community/">Community generated Documentation</a>.<br />
<a href="http://planet.ubuntu.com/">Ubuntu Community Blog</a>.<br />
Live Support Chat: IRC channel #ubuntu on irc.freenode.net.<br />
<a href="http://ubuntuforums.org/">Ubuntu Forum</a>. (688,000+ members!)</p>
</p>
<p>&nbsp;
<div class="aizattos_related_posts"><span class="related" >Related Posts:</span>
<ul>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2008/06/30/new-look-for-intrepid-ibex/" rel="bookmark" title="Permanent Link: New Look for Intrepid Ibex" >New Look for Intrepid Ibex</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2008/09/24/upgrading-to-intrepid-ibex-alpha/" rel="bookmark" title="Permanent Link: Upgrading to Intrepid Ibex Alpha" >Upgrading to Intrepid Ibex Alpha</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2008/09/10/hey-did-you-guys-try-jaunty-jackalope/" rel="bookmark" title="Permanent Link: Hey, Did you Guys Try Jaunty Jackalope?" >Hey, Did you Guys Try Jaunty Jackalope?</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2008/10/25/firefox-removes-its-license-agreement-from-ubuntu/" rel="bookmark" title="Permanent Link: Firefox Removes its License Agreement From Ubuntu" >Firefox Removes its License Agreement From Ubuntu</a></span></li>
<li><span class="aizattos_related_posts_title"><a href="http://www.linuxhaxor.net/2008/10/05/atmosphir-game-review/" rel="bookmark" title="Permanent Link: Atmosphir Game Review" >Atmosphir Game Review</a></span></li>
</ul>
</div>

<p><a href="http://feeds.feedburner.com/~a/linuxhaxor/zvzl?a=pK0gFy"><img src="http://feeds.feedburner.com/~a/linuxhaxor/zvzl?i=pK0gFy" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=F8AzM"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=F8AzM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=OGRym"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=OGRym" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=pSARM"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=pSARM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=rSeYm"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=rSeYm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=cZRsM"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=cZRsM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=0Xw8m"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=0Xw8m" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?a=i5IwM"><img src="http://feeds.feedburner.com/~f/linuxhaxor/zvzl?i=i5IwM" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/linuxhaxor/zvzl/~4/429955700" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.linuxhaxor.net/2008/10/23/everything-you-wanted-to-know-about-ubuntu-intrepid-ibex/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=linuxhaxor/zvzl&amp;itemurl=http%3A%2F%2Fwww.linuxhaxor.net%2F2008%2F10%2F23%2Feverything-you-wanted-to-know-about-ubuntu-intrepid-ibex%2F</feedburner:awareness><feedburner:origLink>http://www.linuxhaxor.net/2008/10/23/everything-you-wanted-to-know-about-ubuntu-intrepid-ibex/</feedburner:origLink></item>
	<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetFeedData?uri=linuxhaxor/zvzl</feedburner:awareness></channel>
</rss>
