<?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>TXLANS.com &#187; Linux</title>
	<atom:link href="http://www.txlans.com/category/servtuts/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.txlans.com</link>
	<description>Quit Playing with Yourself! - San Antonio, TX</description>
	<lastBuildDate>Fri, 14 Jan 2011 00:23:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Enable Wireless Tethering on Rooted HTC Aria for AT&amp;T Using Ubuntu</title>
		<link>http://www.txlans.com/2010/10/enable-wireless-tethering-on-rooted-htc-aria-for-att-using-ubuntu/</link>
		<comments>http://www.txlans.com/2010/10/enable-wireless-tethering-on-rooted-htc-aria-for-att-using-ubuntu/#comments</comments>
		<pubDate>Sun, 31 Oct 2010 03:48:34 +0000</pubDate>
		<dc:creator>amp</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Pro Tips]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Resources]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[do it yourself]]></category>
		<category><![CDATA[htc aria]]></category>
		<category><![CDATA[tethering]]></category>

		<guid isPermaLink="false">http://www.txlans.com/?p=583</guid>
		<description><![CDATA[Don&#8217;t want to buy one of those little wireless cards that Carriers are selling for $100?  Me neither so I got wireless tethering on my HTC Aria that I use with AT&#38;T. Now what needs to be made clear is that this was not done on Windows but instead using Ubuntu.  I actually found this [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.txlans.com/wp-content/uploads/2010/10/tether.jpg" rel="lightbox[583]"><img class="alignright size-thumbnail wp-image-588" title="tether" src="http://www.txlans.com/wp-content/uploads/2010/10/tether-150x150.jpg" alt="" width="150" height="150" /></a>Don&#8217;t want to buy one of those little wireless cards that Carriers are selling for $100?  Me neither so I got wireless tethering on my HTC Aria that I use with AT&amp;T.</p>
<p>Now what needs to be made clear is that this was not done on Windows but instead using Ubuntu.  I actually found this easier to do on Linux and had trouble with Windows (big surprise?). Unfortunately the article was written while I was on a Windows Machine so some files may be RAR&#8217;d or ZIP&#8217;d as opposed to being tar&#8217;d'd&#8217;d'd.</p>
<p>Files you will need that should be downloaded right now and placed in your home folder.  For ease of use, I suggest making a directory and putting them all there for example: <strong>/home/&lt;<em>user</em>&gt;/tetherfiles</strong></p>
<ul>
<li><a href="http://www.txlans.com/wp-content/uploads/2010/10/fw_bcm4329_bin.zip">fw_bcm4329_bin.zip</a></li>
<li><a href="http://www.txlans.com/wp-content/uploads/2010/10/wireless_tether_2_0_5-pre3_apk.zip">wireless_tether_2_0_5-pre3_apk.zip</a></li>
<li><a href="http://www.txlans.com/wp-content/uploads/2010/10/android-sdk_r07-linux_x86.tar">android-sdk_r07-linux_x86.tar</a></li>
</ul>
<p>Download all of these and store in an easy-to-remember location.</p>
<p>The first file we are going to use is the <strong>Android-SDK </strong>(software developers kit).  You will need this to install applications manually that are not from the marketplace (since AT&amp;T are the only ones that got rid of it..).</p>
<p><strong>Step 1.  </strong>Extract the contents of the android sdk kit</p>
<blockquote>
<pre style="text-align: left;">$ tar -zxvf android-sdk_r07-linux_x86.tar</pre>
</blockquote>
<p style="text-align: left;"><strong>Step 2.</strong>  Copy the <strong>adb</strong> application from the tools folder to the <strong>/usr/bin</strong> folder (requires root).</p>
<blockquote>
<pre style="text-align: left;"># cp android-sdk_r07-linux_x86/tools/adb /usr/bin/</pre>
</blockquote>
<p style="text-align: left;"><strong>Step 3.  </strong>Setup the rules file under <strong>/etc/udev/rules.d/</strong> and name it <strong>&#8220;51-android.rules&#8221;</strong>.  The file must contain the following (1 line) :<strong>  *** Note : You must be ROOT!</strong></p>
<blockquote>
<pre style="text-align: left;">SUBSYSTEM=="usb", SYSFS{idVendor}=="00b4", MODE="0666"</pre>
</blockquote>
<p style="text-align: left;">Alternatively, you can just copy paste this line in and it should take care of it.</p>
<blockquote>
<pre style="text-align: left;">echo "SUBSYSTEM==\"usb\", SYSFS{idVendor}==\"00b4\", MODE=\"0666\"" &gt; /etc/udev/rules.d/51-android.rules</pre>
</blockquote>
<p style="text-align: left;"><strong>Step 4.</strong>  Restart udev.</p>
<blockquote>
<pre style="text-align: left;">$ sudo restart udev</pre>
</blockquote>
<p style="text-align: left;"><strong>Step 5.</strong>  Make sure USB Debugging is enabled by going to <strong>Settings &gt; Applications &gt; Developer &gt; USB Debugging</strong> (make sure there is a checkmark next to it) and plug it into your ubuntu laptop or desktop.  Now use adb to get a list of devices.  The result should look similar to this..</p>
<blockquote>
<pre style="text-align: left;">$ adb devices
List of connected devices
HT07YR002154</pre>
</blockquote>
<p style="text-align: left;"><strong>Step 5.</strong>  Unzip <strong>wireless_tether_2_0_5-pre3.apk</strong> from it&#8217;s respective ZIP archive and install it to the HTC Aria using adb.  Make sure you have your device ID written down.  My devices ID in the previous step is <strong>HT07YR002154</strong>.  I expect yours to be different.  Correct syntax should be <em>&#8220;adb install &lt;apk file&gt; &lt;device ID&gt;&#8221;</em>.</p>
<blockquote>
<pre style="text-align: left;">$ adb install wireless_tether_2_0_5-pre3.apk &lt;device ID&gt;</pre>
</blockquote>
<p style="text-align: left;"><strong>Step 6.</strong>  Now that we have the actual Wireless Tether application installed, we need to copy over the binary file it will use.  Unzip fw_bcm4329_bin.zip and you should have the <strong>fw_bcm4329.bin</strong> file.  This file will need to be in the &#8220;<strong>android.tether</strong>&#8221; folder located in root of the SD Card.  If you have your phone plugged in feel free to switch it from Charge only to Disk Drive, then you can simply copy it over that way.</p>
<blockquote>
<pre style="text-align: left;">$ mkdir /media/&lt;device&gt;/android.tether
$ cp fw_bcm4329.bin /media/&lt;device&gt;/android.tether/</pre>
</blockquote>
<p>That&#8217;s it.  Feel free to now launch the Wireless Tethering applicaton.  You can add this to your Aria&#8217;s *slides* as a program (you know, the thing under &#8220;widgets&#8221; in the add menu).  Upon opening it will find the configuration BIN and should work like magic.</p>
<p>As always, comments are appreciated as well as tweets and the retweets.  Also, if there are any questions I will try to answer them as quick as I can.</p>
<p>Good luck!</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d583').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Want to share this post with others?</em></strong></a>
<br />
<div class="d583" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.txlans.com%2F2010%2F10%2Fenable-wireless-tethering-on-rooted-htc-aria-for-att-using-ubuntu%2F&amp;title=Enable+Wireless+Tethering+on+Rooted+HTC+Aria+for+AT%26%23038%3BT+Using+Ubuntu" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.txlans.com%2F2010%2F10%2Fenable-wireless-tethering-on-rooted-htc-aria-for-att-using-ubuntu%2F&amp;title=Enable+Wireless+Tethering+on+Rooted+HTC+Aria+for+AT%26%23038%3BT+Using+Ubuntu" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.txlans.com%2F2010%2F10%2Fenable-wireless-tethering-on-rooted-htc-aria-for-att-using-ubuntu%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.txlans.com%2F2010%2F10%2Fenable-wireless-tethering-on-rooted-htc-aria-for-att-using-ubuntu%2F&amp;title=Enable+Wireless+Tethering+on+Rooted+HTC+Aria+for+AT%26%23038%3BT+Using+Ubuntu" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.txlans.com%2F2010%2F10%2Fenable-wireless-tethering-on-rooted-htc-aria-for-att-using-ubuntu%2F&amp;title=Enable+Wireless+Tethering+on+Rooted+HTC+Aria+for+AT%26%23038%3BT+Using+Ubuntu" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Enable+Wireless+Tethering+on+Rooted+HTC+Aria+for+AT%26%23038%3BT+Using+Ubuntu+@+http%3A%2F%2Fwww.txlans.com%2F2010%2F10%2Fenable-wireless-tethering-on-rooted-htc-aria-for-att-using-ubuntu%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d583').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d583').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.txlans.com/2010/10/enable-wireless-tethering-on-rooted-htc-aria-for-att-using-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Receive Text Message Notifications For Finished Torrents</title>
		<link>http://www.txlans.com/2010/10/receive-text-message-notifications-for-finished-torrents/</link>
		<comments>http://www.txlans.com/2010/10/receive-text-message-notifications-for-finished-torrents/#comments</comments>
		<pubDate>Thu, 14 Oct 2010 14:46:46 +0000</pubDate>
		<dc:creator>amp</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Pro Tips]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[do it yourself]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[servers]]></category>
		<category><![CDATA[torrent]]></category>

		<guid isPermaLink="false">http://www.txlans.com/?p=580</guid>
		<description><![CDATA[If you&#8217;re like me you&#8217;re almost always &#8220;on the go&#8221;.  Work, school, sleep, work, school, sleep, and repeat.  I like to know when my downloads are finished and since I always have my phone on me this is probably one of the most nifty things you can do. Requirements SMS Gateway sendEmail uTorrent SMTP Server [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re like me you&#8217;re almost always &#8220;on the go&#8221;.  Work, school, sleep, work, school, sleep, and repeat.  I like to <strong>know</strong> when my downloads are finished and since I always have my phone on me this is probably one of the most nifty things you can do.</p>
<p><strong>Requirements</strong></p>
<ul>
<li>SMS Gateway</li>
<li><a href="http://caspian.dotconf.net/menu/Software/SendEmail/" target="_blank">sendEmail</a></li>
<li>uTorrent</li>
<li>SMTP Server</li>
<li>Any kind of CLI experience will help but is not required.</li>
</ul>
<p><strong><span style="font-weight: normal;">You will need each one of these, especially the SMTP server which will be responsible for sending the notification.</span></strong></p>
<p><strong><span style="font-weight: normal;"><br />
</span></strong></p>
<ol>
<li><strong>Find your SMS Gateway<br />
<span style="font-weight: normal;">You can find your SMS Gateway using<a href="http://en.wikipedia.org/wiki/List_of_SMS_gateways" target="_blank"> this list I found on Wikipedia</a>.</span> </strong>Since I use AT&amp;T my SMS gateway will be &#8220;txt.att.net&#8221;.  This means sending an email to <strong>PhoneNumber@txt.att.net</strong> will send an email to the specified phone number in the form of a text message.  Write this down or save it in notepad.</li>
<li><strong>Setting up sendEmail</strong><br />
If you haven&#8217;t already downloaded it from the link above then you need to.  Put it some place easy to remember such as C:\ or something easy to get to.  This way there will be less for you to type.  I am using C:\sendEmail.exe in this example.</li>
<li><strong>Servers<br />
</strong>You want to have this information ready.  You will need:  SMTP Server address, port, username, and a password all for the authentication and connection.</li>
<li><strong>Set up uTorrent to run sendEmail<br />
</strong>This is the fun part.  Right click on a torrent and select properties and then open the <strong>Advanced Tab</strong>.  There is a field there for &#8220;Run this program when the download finishes&#8221;.  This is what we are interested in.</li>
<li><strong>Build your command for uTorrent<br />
<span style="font-weight: normal;">Since sendEmail is a command line utility we need to build the command for uTorrent to execute it.  You can follow this exact example below&#8230;</p>
<p></span></strong><strong>C:\sendEmail.exe -f &lt;<em>from@domain.com&gt; </em>-t <em>&lt;phone@gateway&gt;</em> -u &#8220;<em>subject</em>&#8221; -m &#8220;<em>message&#8221; </em>-s <em>smtp.server.com:port <span style="font-style: normal;">-xu &#8220;</span>username&#8221; </em>-xp <em>&#8220;password&#8221;</em></strong></p>
<p><strong><em><br />
</em></strong></p>
<p><strong><em><span style="font-weight: normal;"><span style="font-style: normal;">Also, uTorrent has some pre-placed variables for you to use : <strong>%N</strong> for the name of file and <strong>%D</strong> for where it is saved so you can be specific with your notification.</span><br />
</span> <span style="font-style: normal;"><strong><span style="font-weight: normal;"><em><br />
<span style="font-style: normal;"><strong><span style="font-weight: normal;"><br />
</span></strong></span></em></span></strong></span></em></strong></li>
</ol>
<ol></ol>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/mCRy_C0m8hk?fs=1&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/mCRy_C0m8hk?fs=1&amp;hl=en_US" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d580').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Want to share this post with others?</em></strong></a>
<br />
<div class="d580" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.txlans.com%2F2010%2F10%2Freceive-text-message-notifications-for-finished-torrents%2F&amp;title=Receive+Text+Message+Notifications+For+Finished+Torrents" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.txlans.com%2F2010%2F10%2Freceive-text-message-notifications-for-finished-torrents%2F&amp;title=Receive+Text+Message+Notifications+For+Finished+Torrents" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.txlans.com%2F2010%2F10%2Freceive-text-message-notifications-for-finished-torrents%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.txlans.com%2F2010%2F10%2Freceive-text-message-notifications-for-finished-torrents%2F&amp;title=Receive+Text+Message+Notifications+For+Finished+Torrents" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.txlans.com%2F2010%2F10%2Freceive-text-message-notifications-for-finished-torrents%2F&amp;title=Receive+Text+Message+Notifications+For+Finished+Torrents" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Receive+Text+Message+Notifications+For+Finished+Torrents+@+http%3A%2F%2Fwww.txlans.com%2F2010%2F10%2Freceive-text-message-notifications-for-finished-torrents%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d580').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d580').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.txlans.com/2010/10/receive-text-message-notifications-for-finished-torrents/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Use SuseStudio to Create Customized OpenSUSE Linux Distributions</title>
		<link>http://www.txlans.com/2010/07/use-susestudio-to-create-customized-opensuse-linux-distributions/</link>
		<comments>http://www.txlans.com/2010/07/use-susestudio-to-create-customized-opensuse-linux-distributions/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 18:12:49 +0000</pubDate>
		<dc:creator>amp</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[PC Maintenance]]></category>
		<category><![CDATA[Pro Tips]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Reviews & Previews]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Resources]]></category>
		<category><![CDATA[do it yourself]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[servers]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.txlans.com/?p=547</guid>
		<description><![CDATA[In our previous post about customized Linux Distros we got you to a web app for creating customized linux distros based on ubuntu. Maybe you&#8217;re not an ubuntu fan but an OpenSUSE fan..Well we still have another one for you. Make your way to SuseStudio. It&#8217;s my personal favorite. You get a nice intuitive ajax/jquery [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.txlans.com/wp-content/uploads/2010/07/suse2.png" rel="lightbox[547]"><img class="size-full wp-image-555 alignright" title="OpenSUSE" src="http://www.txlans.com/wp-content/uploads/2010/07/suse2.png" alt="" width="163" height="148" /></a></p>
<p>In our <a href="http://www.txlans.com/2010/07/use-reconstructor-to-create-your-own-customized-ubuntu-live-linux-cddvd/#axzz0uEpWtZ4x" target="_blank">previous post about customized Linux Distros</a> we got you to a web app for <a href="http://www.txlans.com/2010/07/use-reconstructor-to-create-your-own-customized-ubuntu-live-linux-cddvd/#axzz0uEpWtZ4x" target="_blank">creating customized linux distros</a> based on ubuntu.</p>
<p>Maybe you&#8217;re not an ubuntu fan but an OpenSUSE fan..Well we still have another one for you.</p>
<p><a href="http://susestudio.com/" target="_blank">Make your way to SuseStudio.</a> It&#8217;s my personal favorite.</p>
<p>You get a nice intuitive ajax/jquery powered GUI and interface specifically designed to help you customize your very own openSuse distro.</p>
<p>Although at this moment they are constantly reaching their capacity and the only way you can gain access is by requesting an invitation from them.  As far as I remember it did not take very long (maybe a week or two at most?) to get my invitation.  From then on you can sign in using your google account and others.</p>
<div id="attachment_549" class="wp-caption alignright" style="width: 110px"><a href="http://www.txlans.com/wp-content/uploads/2010/07/pickOS-1.png" rel="lightbox[547]"><img class="size-thumbnail wp-image-549 " title="Picking Your Purpose" src="http://www.txlans.com/wp-content/uploads/2010/07/pickOS-1-150x150.png" alt="" width="100" height="100" /></a><p class="wp-caption-text">Picking Your Purpose</p></div>
<p>The first part is where you decide what the purpose of your build will be.  Will it be a server?  Will it be a desktop GUI environment?  What are you going to use it for?</p>
<p>These are all the thoughts I had going through my head when I first started customizing my version of OpenSUSE.</p>
<p>You get to pick between Server, GNOME Desktop, KDE Desktop, Just Enough OS or Minimal (for the most part).  Again, this is just a baseline of what your disc will contain.</p>
<p>The rest of the software configuration is up to you later on in the setup of your custom OpenSuse LiveCD or install disc.</p>
<p>You will get to start out on the general configuration tab where you get to choose network settings and have it set as static, DHCP client, and whether or not you want the firewall on by default. as well as default language, keyboard, and time zone.  You will also have a chance to edit the default users.</p>
<p>Root will of course be there by default with a default password of &#8220;linux&#8221; which should be changed.  You can also add and delete extra users, set their passwords and home directories as well as their groups.</p>
<div id="attachment_550" class="wp-caption alignleft" style="width: 110px"><a href="http://www.txlans.com/wp-content/uploads/2010/07/customizelook-2.png" rel="lightbox[547]"><img class="size-thumbnail wp-image-550  " title="Customize Look" src="http://www.txlans.com/wp-content/uploads/2010/07/customizelook-2-150x150.png" alt="" width="100" height="100" /></a><p class="wp-caption-text">Customize Look</p></div>
<p>One of the phases that may come next (or later if you don&#8217;t care for it much) is to customize the look and feel.</p>
<p>This basically amounts to setting a custom logo and setting a custom wallpaper for it to use by default.</p>
<p>Unfortunately in terms of customization of looks this is pretty much as far as it goes since there is no *desktop theme* customization feature (for now anyways).</p>
<p>Either way the customization is one of the more exciting aspects because you know someone, even if it&#8217;s just you, will see it each time it&#8217;s booted up.</p>
<div id="attachment_551" class="wp-caption alignright" style="width: 110px"><a href="http://www.txlans.com/wp-content/uploads/2010/07/appliance.png" rel="lightbox[547]"><img class="size-thumbnail wp-image-551 " title="Appliance Settings" src="http://www.txlans.com/wp-content/uploads/2010/07/appliance-150x150.png" alt="" width="100" height="100" /></a><p class="wp-caption-text">Appliance Settings</p></div>
<p>At the appliance tab of the configuration menu you can customize settings as if you were going to run it as a virtual machine.</p>
<p>Select memory size and amounts, add Live installers, VMWare support as well as Xen support.</p>
<div id="attachment_552" class="wp-caption alignleft" style="width: 110px"><a href="http://www.txlans.com/wp-content/uploads/2010/07/startup.png" rel="lightbox[547]"><img class="size-thumbnail wp-image-552 " title="Startup" src="http://www.txlans.com/wp-content/uploads/2010/07/startup-150x150.png" alt="" width="100" height="100" /></a><p class="wp-caption-text">Startup</p></div>
<p>Startup configuration is&#8230;well, startup configuration.  Although it sounds promising it only allows the configuration of the user modes and whether or not you want it to show a customized EULA.</p>
<p>The EULA part I like as well as choosing which run-level it starts in but I still think it needs some more customization to startup.</p>
<p>The run levels you have to choose from&#8230; Single User (1), Multi user / No Network (2), Normal Console (3), and Graphical (5).</p>
<p>The software customization tab is obviously the most useful piece of this entire &#8220;distro-generator&#8221;.  Add software packages, add programs, add repositories, etc.  It&#8217;s all there and it&#8217;s all for the adding (or removing).</p>
<div id="attachment_553" class="wp-caption alignright" style="width: 110px"><a href="http://www.txlans.com/wp-content/uploads/2010/07/software.png" rel="lightbox[547]"><img class="size-thumbnail wp-image-553 " title="Software" src="http://www.txlans.com/wp-content/uploads/2010/07/software-150x150.png" alt="" width="100" height="100" /></a><p class="wp-caption-text">Software</p></div>
<p>This of course is the main feature of any distribution authoring/editing/remixing web-app or third party software.</p>
<p>..and alas, the easiest part is building the distro because of course all you have to do now is wait.</p>
<p>You can have it built a few different ways.  ISO format for easy burning, VMDK for virtual machine disk images as a quick loading type (also a good way to test it), a Xen guest or a USB thumb flash drive.</p>
<p>Since there&#8217;s a few different ways to have it built it really cuts back on the whole *oh great I have to convert it 4 times* factor.</p>
<div id="attachment_554" class="wp-caption alignleft" style="width: 110px"><a href="http://www.txlans.com/wp-content/uploads/2010/07/build-1.png" rel="lightbox[547]"><img class="size-thumbnail wp-image-554 " title="Building the Image" src="http://www.txlans.com/wp-content/uploads/2010/07/build-1-150x150.png" alt="" width="100" height="100" /></a><p class="wp-caption-text">Building the Image</p></div>
<p>Also, after it is done being built, you can have susestudio open it in a virtual machine-esque web app for up to an hour.  You can then SSH to it and use the desktop GUI (if required) to check it out and make sure everything is A-OK before you download it.</p>
<p>Plenty of tools out there but OpenSUSE Studio is by far my favorite.</p>
<p><a href="http://susestudio.com/login" target="_blank">Go sign up for OpenSUSE Studio invites.</a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d547').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Want to share this post with others?</em></strong></a>
<br />
<div class="d547" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Fuse-susestudio-to-create-customized-opensuse-linux-distributions%2F&amp;title=Use+SuseStudio+to+Create+Customized+OpenSUSE+Linux+Distributions" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Fuse-susestudio-to-create-customized-opensuse-linux-distributions%2F&amp;title=Use+SuseStudio+to+Create+Customized+OpenSUSE+Linux+Distributions" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Fuse-susestudio-to-create-customized-opensuse-linux-distributions%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Fuse-susestudio-to-create-customized-opensuse-linux-distributions%2F&amp;title=Use+SuseStudio+to+Create+Customized+OpenSUSE+Linux+Distributions" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Fuse-susestudio-to-create-customized-opensuse-linux-distributions%2F&amp;title=Use+SuseStudio+to+Create+Customized+OpenSUSE+Linux+Distributions" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Use+SuseStudio+to+Create+Customized+OpenSUSE+Linux+Distributions+@+http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Fuse-susestudio-to-create-customized-opensuse-linux-distributions%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d547').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d547').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.txlans.com/2010/07/use-susestudio-to-create-customized-opensuse-linux-distributions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Use Reconstructor to Create Your Own Customized Ubuntu Live Linux CD/DVD</title>
		<link>http://www.txlans.com/2010/07/use-reconstructor-to-create-your-own-customized-ubuntu-live-linux-cddvd/</link>
		<comments>http://www.txlans.com/2010/07/use-reconstructor-to-create-your-own-customized-ubuntu-live-linux-cddvd/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 15:45:26 +0000</pubDate>
		<dc:creator>amp</dc:creator>
				<category><![CDATA[File System]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PC Maintenance]]></category>
		<category><![CDATA[Pro Tips]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Reviews & Previews]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Resources]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[servers]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.txlans.com/?p=544</guid>
		<description><![CDATA[Once again another free (up to a point) web application for use for customizing a Linux distribution for whatever you want. Reconstructor isn&#8217;t as pretty as some of the other Linux distro customization services I&#8217;ve seen but it gets the job done.  You still have the ability to customize the way it looks, operations, modules, [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">
<div id="attachment_546" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.txlans.com/wp-content/uploads/2010/07/500x_sshot110.jpg" rel="lightbox[544]"><img class="size-full wp-image-546" title="Reconstructor" src="http://www.txlans.com/wp-content/uploads/2010/07/500x_sshot110.jpg" alt="" width="500" height="274" /></a><p class="wp-caption-text">Reconstructor</p></div>
<p style="text-align: left;">Once again another free (up to a point) web application for use for customizing a Linux distribution for whatever you want.</p>
<p>Reconstructor isn&#8217;t as pretty as some of the other Linux distro customization services I&#8217;ve seen but it gets the job done.  You still have the ability to customize the way it looks, operations, modules, addons, etc.</p>
<p>For the amount you can do it is certainly useful.  Not to mention it has been around since before 2007.</p>
<blockquote><p>Reconstructor is a GNU/Linux distribution customization and creation toolkit. It allows for the customization of the <a href="http://www.ubuntu.com/">Ubuntu</a> and<a href="http://www.debian.org/">Debian</a> GNU/Linux distributions. Customizations include boot logo image and text color, wallpaper, themes, icons, applications, and more.</p>
<p>To start using Reconstructor <em>(it&#8217;s free)</em> go to <a href="https://build.reconstructor.org/">https://build.reconstructor.org</a> and signup.</p></blockquote>
<p>The reason I said it is free up to a point is that they <strong>do charge</strong> for the service but they give each account a $5 limit per month (for free).  Anything over that will have you paying up front for it.</p>
<p>Here is an overlook of their &#8220;Fees&#8221; page&#8230;</p>
<blockquote>
<h1 id="Fees">Fees</h1>
<p>The following are the fees for using the Reconstructor services. Please note: each account balance will get up to a <strong>$5</strong> credit each month <em>(ending balance after credit will be no more than $5)</em>. Each transaction will deduct from your account credit. To add more funds, click the &#8220;Add Credit&#8221; button in your account details window (accessed by clicking your username in the upper right after you login).</p>
<ul>
<li>Upload and store a project file: <strong>$0.02</strong> per MB per month</li>
<li>Build a project: <strong>$0.30</strong></li>
<li>Download a built project: <strong>$0.45</strong> per GB</li>
<li>Priority build service: <strong>$5.00</strong> (enabled for one month) <em>Note: This charge is prorated based upon the remaining days in the month.</em></li>
</ul>
<p>Project Hosting</p>
<ul>
<li>File storage: <strong>$0.45</strong> per GB per month</li>
<li>Download: <strong>$0.35</strong></li>
</ul>
</blockquote>
<p>So yes for a one or two time use I would say the service isn&#8217;t that bad.  There&#8217;s still a lot of customization you can do and a lot you can get out of it.  However, the entire fee thing isn&#8217;t really the best but you have to understand the kind of loads you can put on servers when doing these kinds of operations.</p>
<p><a href="https://www.reconstructor.org/projects/reconstructor" target="_blank">Reconstructor</a></p>
<p><a href="https://www.reconstructor.org/projects/reconstructor" target="_blank"> </a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d544').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Want to share this post with others?</em></strong></a>
<br />
<div class="d544" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Fuse-reconstructor-to-create-your-own-customized-ubuntu-live-linux-cddvd%2F&amp;title=Use+Reconstructor+to+Create+Your+Own+Customized+Ubuntu+Live+Linux+CD%2FDVD" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Fuse-reconstructor-to-create-your-own-customized-ubuntu-live-linux-cddvd%2F&amp;title=Use+Reconstructor+to+Create+Your+Own+Customized+Ubuntu+Live+Linux+CD%2FDVD" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Fuse-reconstructor-to-create-your-own-customized-ubuntu-live-linux-cddvd%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Fuse-reconstructor-to-create-your-own-customized-ubuntu-live-linux-cddvd%2F&amp;title=Use+Reconstructor+to+Create+Your+Own+Customized+Ubuntu+Live+Linux+CD%2FDVD" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Fuse-reconstructor-to-create-your-own-customized-ubuntu-live-linux-cddvd%2F&amp;title=Use+Reconstructor+to+Create+Your+Own+Customized+Ubuntu+Live+Linux+CD%2FDVD" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Use+Reconstructor+to+Create+Your+Own+Customized+Ubuntu+Live+Linux+CD%2FDVD+@+http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Fuse-reconstructor-to-create-your-own-customized-ubuntu-live-linux-cddvd%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d544').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d544').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.txlans.com/2010/07/use-reconstructor-to-create-your-own-customized-ubuntu-live-linux-cddvd/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Learn to Secure Linux The Fun Way</title>
		<link>http://www.txlans.com/2010/07/learn-to-secure-linux-the-fun-way/</link>
		<comments>http://www.txlans.com/2010/07/learn-to-secure-linux-the-fun-way/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 00:29:29 +0000</pubDate>
		<dc:creator>amp</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PC Maintenance]]></category>
		<category><![CDATA[Pro Tips]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Resources]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://www.txlans.com/?p=515</guid>
		<description><![CDATA[You must admit; one of the most popular activities among the IT world is downloading and trying new operating systems.  Why?  Because we are looking for one that meets all requirements of what we do.  This would include.. Easy to use.. Easy to configure and set up.. Easy to manage and above all.. AS SECURE [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_517" class="wp-caption alignright" style="width: 160px"><a href="http://www.txlans.com/wp-content/uploads/2010/07/76737879425170980.png" rel="lightbox[515]"><img class="size-thumbnail wp-image-517" title="DVL Distro" src="http://www.txlans.com/wp-content/uploads/2010/07/76737879425170980-150x150.png" alt="" width="150" height="150" /></a><p class="wp-caption-text">DVL Distro</p></div>
<p>You must admit; one of the most popular activities among the IT world is downloading and trying new operating systems.  Why?  Because we are looking for one that meets all requirements of what we do.  This would include..</p>
<ol>
<li>Easy to use..</li>
<li>Easy to configure and set up..</li>
<li>Easy to manage and above all..</li>
<li>AS SECURE AS POSSIBLE.</li>
</ol>
<p>What if that isn&#8217;t your goal?  Maybe your goal is to have something as vulnerable as possible so that you can LEARN to secure nearly any Linux OS.  That is the goal of <a href="http://www.damnvulnerablelinux.org/" target="_blank">Damn Vulnerable Linux</a>.</p>
<p>DVL is a linux distribution based off Backtrack 2.0.  It&#8217;s filled with all sorts of tools and exploits as well as all the services such as SSHD and Apache that are out-dated and vulnerable to attacks.  The main goal of this distro is to teach you how to secure, reverse engineer code, and most of all&#8230;<strong>LEARN</strong>.</p>
<p>This is by far one of the coolest things I have come across and I am recommending it highly.</p>
<blockquote><p>Damn Vulnerable Linux (DVL) is everything a good Linux distribution isn&#8217;t. Its developers have spent hours stuffing it with broken, ill-configured, outdated, and exploitable software that makes it vulnerable to attacks. DVL isn&#8217;t built to run on your desktop &#8211; it&#8217;s a learning tool for security students.</p>
<p>The main idea behind DVL was to build up a training system that I could use for my university lectures. My goal was to design a Linux system that was as vulnerable as possible, to teach topics such as reverse code engineering, buffer overflows, shellcode development, Web exploitation, and SQL injection.</p></blockquote>
<p>Of course one of the obvious warnings they give you is to <strong>not</strong> use it as an actual operating system and if you ask me that goes without saying.</p>
<p>Give it a shot and see what you can learn.  I&#8217;m having fun on it already! <img src='http://www.txlans.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d515').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Want to share this post with others?</em></strong></a>
<br />
<div class="d515" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Flearn-to-secure-linux-the-fun-way%2F&amp;title=Learn+to+Secure+Linux+The+Fun+Way" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Flearn-to-secure-linux-the-fun-way%2F&amp;title=Learn+to+Secure+Linux+The+Fun+Way" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Flearn-to-secure-linux-the-fun-way%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Flearn-to-secure-linux-the-fun-way%2F&amp;title=Learn+to+Secure+Linux+The+Fun+Way" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Flearn-to-secure-linux-the-fun-way%2F&amp;title=Learn+to+Secure+Linux+The+Fun+Way" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Learn+to+Secure+Linux+The+Fun+Way+@+http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Flearn-to-secure-linux-the-fun-way%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d515').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d515').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.txlans.com/2010/07/learn-to-secure-linux-the-fun-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

