<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Sidetech's Tiny Blog</title>
	<atom:link href="http://sidetech.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sidetech.wordpress.com</link>
	<description>All about TechStuff, Open Source, Tutorials, News and Gadgets</description>
	<lastBuildDate>Mon, 06 Oct 2008 13:40:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sidetech.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Sidetech's Tiny Blog</title>
		<link>http://sidetech.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sidetech.wordpress.com/osd.xml" title="Sidetech&#039;s Tiny Blog" />
	<atom:link rel='hub' href='http://sidetech.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Apache and PHP installation</title>
		<link>http://sidetech.wordpress.com/2008/10/05/apache-and-php-installation/</link>
		<comments>http://sidetech.wordpress.com/2008/10/05/apache-and-php-installation/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 03:45:16 +0000</pubDate>
		<dc:creator>nelson21</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://sidetech.wordpress.com/?p=103</guid>
		<description><![CDATA[I&#8217;ll be installing Squirrelmail to our new mail server since we migrate our old server to new server. So, I need to transfer running services such as MTA and Squirrelmail. Of course, Squirrelmail needs Apache and Php. Here is the howto on how I install Apache with Php. There are many ways to install Apache [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidetech.wordpress.com&amp;blog=4881405&amp;post=103&amp;subd=sidetech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll be installing Squirrelmail to our new mail server since we migrate our old server to new server. So, I need to transfer running services such as MTA and Squirrelmail. Of course, Squirrelmail needs Apache and Php. Here is the howto on how I install Apache with Php. There are many ways to install Apache and Php. You can do it via RPM which is a no brainer. You could also do this via yum. However, I prefer source installation for easy modification and upgrade for any bugs.</p>
<p>First, download the package in the ff website</p>
<p><a href="http://httpd.apache.org/download.cgi" target="_blank">apache 1.3.41</a></p>
<p><a href="http://www.php.net/downloads.php" target="_blank">php.5.2.6</a></p>
<p>I prefer download it and extract it on /usr/local/src.</p>
<p><span style="color:#ff0000;">cd /usr/local/src/apache_1.3.37</span></p>
<p><span style="color:#ff0000;">./configure \<br />
&#8211;prefix=/usr/local/apache \<br />
&#8211;enable-shared=max \<br />
&#8211;enable-module=rewrite \<br />
&#8211;enable-module=so</span></p>
<p><span style="color:#ff0000;">make &amp;&amp; make install</span></p>
<p>Installation of Php</p>
<p><span style="color:#ff0000;">cd /usr/local/src/php-5.2.6</span></p>
<p><span style="color:#ff0000;">./configure \<br />
&#8211;with-apxs=/usr/local/apache/bin/apxs \<br />
&#8211;disable-debug \<br />
&#8211;enable-ftp \<br />
&#8211;enable-inline-optimization \<br />
&#8211;enable-magic-quotes \<br />
&#8211;enable-mbstring \<br />
&#8211;enable-mm=shared \<br />
&#8211;enable-safe-mode \<br />
&#8211;enable-track-vars \<br />
&#8211;enable-trans-sid \<br />
&#8211;enable-wddx=shared \<br />
&#8211;enable-xml \<br />
&#8211;with-dom \<br />
&#8211;with-gd \<br />
&#8211;with-gettext \<br />
&#8211;with-mysql=/usr/local/mysql \<br />
&#8211;with-regex=system \<br />
&#8211;with-xml \<br />
&#8211;with-zlib-dir=/usr/lib</span></p>
<p><span style="color:#ff0000;">make &amp;&amp; make install</span></p>
<p><span style="color:#ff0000;">cp php.ini-dist /usr/local/lib/php.ini</span></p>
<p>For easy access to those frequently used file such as config files and logs, I&#8217;ll be placing a soft links on /etc and /var/log.</p>
<p><span style="color:#ff0000;">ln -s /usr/local/lib/php.ini /etc/php.ini</span></p>
<p><span style="color:#ff0000;">ln -s /usr/local/apache/conf/httpd.conf /etc/httpd.conf</span></p>
<p><span style="color:#ff0000;">ln -s /usr/local/apache/var/log /var/log/httpd</span></p>
<p><span style="color:#ff0000;">ln -s /usr/local/apache/bin/apachectl /etc/init.d/apache</span></p>
<p>php.ini and httpd.conf is the main config file of php and apache. Usually, you would edit this file for modification of Apache and Php.</p>
<p>Now, we need to edit httpd.conf to have support in Php.</p>
<p>To ensure your PHP files are properly interpreted, and not just downloaded as text files, remove the <code>#</code> at the beginning of the lines which read:</p>
<div class="info"><span style="color:#ff0000;">#AddType application/x-httpd-php .php<br />
#AddType application/x-httpd-php-source .phps </span></div>
<div class="info">Otherwise, manually enter them (without the leading <code>#</code> of course) after the line.</div>
<div class="info">Also, add the ff in <code>anyplace within the <span style="color:#ff0000;">&lt;IfModule mod_mime.c&gt;</span> section of <span style="color:#ff0000;">httpd.conf</span>.</code></div>
<div class="info">Add index.php to the list of valid <span style="color:#ff0000;">Directory Index files </span>so that your &#8220;default page&#8221; in a directory can be named index.php.</div>
<div class="info"><span style="color:#ff0000;">&lt;IfModule mod_dir.c&gt;<br />
DirectoryIndex index.php index.htm index.html<br />
&lt;/IfModule&gt; </span></div>
<div class="info">Now, we need to start the apache by doing <span style="color:#ff0000;">/etc/init.d/apache start</span></div>
<div class="info">Try to browse your apache by doing <span style="color:#ff0000;">http://x.x.x.x</span> of your server in your default browser. You must see some notification or saying that successfuly installed apache. Usually, you would see an icon of Apache</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidetech.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidetech.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidetech.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidetech.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidetech.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidetech.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidetech.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidetech.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidetech.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidetech.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidetech.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidetech.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidetech.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidetech.wordpress.com/103/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidetech.wordpress.com&amp;blog=4881405&amp;post=103&amp;subd=sidetech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidetech.wordpress.com/2008/10/05/apache-and-php-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b7b908e18334cb38762a97bb756535a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nelson21</media:title>
		</media:content>
	</item>
		<item>
		<title>Why I&#8217;m using Firefox</title>
		<link>http://sidetech.wordpress.com/2008/09/22/why-im-using-firefox/</link>
		<comments>http://sidetech.wordpress.com/2008/09/22/why-im-using-firefox/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 13:10:04 +0000</pubDate>
		<dc:creator>nelson21</dc:creator>
				<category><![CDATA[Article]]></category>

		<guid isPermaLink="false">http://sidetech.wordpress.com/?p=67</guid>
		<description><![CDATA[When computer was introduce to me wayback year 2000, I don&#8217;t care what browser I use. I&#8217;m convenient that time on Internet Explorer also known as IE. Then, IE6 was introduce since some of the games requires new version of IE such as NBA Live, etc. Then, spyware become a monster in the Internet in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidetech.wordpress.com&amp;blog=4881405&amp;post=67&amp;subd=sidetech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When computer was introduce to me wayback year 2000, I don&#8217;t care what browser I use. I&#8217;m convenient that time on Internet Explorer also known as IE. Then, IE6 was introduce since some of the games requires new version of IE such as NBA Live, etc.</p>
<p>Then, spyware become a monster in the Internet in the early 2000 and those anti-spyware popups like a pimple. There is Ad-Aware, Spybot, Spydoctor, etc. Most of the techie people say that IE was prone to spyware which I believe after I use Mozilla Firefox. I never encounter an error using Firefox. Even if one of our customer or a friend got infected with a spyware, still when I install firefox I can now browse the Internet unlike using IE where I can&#8217;t see a single page. From then on, I use Firefox.</p>
<p>Firefox nowadays has been great. There are lots of add-ons such as themes, download manager, ftp, etc. You can download add-ons at <a href="https://addons.mozilla.org/en-US/firefox/">https://addons.mozilla.org/en-US/firefox/.</a></p>
<p>Also, bookmarks has been superb especially in Firefox 3. I can easily backup my numbers of bookmarks in just a snap. Saving password and pop-up ads has been also been doing great. Easy to manage and not so memory hog unlike the earlier version of Firefox. Google Toolbar also makes my research fast and easy.</p>
<p>Though there are lot of browser nowadays, I still stick to Firefox due to functionality, security ad ease of use. I&#8217;m writing this article using Firefox 3 with Aero Silver Fox Themes. If you want to know more about Firefox, go to their website at <a href="http://www.mozilla.com/en-US/firefox/">http://www.mozilla.com/en-US/firefox/</a></p>
<p style="text-align:center;"><a href="http://nelson21.files.wordpress.com/2008/09/lg_firefox.png"><img class="size-full wp-image-101 aligncenter" title="lg_firefox" src="http://nelson21.files.wordpress.com/2008/09/lg_firefox.png?w=300&#038;h=288" alt="" width="300" height="288" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidetech.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidetech.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidetech.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidetech.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidetech.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidetech.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidetech.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidetech.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidetech.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidetech.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidetech.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidetech.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidetech.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidetech.wordpress.com/67/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidetech.wordpress.com&amp;blog=4881405&amp;post=67&amp;subd=sidetech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidetech.wordpress.com/2008/09/22/why-im-using-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b7b908e18334cb38762a97bb756535a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nelson21</media:title>
		</media:content>

		<media:content url="http://nelson21.files.wordpress.com/2008/09/lg_firefox.png" medium="image">
			<media:title type="html">lg_firefox</media:title>
		</media:content>
	</item>
		<item>
		<title>What&#8217;s a tiny laptop with no hard drive nowadays?</title>
		<link>http://sidetech.wordpress.com/2008/09/21/whats-a-tiny-laptop-nowadays/</link>
		<comments>http://sidetech.wordpress.com/2008/09/21/whats-a-tiny-laptop-nowadays/#comments</comments>
		<pubDate>Sun, 21 Sep 2008 08:55:50 +0000</pubDate>
		<dc:creator>nelson21</dc:creator>
				<category><![CDATA[Article]]></category>

		<guid isPermaLink="false">http://sidetech.wordpress.com/?p=58</guid>
		<description><![CDATA[Tiny laptops, known as netbooks, have been cropping up like kudzu of late. Dell’s latest addition to the tangle is the Inspiron Mini 9, a two-pound laptop that runs Windows XP or Linux. The Mini 9 has a 9-inch display and 1.6-gigahertz Intel Atom processor, part of Intel’s new line of low-power processors for mobile [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidetech.wordpress.com&amp;blog=4881405&amp;post=58&amp;subd=sidetech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span class="lead">Tiny laptops, known as netbooks, have been cropping up like kudzu of late. </span></p>
<p align="left">Dell’s latest addition to the tangle is the Inspiron Mini 9, a two-pound laptop that runs Windows XP or Linux.</p>
<p align="left">The Mini 9 has a 9-inch display and 1.6-gigahertz Intel Atom processor, part of Intel’s new line of low-power processors for mobile devices. It can hold up to 1 gigabyte of memory and comes with up to 16 gigabytes of solid-state storage.</p>
<p style="text-align:center;" align="left"><a href="http://sidetech.files.wordpress.com/2008/09/dellmini9-ars.jpg"><img class="size-medium wp-image-59 aligncenter" title="dellmini9-ars" src="http://sidetech.files.wordpress.com/2008/09/dellmini9-ars.jpg?w=300&#038;h=184" alt="" width="300" height="184" /></a></p>
<p align="left">Interestingly, Dell is not offering a traditional hard drive at all; instead it uses solid-state memory to store the operating system, programs and data. A version of the laptop comes with 4 gigabytes of storage and runs Ubuntu, a popular version of the open-source operating system Linux. For some more bucks you gain Windows XP and 8 gigabytes of storage. The laptop is available at Dell.com.</p>
<p align="left">The laptop has Wi-Fi but hackers have already opened the case and found the potential for built-in 3G wireless compatibility, although it may not be activated in the United States. It also has a larger keyboard than most other netbooks, a boon for users with even average-size fingers.</p>
<p style="text-align:center;" align="left"><a href="http://sidetech.files.wordpress.com/2008/09/dellmini9-ars.jpg"><br />
</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidetech.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidetech.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidetech.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidetech.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidetech.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidetech.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidetech.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidetech.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidetech.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidetech.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidetech.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidetech.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidetech.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidetech.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidetech.wordpress.com&amp;blog=4881405&amp;post=58&amp;subd=sidetech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidetech.wordpress.com/2008/09/21/whats-a-tiny-laptop-nowadays/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b7b908e18334cb38762a97bb756535a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nelson21</media:title>
		</media:content>

		<media:content url="http://sidetech.files.wordpress.com/2008/09/dellmini9-ars.jpg?w=300" medium="image">
			<media:title type="html">dellmini9-ars</media:title>
		</media:content>
	</item>
		<item>
		<title>Reason why people still don&#8217;t use Linux</title>
		<link>http://sidetech.wordpress.com/2008/09/21/reason-why-people-still-dont-use-linux/</link>
		<comments>http://sidetech.wordpress.com/2008/09/21/reason-why-people-still-dont-use-linux/#comments</comments>
		<pubDate>Sun, 21 Sep 2008 08:50:56 +0000</pubDate>
		<dc:creator>nelson21</dc:creator>
				<category><![CDATA[Article]]></category>

		<guid isPermaLink="false">http://sidetech.wordpress.com/?p=56</guid>
		<description><![CDATA[I&#8217;ve been to Linux since 2003 though I still considered myself as Linux Newbies. Though most of the companies used Linux in their servers, still, most of the workstation is running under Windows. Me, too, use Windows XP in my Laptop. I love Linux as Server OS. I also experience Linux particularly CentOS with TWM [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidetech.wordpress.com&amp;blog=4881405&amp;post=56&amp;subd=sidetech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been to Linux since 2003 though I still considered myself as Linux Newbies. Though most of the companies used Linux in their servers, still, most of the workstation is running under Windows. Me, too, use Windows XP in my Laptop. I love Linux as Server OS. I also experience Linux particularly CentOS with TWM as my Display Manager as my workstation OS.</p>
<p>Still, in my opinion, people still not ready to use Linux. Here is some reason why:</p>
<p>1. Linux is not user friendly compared to Windows</p>
<p align="left">It may have been not as friendly as Windows 10 years ago but today, Linux can be made to look like Windows XP &#8211; dispelling the user-friendly argument.</p>
<p align="left">If you are still a skeptic, I challenge you to try it first and then tell me if the interface is cryptic or not.</p>
<p align="left">Linux is now getting near to its counterpart, Microsoft Windows, when talking about Display. It has gradient look. Icons is enhanced and with those dropdown menu, you will not lost easily.</p>
<p align="left">2. <strong><strong> </strong></strong>Installing applications on Linux is difficult</p>
<p align="left">Lets face the fact. A grade 6 student can install games such as counterstrike, battlerealms, etc. in just a snap in Windows System but when you put Linux infront of them, they don&#8217;t know what to do.</p>
<p align="left">There is no denying the fact that due to its Unix origins, Linux has enjoyed the (dis)advantages of having applications available in source code form and requiring compilation before installation. However, most, if not all, distributions maintain repositories of pre-compiled binaries that no longer require users to compile-before-install &#8211; just download and install.</p>
<p align="left">Frankly, this is now an advantage for Linux &#8212; you only run one application to access several repositories to install, update or remove applications. Now Windows does not have something close to this.</p>
<p align="left">That being said, however, I still wish that installing, updating and removing applications is as simple as the Mac OS X, wherein you just drag and drop the executable file package to the destination to install or to the trash bin to uninstall. No other libraries or dependencies to worry about nor any registry to tinker with.</p>
<p align="left">3. Difficult to find support for Linux</p>
<p align="left">Owing to its open source nature, support for Linux is often provided by the open source community. One just needs to know where to look. Unfortunately, ordinary users are not familiar with this process &#8212; giving an impression that they are left out in the cold.</p>
<p align="left">Bug reporting is another issue &#8211; where do you send bug reports? You don’t expect ordinary users to access Trac and leave a bug report. Oftentimes, they just need an email address. HOWEVER, can you honestly tell me how many times have you sent in a bug report to Microsoft? Have you heard from them &#8211; did they acknowledge your report?</p>
<p align="left">4. Can’t play games on Linux</p>
<p align="left">This is true several years ago. However, companies are starting to realize that Linux is a viable platform for gaming. In fact, third-party developers provide a way for users to play Windows-based games on Linux without even installing Windows! Cool, huh? Well, not just quite. Unfortunately, game development is centered on Windows, due to its market-share. This is a chicken-or-egg issue &#8211; should game developers wait for a larger Linux market-share or make games to increase the market-share for Linux?</p>
<p align="left">5.<strong> </strong>My peripheral is not supported on Linux</p>
<p align="left">Hardware manufacturers now recognize the importance of Linux &#8212; just look at how the netbooks, such as the Asus Eee PC, MSI Wind, etc., are configured.</p>
<p align="left">Windows users have experienced the same issue when Vista was released. Peripherals have no drivers available on Vista. The same can be said of Linux before. Today, most popular peripheral is supported by Linux.</p>
<p align="left">Whilst I have explained some of the issues pointed out above, I leave it to you to determine if Linux is ready for YOUR desktop. In my case, it is already a mature desktop OS (which is also a server OS) &#8211; enough for an ordinary user’s daily computing needs.</p>
<p align="left">If you are still having doubts, try an Asus Eee PC running Linux and tell me if it is too complex for your own use. Send me an e-mail with your Linux experience and I might just feature it here. <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p align="left">We have Asus Eee PC in our office and we used this if there are presentation outside the office or we need to evaluate the link of our customer&#8217;s Internet connection. Linux is pre-installed in the unit though don&#8217;t know what Linux OS it is but I&#8217;m sure it is Linux. It has Openoffice for opening documents, I can mount share on our samba and configuring the network is like configuring Windows as it was click-and-click only.  In short, it can do what a Microsoft Windows can do.</p>
<p align="left">
<p align="left">In the end, its up to you. Would you like to spend money for License but with some ease of use or save money but no guarantee if your son can installed programs.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidetech.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidetech.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidetech.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidetech.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidetech.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidetech.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidetech.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidetech.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidetech.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidetech.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidetech.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidetech.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidetech.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidetech.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidetech.wordpress.com&amp;blog=4881405&amp;post=56&amp;subd=sidetech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidetech.wordpress.com/2008/09/21/reason-why-people-still-dont-use-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b7b908e18334cb38762a97bb756535a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nelson21</media:title>
		</media:content>
	</item>
		<item>
		<title>How to reset a password on Cisco Catalyst Switch 2900 Series</title>
		<link>http://sidetech.wordpress.com/2008/09/18/how-to-reset-a-password-on-cisco-catalyst-switch-2900-series/</link>
		<comments>http://sidetech.wordpress.com/2008/09/18/how-to-reset-a-password-on-cisco-catalyst-switch-2900-series/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 13:29:27 +0000</pubDate>
		<dc:creator>nelson21</dc:creator>
				<category><![CDATA[Cisco]]></category>

		<guid isPermaLink="false">http://sidetech.wordpress.com/?p=37</guid>
		<description><![CDATA[I need to setup mrtg in our 2nd hand cisco catalyst switch. I believe this switch is a little bit obsolete but this is the one my superior told me to use. I visit my favorite distributor of refurbished networking applicance store and look for Cisco Catalyst 2900 Series So I need to recover the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidetech.wordpress.com&amp;blog=4881405&amp;post=37&amp;subd=sidetech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I need to setup mrtg in our 2nd hand cisco catalyst switch. I believe this switch is a little bit obsolete but this is the one my superior told me to use. I visit my favorite distributor of refurbished networking applicance store and look for Cisco Catalyst 2900 Series</p>
<p>So I need to recover the password to put IP address to the VPN Interface. Here is the procedure that I did:</p>
<p>1. Hold down the mode button located on the left side of the front panel, while reconnecting the power cable to the switch.</p>
<p>Release the mode button after the LED above Port 1x goes out.</p>
<p><strong>Note:</strong> LED position may vary slightly depending on the model.</p>
<p>2. Issue the <code>flash_init</code> command and press <code>Enter</code><br />
<code><br />
switch: flash_init<br />
Initializing Flash…<br />
flashfs[0]: 143 files, 4 directories<br />
flashfs[0]: 0 orphaned files, 0 orphaned directories<br />
flashfs[0]: Total bytes: 3612672<br />
flashfs[0]: Bytes used: 2729472<br />
flashfs[0]: Bytes available: 883200<br />
flashfs[0]: flashfs fsck took 86 seconds<br />
….done Initializing Flash.</code></p>
<p>3. Issue the <code>load_helper</code> command and press <code>Enter</code></p>
<p><code>switch: load_helper<br />
switch:</code></p>
<p>4. Issue the <code>dir flash:</code> command and press <code>Enter</code></p>
<p><strong>Note :</strong> Make sure to type a colon “<strong>:</strong>” after the <code>dir flash</code>.</p>
<p>The switch file system is displayed:</p>
<p><code>switch: dir flash:<br />
Directory of flash:/<br />
2    -rwx  1803357                  c3500xl-c3h2s-mz.120-5.WC7.bin</code></p>
<p>5. Type <code>rename flash:config.text flash:config.old</code> to rename the configuration file.</p>
<p><code>switch: rename flash:config.text flash:config.old<br />
switch:</code></p>
<p>6. Issue the <code>boot</code> command to boot the system.</p>
<p><code>switch: boot<br />
Loading “flash:c3500xl-c3h2s-mz.120-5.WC7.bin”…###############################<br />
################################################################################<br />
######################################################################<br />
File “flash:c3500xl-c3h2s-mz.120-5.WC7.bin” uncompressed and installed, entry po<br />
int: 0×3000<br />
executing…</code></p>
<p>7. Enter “<code>n</code>” at the prompt to abort the initial configuration dialog.</p>
<p><code>--- System Configuration Dialog ---<br />
At any point you may enter a question mark ‘?’ for help.<br />
Use ctrl-c to abort configuration dialog at any prompt.<br />
Default settings are in square brackets ‘[]‘.<br />
Continue with configuration dialog? [yes/no]: n</code></p>
<pre>Switch&gt;</pre>
<p>8. At the switch prompt, type <code>en</code> to enter enable mode.</p>
<p>9. Type <code>rename flash:config.old flash:config.text</code> to rename the configuration file with its original name.</p>
<p><code>Switch#rename flash:config.old flash:config.text<br />
Destination filename [config.text]</code></p>
<pre>!— Press Return or Enter.</pre>
<pre>Switch#</pre>
<p>10. Copy the configuration file into memory by typing <code>copy flash:config.text system:running-config</code></p>
<p><code>Switch#copy flash:config.text system:running-config<br />
Destination filename [running-config]?</code></p>
<pre>!— Press Return or Enter.</pre>
<pre>1131 bytes copied in 0.760 secs
Switch#</pre>
<p>The configuration file is now reloaded.</p>
<p>11. Change the password.</p>
<p><code>Switch#configure terminal<br />
Switch(config)#no enable secret</code></p>
<p><code>!— This step is necessary if the switch had an enable secret</code><br />
<code>!— password.</code></p>
<p><code>Switch(config)#enable password Cisco<br />
Switch#(config)#^Z<br />
</code><br />
<code>!— Use Ctrl-Z.</code></p>
<p>12. Write the running configuration to the configuration file with the <code>write memory</code> command.</p>
<p><code>Switch#write memory<br />
Building configuration…<br />
[OK]<br />
Switch#</code></p>
<p>13. Finish</p>
<p style="text-align:center;"><img class="aligncenter" src="http://usera.imagecave.com/ntserafica/Blog/cisco1.jpg" alt="Cisco Catalyst " /></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sidetech.wordpress.com/37/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sidetech.wordpress.com/37/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidetech.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidetech.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidetech.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidetech.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidetech.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidetech.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidetech.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidetech.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidetech.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidetech.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidetech.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidetech.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidetech.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidetech.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidetech.wordpress.com&amp;blog=4881405&amp;post=37&amp;subd=sidetech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidetech.wordpress.com/2008/09/18/how-to-reset-a-password-on-cisco-catalyst-switch-2900-series/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b7b908e18334cb38762a97bb756535a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nelson21</media:title>
		</media:content>

		<media:content url="http://usera.imagecave.com/ntserafica/Blog/cisco1.jpg" medium="image">
			<media:title type="html">Cisco Catalyst </media:title>
		</media:content>
	</item>
		<item>
		<title>How to reset password on Cisco Router 2600 Series</title>
		<link>http://sidetech.wordpress.com/2008/09/18/how-to-reset-password-in-cisco-router-2600-series/</link>
		<comments>http://sidetech.wordpress.com/2008/09/18/how-to-reset-password-in-cisco-router-2600-series/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 13:15:32 +0000</pubDate>
		<dc:creator>nelson21</dc:creator>
				<category><![CDATA[Cisco]]></category>

		<guid isPermaLink="false">http://sidetech.wordpress.com/?p=34</guid>
		<description><![CDATA[Introduction This document describes how to recover the enable password and the enable secret passwords. These passwords protect access to privileged EXEC and configuration modes. The enable password password can be recovered, but the enable secret password is encrypted and must be replaced with a new password. Use the procedure described in this document in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidetech.wordpress.com&amp;blog=4881405&amp;post=34&amp;subd=sidetech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Introduction</strong></p>
<p>This document describes how to recover the enable password and the enable secret passwords. These passwords protect access to privileged EXEC and configuration modes. The enable password password can be recovered, but the enable secret password is encrypted and must be replaced with a new password. Use the procedure described in this document in order to replace the enable secret password.</p>
<p>The enable password or the enable-secret password is stored in the startup configuration file in the nonvolatile RAM (NVRAM). The password recovery procedure requires that you boot the router and ignore the startup configuration file in the NVRAM. In order to boot the router and ignore the startup configuration file, set the 6th bit in the configuration register. The router boots with the default configuration and all the interfaces in “shutdown” state.</p>
<p>Since the default configuration does not have a password, anyone can enter enable mode on the router. In order to return the router to the original configuration, the startup configuration file can be copied into the router memory. If you are already in the enable mode, you can either view or change the enable password, but you can only change the enable secret password because it is always encrypted in the show commands. This document describes this procedure.</p>
<p><strong>Note:</strong> Password recovery procedures cannot be performed through a Telnet connection.</p>
<p>Cisco 2000 Series Routers<br />
Cisco 2500 Series Routers<br />
Cisco 3000 Series Routers<br />
Cisco 4000 Series Routers<br />
Cisco AccessPro<br />
Cisco 7000 Route Processor (RP)<br />
Cisco AGS+ Routers<br />
Cisco IGS Router Series<br />
Cisco STS-10x Access Servers</p>
<p><strong>Step-by-Step Procedure</strong></p>
<p>1. Attach a terminal or PC with terminal emulation to the console port of the router.</p>
<p>Use these terminal settings:</p>
<p><code>9600 baud rate<br />
No parity<br />
8 data bits<br />
1 stop bit<br />
No flow control</code></p>
<p>2. If you can access the router, type <code>show version</code> at the prompt, and record the configuration register setting. See Example of Password Recovery Procedure in order to view the output of a show version command.</p>
<p><strong>Note:</strong> The configuration register is usually set to <code>0×2102</code> or <code>0×102</code>. If you can no longer access the router (because of a lost login or TACACS password), you can safely assume that your configuration register is set to <code>0×2102</code>.</p>
<p>3. Use the power switch in order to turn off the router, and then turn the router back on.</p>
<p>4. Press <code>Break</code> on the terminal keyboard within 60 seconds of power up in order to put the router into ROMmon.</p>
<p>5. At the prompt, type <code>o</code>, press ENTER, and record the current value of the configuration register (usually 0×2102 or 0×102).</p>
<p><code>&gt;o</code></p>
<p><code>!— Shows the configuration register option settings.</code></p>
<p><code>Configuration register = 0×2102 at last boot<br />
Bit# Configuration register option settings:<br />
15 Diagnostic mode disabled</code></p>
<p><code>!— Output supressed.</code></p>
<p>6. Type <code>o/r 0×2142</code>, and press <code>ENTER</code> at the <code>&gt;</code> prompt in order to boot from Flash and bypass the configuration file.</p>
<p>7. Type <code>i</code> at the <code>&gt;</code> prompt, and press <code>ENTER</code>.</p>
<p>The router reboots, but ignores the saved configuration.</p>
<p>8. Type <code>no</code> after each setup question, or press <code>CTRL + C</code> in order to skip the initial setup procedure.</p>
<p>9. Type <code>enable</code> at the <code>Router&gt;</code> prompt.</p>
<p>Once the <code>Router#</code> prompt appears, you are in enable mode.</p>
<p>10. Type <code>configure memory</code> or <code>copy startup-config running-config</code> in order to copy the NVRAM into memory.</p>
<p><code>Important :</code> Do not type <code>copy running-config startup-config</code> or <code>write memory</code>. These commands erase your startup configuration.</p>
<p>11. Type <code>write terminal</code> or <code>show running-config.</code></p>
<p>The <code>show running-config</code> and <code>write terminal</code> commands show the configuration of the router. In this configuration, the <code>shutdown</code> command appears under each interface, which means all interfaces are currently shutdown. Also, the passwords display either encrypted or unencrypted.</p>
<p>12. Type <code>configure terminal</code>, and make the changes.</p>
<p>The <code>hostname(config)#</code> prompt appears.</p>
<p>13. Type <code>enable secret</code> in order to change the enable secret password.</p>
<p>14. Issue the <code>no shutdown</code> command on every interface that is used. If you issue a show ip interface brief command after you exit configuration mode, every interface that you want to use displays up up.</p>
<p>15. Type <code>config-register 0×2102</code> (or use the value you recorded in step 4).</p>
<p>This step causes the router to load the Cisco IOS software from the Flash with the configuration from NVRAM at the next reload.</p>
<p>16. Press <code>CTRL + Z</code> in order to leave the configuration mode.</p>
<p>The <code>hostname#</code> prompt appears.</p>
<p>17. Type <code>write memory</code> or <code>copy running-config startup-config</code> in order to commit the changes.</p>
<p>18. Type <code>Reload</code> in order to restart the router and force the Cisco IOS software to boot from the Flash.</p>
<p style="text-align:center;"><img class="aligncenter" src="http://usera.imagecave.com/ntserafica/Blog/cisco2.jpg" alt="Cisco Router" /></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sidetech.wordpress.com/34/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sidetech.wordpress.com/34/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidetech.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidetech.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidetech.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidetech.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidetech.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidetech.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidetech.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidetech.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidetech.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidetech.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidetech.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidetech.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidetech.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidetech.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidetech.wordpress.com&amp;blog=4881405&amp;post=34&amp;subd=sidetech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidetech.wordpress.com/2008/09/18/how-to-reset-password-in-cisco-router-2600-series/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b7b908e18334cb38762a97bb756535a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nelson21</media:title>
		</media:content>

		<media:content url="http://usera.imagecave.com/ntserafica/Blog/cisco2.jpg" medium="image">
			<media:title type="html">Cisco Router</media:title>
		</media:content>
	</item>
		<item>
		<title>Adding a new hard drive in your Linux Box</title>
		<link>http://sidetech.wordpress.com/2008/09/18/adding-a-new-hard-drive-in-your-linux-box/</link>
		<comments>http://sidetech.wordpress.com/2008/09/18/adding-a-new-hard-drive-in-your-linux-box/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 12:41:35 +0000</pubDate>
		<dc:creator>nelson21</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://sidetech.wordpress.com/?p=30</guid>
		<description><![CDATA[I just saw that my partition for my database sever running in MySQL has reached 90%. So I rush to the stock room to get a new hard drive. The problem is I need to do this were there is no people around in the office so that I can shutdown the server, backup the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidetech.wordpress.com&amp;blog=4881405&amp;post=30&amp;subd=sidetech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just saw that my partition for my database sever running in MySQL has reached 90%. So I rush to the stock room to get a new hard drive. The problem is I need to do this were there is no people around in the office so that I can shutdown the server, backup the database and mount the MySQL to its new directory.</p>
<p>1. Know where your hard drive is located</p>
<p><span style="color:#ff0000;">Primary Controller First Drive: /dev/hda<br />
Primary Controller Second Drive: /dev/hdb<br />
Secondary Controller First Drive: /dev/hdc<br />
Secondary Controller Second Drive: /dev/hdd</span></p>
<p>2. Let&#8217;s assume that the new hard drive is /dev/hdc. You need to format the new hard drive. Just do fdisk /dev/hdc and follow the procedure there. Make sure you chose Linux as your partition type usually it is ext2 or ext3.</p>
<p>3. When that was done I used mkfs to make a filesystem in that hard drive. Since there was just one partition it was named /dev/hdc1</p>
<p><span style="color:#ff0000;">mkfs /dev/hdc1</span></p>
<p>4. I made a mount point. I decided to put it in /dbdata</p>
<p><span style="color:#ff0000;">mount /dev/hdc1 /dbdata</span></p>
<p>The filesystem can be unmounted using umount /dbdata.</p>
<p>5. Lastly, I made an entry in /etc/fstab describing the new filesystem so it would be mounted automatically at boot time.</p>
<p><span style="color:#ff0000;">/dev/hdc1 /dbdata ext2 defaults 1 1</span></p>
<p>6. Your new hard drive is now active. Try to do df -h so that you can view what&#8217;s mounted in your system</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sidetech.wordpress.com/30/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sidetech.wordpress.com/30/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidetech.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidetech.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidetech.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidetech.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidetech.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidetech.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidetech.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidetech.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidetech.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidetech.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidetech.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidetech.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidetech.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidetech.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidetech.wordpress.com&amp;blog=4881405&amp;post=30&amp;subd=sidetech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidetech.wordpress.com/2008/09/18/adding-a-new-hard-drive-in-your-linux-box/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b7b908e18334cb38762a97bb756535a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nelson21</media:title>
		</media:content>
	</item>
		<item>
		<title>Cache Poisoning Vulnerabilities in old version of Bind</title>
		<link>http://sidetech.wordpress.com/2008/09/18/cache-poisoning-vulnerabilities-in-old-version-of-bind/</link>
		<comments>http://sidetech.wordpress.com/2008/09/18/cache-poisoning-vulnerabilities-in-old-version-of-bind/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 12:26:47 +0000</pubDate>
		<dc:creator>nelson21</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://sidetech.wordpress.com/?p=23</guid>
		<description><![CDATA[I just upgraded my bind to 9.5 from 9.2 due to vulnerability of older version to cache poisoning. DNS Cache Poisoning The Domain Name System (DNS) is responsible for translating host names to IP addresses (and vice versa) and is critical for the normal operation of internet-connected systems. DNS cache poisoning (sometimes referred to as [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidetech.wordpress.com&amp;blog=4881405&amp;post=23&amp;subd=sidetech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just upgraded my bind to 9.5 from 9.2 due to vulnerability of older version to cache poisoning.</p>
<p><strong>DNS Cache Poisoning</strong></p>
<p>The Domain Name System (DNS) is responsible for translating host names to IP addresses (and vice versa) and is critical for the normal operation of internet-connected systems. DNS cache poisoning (sometimes referred to as cache pollution) is an attack technique that allows an attacker to introduce forged DNS information into the cache of a caching nameserver.</p>
<p>I visit those online test to check if I have randomness port on my dns server and it says POOR. Thanks to recent work by Dan Kaminsky of IOActive, ISC has become aware of a potential attack exploiting weaknesses in the DNS protocol itself.</p>
<p>Here is some link for you to test your dns:</p>
<p><a href="https://www.dns-oarc.net/oarc/services/dnsentropy">https://www.dns-oarc.net/oarc/services/dnsentropy</a><br />
<a href="https://www.dns-oarc.net/oarc/services/porttest">https://www.dns-oarc.net/oarc/services/porttest</a><br />
<a href="http://www.doxpara.com/">http://www.doxpara.com/</a></p>
<p style="text-align:center;">
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sidetech.wordpress.com/23/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sidetech.wordpress.com/23/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidetech.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidetech.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidetech.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidetech.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidetech.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidetech.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidetech.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidetech.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidetech.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidetech.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidetech.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidetech.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidetech.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidetech.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidetech.wordpress.com&amp;blog=4881405&amp;post=23&amp;subd=sidetech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidetech.wordpress.com/2008/09/18/cache-poisoning-vulnerabilities-in-old-version-of-bind/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b7b908e18334cb38762a97bb756535a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nelson21</media:title>
		</media:content>
	</item>
		<item>
		<title>Allow SecureCRT to accept public key authentication in Openssh</title>
		<link>http://sidetech.wordpress.com/2008/09/18/allow-securecrt-to-accept-public-key-authentication-in-openssh/</link>
		<comments>http://sidetech.wordpress.com/2008/09/18/allow-securecrt-to-accept-public-key-authentication-in-openssh/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 12:13:45 +0000</pubDate>
		<dc:creator>nelson21</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://sidetech.wordpress.com/?p=17</guid>
		<description><![CDATA[I use Vandyke’s SecureCRT to access my linux machines. Due to the recent increase in the number of attempts to break-in to my systems via SSH, I decided it was high time I switched to using public/private key authentication instead of simply password. I had devil of time figuring out how to get the public [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidetech.wordpress.com&amp;blog=4881405&amp;post=17&amp;subd=sidetech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I use Vandyke’s SecureCRT to access my linux machines. Due to the recent increase in the number of attempts to break-in to my systems via SSH, I decided it was high time I switched to using public/private key authentication instead of simply password.</p>
<p>I had devil of time figuring out how to get the public key generated by SecureCRT into OpenSSH’s authorized_keys2 file.</p>
<p>After digging through the SecureCRT help file for a bit I finally found the command:</p>
<p><span style="color:#ff0000;">cd .ssh<br />
ssh-keygen -X -f Identity.pub &gt;&gt; authorized_keys2</span></p>
<p>Now, I just have to figure out a way to keep my public keys with me whenever I might have need to access my systems without a system I work on normally</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sidetech.wordpress.com/17/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sidetech.wordpress.com/17/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidetech.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidetech.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidetech.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidetech.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidetech.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidetech.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidetech.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidetech.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidetech.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidetech.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidetech.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidetech.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidetech.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidetech.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidetech.wordpress.com&amp;blog=4881405&amp;post=17&amp;subd=sidetech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidetech.wordpress.com/2008/09/18/allow-securecrt-to-accept-public-key-authentication-in-openssh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b7b908e18334cb38762a97bb756535a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nelson21</media:title>
		</media:content>
	</item>
		<item>
		<title>Rebuilding rpm in my Redhat 9</title>
		<link>http://sidetech.wordpress.com/2008/09/18/rebuilding-rpm-in-my-redhat-9/</link>
		<comments>http://sidetech.wordpress.com/2008/09/18/rebuilding-rpm-in-my-redhat-9/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 08:05:09 +0000</pubDate>
		<dc:creator>nelson21</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://sidetech.wordpress.com/?p=15</guid>
		<description><![CDATA[I&#8217;m trying to install an rpm package. However, I encountered the following error: Error encountered: error: rpmdbNextIterator: skipping h# 838 Header V3 DSA signature: To fix: rm -f /var/lib/rpm/__db.* rpmbuild &#8211;rebuilddb After that, I can install rpm again<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidetech.wordpress.com&amp;blog=4881405&amp;post=15&amp;subd=sidetech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m trying to install an rpm package. However, I encountered the following error:</p>
<p>Error encountered: error: rpmdbNextIterator: skipping h#     838 Header V3 DSA signature:</p>
<p>To fix:</p>
<p><span style="color:#ff0000;">rm -f /var/lib/rpm/__db.*<br />
rpmbuild &#8211;rebuilddb</span></p>
<p>After that, I can install rpm again</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sidetech.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sidetech.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidetech.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidetech.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidetech.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidetech.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidetech.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidetech.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidetech.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidetech.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidetech.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidetech.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidetech.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidetech.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidetech.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidetech.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidetech.wordpress.com&amp;blog=4881405&amp;post=15&amp;subd=sidetech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidetech.wordpress.com/2008/09/18/rebuilding-rpm-in-my-redhat-9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b7b908e18334cb38762a97bb756535a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nelson21</media:title>
		</media:content>
	</item>
	</channel>
</rss>
