<?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"
	>

<channel>
	<title>PinoyTux Weblog &#187; Hardware</title>
	<atom:link href="http://www.pinoytux.com/category/hardware/feed" rel="self" type="application/rss+xml" />
	<link>http://www.pinoytux.com</link>
	<description>Get Fresh News About Linux, Philippines and Everything in Between</description>
	<pubDate>Sun, 28 Dec 2008 07:16:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Tip: Add User and Generate Password Script</title>
		<link>http://www.pinoytux.com/linux/tip-add-user-and-generate-password-script</link>
		<comments>http://www.pinoytux.com/linux/tip-add-user-and-generate-password-script#comments</comments>
		<pubDate>Thu, 09 Oct 2008 13:29:58 +0000</pubDate>
		<dc:creator>Rai</dc:creator>
		
		<category><![CDATA[Hardware]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Tips]]></category>

		<category><![CDATA[bash]]></category>

		<category><![CDATA[change]]></category>

		<category><![CDATA[create]]></category>

		<category><![CDATA[generate]]></category>

		<category><![CDATA[openssl]]></category>

		<category><![CDATA[password]]></category>

		<category><![CDATA[script]]></category>

		<category><![CDATA[user]]></category>

		<guid isPermaLink="false">http://www.pinoytux.com/?p=520</guid>
		<description><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
digg_url = 'http://www.pinoytux.com/linux/tip-add-user-and-generate-password-script';
digg_bgcolor = '#FFFFFF';
digg_skin = '';
digg_window = 'new';
digg_title = 'Tip: Add User and Generate Password Script';
digg_bodytext = 'Hey guys!Finally, I found time to update this lovely blog of mine. And luckily, I have one super cool simple script to share. This script will help a lot of system administrators in adding user accounts, very useful if you have about a hundred servers...';
digg_media = 'news';
digg_topic = '';
//-->
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
Hey guys!
Finally, I found time to update this lovely blog of mine. And luckily, I have one super cool simple script to share. This script will help a lot of system administrators in adding user accounts, very useful if you have about a hundred servers to login to and execute useradd and passwd again and [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
digg_url = 'http://www.pinoytux.com/linux/tip-add-user-and-generate-password-script';
digg_bgcolor = '#FFFFFF';
digg_skin = '';
digg_window = 'new';
digg_title = 'Tip: Add User and Generate Password Script';
digg_bodytext = 'Hey guys!Finally, I found time to update this lovely blog of mine. And luckily, I have one super cool simple script to share. This script will help a lot of system administrators in adding user accounts, very useful if you have about a hundred servers...';
digg_media = 'news';
digg_topic = '';
//-->
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
<p>Hey guys!</p>
<p>Finally, I found time to update this lovely blog of mine. And luckily, I have one super cool simple script to share. This script will help a lot of system administrators in adding user accounts, very useful if you have about a hundred servers to login to and execute <code>useradd</code> and <code>passwd</code> again and again. This is a bash script, so no need to install packages and easy to understand.</p>
<p>Here goes the code.</p>
<p><code><br />
#!/bin/bash </code></p>
<p>for USER in $(cat /tmp/users.txt) do<br />
$(useradd $USER)<br />
###Remove the space between 8 and )<br />
PASSWORD=$(openssl rand -base64 8 )<br />
###passwd [double dash] stdin<br />
echo $PASSWORD | $(passwd <em>&#8211;stdin</em> $USER)<br />
echo &#8220;$USER  $PASSWORD&#8221; |  mail -s &#8220;Your Account Info&#8221; $USER@company.com<br />
sleep 3<br />
done</p>
<p>Here is a quick summary of the code per line:</p>
<p><code><em>for USER in $(cat /tmp/users.txt) do</em> </code><br />
This line begins the for loop and <em>/tmp/users.txt</em> should be a text file containing the list of usernames to be added one username per line. The value of $USER</p>
<p><code><em>$(useradd $USER) </em></code><br />
This line will begin by executing the command useradd. If the script fails at this point because the username already exists, it will proceed with changing the password of the username.</p>
<p>###Remove the space between 8 and )<br />
###passwd [double dash] stdin<br />
<em><code>PASSWORD=$(openssl rand -base64 8 )<br />
echo $PASSWORD | $(passwd --stdin $USER) </code></em><br />
This line generates an 8-byte random password using openssl and pipes it to command passwd using &#8211;stdin option so the generated password can be passed.</p>
<p><code><em>echo &#8220;$USER  $PASSWORD&#8221; |  mail -s &#8220;Your Account Info&#8221; $USER@company.com</em></code><br />
This line sends an email to the user containing the username and password, assuming that the email address is the same as the username.</p>
<p>This script can be further enhanced (imagination is limitless!) and feel free to share your script here.</p>
<h3>Related Posts</h3>
<ul class="related_post">
<li><a href="http://www.pinoytux.com/linux/tip-how-to-place-pause-in-bash-scripts" title="Tip: How to Place Pause in Bash Scripts">Tip: How to Place Pause in Bash Scripts (0)</a></li>
<li><a href="http://www.pinoytux.com/linux/tip-script-for-checking-for-server-load" title="Tip: Script for Checking for Server Load">Tip: Script for Checking for Server Load (2)</a></li>
<li><a href="http://www.pinoytux.com/linux/linux-tip-reset-root-password" title="Linux Tip: Reset Root Password">Linux Tip: Reset Root Password (0)</a></li>
<li><a href="http://www.pinoytux.com/linux/10-things-you-didnt-know-you-could-do-in-ubuntu" title="10 Things You Didn&#8217;t Know You Could Do In Ubuntu">10 Things You Didn&#8217;t Know You Could Do In Ubuntu (2)</a></li>
<li><a href="http://www.pinoytux.com/how-tos/tip-perl-script-to-archive-log-files" title="Tip: Perl Script to Archive Log Files">Tip: Perl Script to Archive Log Files (1)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.pinoytux.com/linux/tip-add-user-and-generate-password-script/feed</wfw:commentRss>
		</item>
		<item>
		<title>Creative CPU Designs</title>
		<link>http://www.pinoytux.com/hardware/creative-cpu-designs</link>
		<comments>http://www.pinoytux.com/hardware/creative-cpu-designs#comments</comments>
		<pubDate>Sat, 09 Aug 2008 15:51:14 +0000</pubDate>
		<dc:creator>Rai</dc:creator>
		
		<category><![CDATA[Hardware]]></category>

		<category><![CDATA[art]]></category>

		<category><![CDATA[casing]]></category>

		<category><![CDATA[computer]]></category>

		<category><![CDATA[cool]]></category>

		<category><![CDATA[cpu]]></category>

		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://www.pinoytux.com/?p=441</guid>
		<description><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
digg_url = 'http://www.pinoytux.com/hardware/creative-cpu-designs';
digg_bgcolor = '#FFFFFF';
digg_skin = '';
digg_window = 'new';
digg_title = 'Creative CPU Designs';
digg_bodytext = 'I have tried PC Modding before but never really succeeded in doing so for a couple of reasons. One is I am too lazy to create something that is artistic, and the other reason is I am not that artistic. And besides, cool CPU designs are available at my...';
digg_media = 'news';
digg_topic = '';
//-->
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
I have tried PC Modding before but never really succeeded in doing so for a couple of reasons. One is I am too lazy to create something that is artistic, and the other reason is I am not that artistic. And besides, cool CPU designs are available at my favorite PC store anyway so I&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
digg_url = 'http://www.pinoytux.com/hardware/creative-cpu-designs';
digg_bgcolor = '#FFFFFF';
digg_skin = '';
digg_window = 'new';
digg_title = 'Creative CPU Designs';
digg_bodytext = 'I have tried PC Modding before but never really succeeded in doing so for a couple of reasons. One is I am too lazy to create something that is artistic, and the other reason is I am not that artistic. And besides, cool CPU designs are available at my...';
digg_media = 'news';
digg_topic = '';
//-->
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
<p>I have tried PC Modding before but never really succeeded in doing so for a couple of reasons. One is I am too lazy to create something that is artistic, and the other reason is I am not that artistic. And besides, cool CPU designs are available at my favorite PC store anyway so I&#8217;ll just go ahead and buy one if I want to change my PC&#8217;s look.</p>
<p>Anyway, here are some of the coolest CPU designs that I found over at <a href="http://www.technoscrap.com/2008/07/20/creative-central-processing-unints/" target="_blank">www.technoscrap.com</a>. Feast your eyes over the coolest and weirdest designs:</p>
<p><a href="http://www.pinoytux.com/wp-content/uploads/2008/08/ccpu_27.jpg"><img class="alignnone size-medium wp-image-442" title="ccpu_27" src="http://www.pinoytux.com/wp-content/uploads/2008/08/ccpu_27-264x300.jpg" alt="" width="264" height="300" /></a></p>
<p><a href="http://www.pinoytux.com/wp-content/uploads/2008/08/ccpu_02.jpg"><img class="alignnone size-medium wp-image-443" title="ccpu_02" src="http://www.pinoytux.com/wp-content/uploads/2008/08/ccpu_02-217x300.jpg" alt="" width="217" height="300" /></a></p>
<p><a href="http://www.pinoytux.com/wp-content/uploads/2008/08/ccpu_05.jpg"><img class="alignnone size-medium wp-image-444" title="ccpu_05" src="http://www.pinoytux.com/wp-content/uploads/2008/08/ccpu_05-300x190.jpg" alt="" width="300" height="190" /></a></p>
<p><a href="http://www.pinoytux.com/wp-content/uploads/2008/08/ccpu_06.jpg"><img class="alignnone size-medium wp-image-445" title="ccpu_06" src="http://www.pinoytux.com/wp-content/uploads/2008/08/ccpu_06-278x300.jpg" alt="" width="278" height="300" /></a></p>
<p><a href="http://www.pinoytux.com/wp-content/uploads/2008/08/ccpu_08.jpg"><img class="alignnone size-medium wp-image-446" title="ccpu_08" src="http://www.pinoytux.com/wp-content/uploads/2008/08/ccpu_08-300x204.jpg" alt="" width="300" height="204" /></a></p>
<p><a href="http://www.pinoytux.com/wp-content/uploads/2008/08/ccpu_10.jpg"><img class="alignnone size-medium wp-image-447" title="ccpu_10" src="http://www.pinoytux.com/wp-content/uploads/2008/08/ccpu_10-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p><a href="http://www.pinoytux.com/wp-content/uploads/2008/08/ccpu_11.jpg"><img class="alignnone size-medium wp-image-448" title="ccpu_11" src="http://www.pinoytux.com/wp-content/uploads/2008/08/ccpu_11-300x174.jpg" alt="" width="300" height="174" /></a></p>
<p><a href="http://www.pinoytux.com/wp-content/uploads/2008/08/ccpu_13.jpg"><img class="alignnone size-medium wp-image-449" title="ccpu_13" src="http://www.pinoytux.com/wp-content/uploads/2008/08/ccpu_13-300x200.jpg" alt="" width="300" height="200" /></a></p>
<p><a href="http://www.pinoytux.com/wp-content/uploads/2008/08/ccpu_14.jpg"><img class="alignnone size-medium wp-image-450" title="ccpu_14" src="http://www.pinoytux.com/wp-content/uploads/2008/08/ccpu_14-300x173.jpg" alt="" width="300" height="173" /></a></p>
<p><a href="http://www.pinoytux.com/wp-content/uploads/2008/08/ccpu_19.jpg"><img class="alignnone size-medium wp-image-451" title="ccpu_19" src="http://www.pinoytux.com/wp-content/uploads/2008/08/ccpu_19-300x221.jpg" alt="" width="300" height="221" /></a><br />
<h3>Related Posts</h3>
<ul class="related_post">
<li><a href="http://www.pinoytux.com/linux/picotux-smallest-linux-computer-in-the-world" title="Picotux: Smallest Linux Computer In The World">Picotux: Smallest Linux Computer In The World (0)</a></li>
<li><a href="http://www.pinoytux.com/linux/five-reasons-why-linux-is-better-than-windows" title="Five Reasons Why Linux Is Better Than Windows">Five Reasons Why Linux Is Better Than Windows (6)</a></li>
<li><a href="http://www.pinoytux.com/linux/geeks-guide-to-gift-giving" title="Geek&#8217;s Guide to Gift Giving">Geek&#8217;s Guide to Gift Giving (0)</a></li>
<li><a href="http://www.pinoytux.com/hardware/seagate-unveils-1tb-hard-disk-drive" title="Seagate Unveils 1TB Hard Disk Drive">Seagate Unveils 1TB Hard Disk Drive (2)</a></li>
<li><a href="http://www.pinoytux.com/linux/diablo-3-coming-soon" title="Diablo 3 Coming Soon">Diablo 3 Coming Soon (2)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.pinoytux.com/hardware/creative-cpu-designs/feed</wfw:commentRss>
		</item>
		<item>
		<title>Seagate Unveils 1TB Hard Disk Drive</title>
		<link>http://www.pinoytux.com/hardware/seagate-unveils-1tb-hard-disk-drive</link>
		<comments>http://www.pinoytux.com/hardware/seagate-unveils-1tb-hard-disk-drive#comments</comments>
		<pubDate>Sun, 13 Jul 2008 11:47:50 +0000</pubDate>
		<dc:creator>Rai</dc:creator>
		
		<category><![CDATA[Hardware]]></category>

		<category><![CDATA[disk]]></category>

		<category><![CDATA[hard drive]]></category>

		<category><![CDATA[rpm]]></category>

		<category><![CDATA[seagate]]></category>

		<category><![CDATA[storage]]></category>

		<category><![CDATA[terabyte]]></category>

		<guid isPermaLink="false">http://www.pinoytux.com/?p=400</guid>
		<description><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
digg_url = 'http://www.pinoytux.com/hardware/seagate-unveils-1tb-hard-disk-drive';
digg_bgcolor = '#FFFFFF';
digg_skin = '';
digg_window = 'new';
digg_title = 'Seagate Unveils 1TB Hard Disk Drive';
digg_bodytext = 'It may seem a dream at first to have a whopping 1 Terabyte of disk storage for all your digital movie, picture and music files. And now the dream is over as Seagate, world&#8217;s top manufacturer of digital storage media, made available to consumers...';
digg_media = 'news';
digg_topic = '';
//-->
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
It may seem a dream at first to have a whopping 1 Terabyte of disk storage for all your digital movie, picture and music files. And now the dream is over as Seagate, world&#8217;s top manufacturer of digital storage media, made available to consumers 1TB hard disk drive (HDD) at 72000rpm motor speed.
The HDD is [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
digg_url = 'http://www.pinoytux.com/hardware/seagate-unveils-1tb-hard-disk-drive';
digg_bgcolor = '#FFFFFF';
digg_skin = '';
digg_window = 'new';
digg_title = 'Seagate Unveils 1TB Hard Disk Drive';
digg_bodytext = 'It may seem a dream at first to have a whopping 1 Terabyte of disk storage for all your digital movie, picture and music files. And now the dream is over as Seagate, world&#8217;s top manufacturer of digital storage media, made available to consumers...';
digg_media = 'news';
digg_topic = '';
//-->
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
<p>It may seem a dream at first to have a whopping 1 Terabyte of disk storage for all your digital movie, picture and music files. And now the dream is over as Seagate, world&#8217;s top manufacturer of digital storage media, made available to consumers 1TB hard disk drive (HDD) at 72000rpm motor speed.</p>
<p>The HDD is made up of four platters and eight heads, making it 180GB worth of storage per square inch, industry&#8217;s highest when it comes areal density. But power consumption and noise level are still at par with the current drive models using 13w of power and 2.8bels in idle mode and 3.7bels in seek modes. The speed is also the same with the 1TB model since it uses 7200 revolutions per minute in its spin. The drive can cache 32MB of data and seek time averages at 8.5ms.</p>
<p>Current prices range from $180to $250 for SATA based on amazon.com prices.<br />
<h3>Related Posts</h3>
<ul class="related_post">
<li><a href="http://www.pinoytux.com/hardware/creative-cpu-designs" title="Creative CPU Designs">Creative CPU Designs (0)</a></li>
<li><a href="http://www.pinoytux.com/linux/tip-testing-your-phpmysql-connection" title="Tip: Testing Your PHP/MySQL Connection">Tip: Testing Your PHP/MySQL Connection (0)</a></li>
<li><a href="http://www.pinoytux.com/hardware/167" title="How Tell Your Hard Drive Is About To Die">How Tell Your Hard Drive Is About To Die (0)</a></li>
<li><a href="http://www.pinoytux.com/hardware/datapipe-server-migration" title="DataPipe Server Migration">DataPipe Server Migration (0)</a></li>
<li><a href="http://www.pinoytux.com/linux/picotux-smallest-linux-computer-in-the-world" title="Picotux: Smallest Linux Computer In The World">Picotux: Smallest Linux Computer In The World (0)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.pinoytux.com/hardware/seagate-unveils-1tb-hard-disk-drive/feed</wfw:commentRss>
		</item>
		<item>
		<title>Speak Up!</title>
		<link>http://www.pinoytux.com/hardware/speak-up</link>
		<comments>http://www.pinoytux.com/hardware/speak-up#comments</comments>
		<pubDate>Sat, 12 Jul 2008 06:18:50 +0000</pubDate>
		<dc:creator>Rai</dc:creator>
		
		<category><![CDATA[Hardware]]></category>

		<category><![CDATA[entertainment]]></category>

		<category><![CDATA[music]]></category>

		<category><![CDATA[sound]]></category>

		<category><![CDATA[speaker]]></category>

		<guid isPermaLink="false">http://www.pinoytux.com/?p=399</guid>
		<description><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
digg_url = 'http://www.pinoytux.com/hardware/speak-up';
digg_bgcolor = '#FFFFFF';
digg_skin = '';
digg_window = 'new';
digg_title = 'Speak Up!';
digg_bodytext = 'I have read somewhere, maybe watched it on television, that human ears are the first of the five senses that become active just as you wake up. It means you hear sounds around you first, before you feel the pillow, see the morning sunshine or smell the...';
digg_media = 'news';
digg_topic = '';
//-->
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
I have read somewhere, maybe watched it on television, that human ears are the first of the five senses that become active just as you wake up. It means you hear sounds around you first, before you feel the pillow, see the morning sunshine or smell the breakfast coffee.
But can you imagine life without sounds? [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
digg_url = 'http://www.pinoytux.com/hardware/speak-up';
digg_bgcolor = '#FFFFFF';
digg_skin = '';
digg_window = 'new';
digg_title = 'Speak Up!';
digg_bodytext = 'I have read somewhere, maybe watched it on television, that human ears are the first of the five senses that become active just as you wake up. It means you hear sounds around you first, before you feel the pillow, see the morning sunshine or smell the...';
digg_media = 'news';
digg_topic = '';
//-->
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
<p>I have read somewhere, maybe watched it on television, that human ears are the first of the five senses that become active just as you wake up. It means you hear sounds around you first, before you feel the pillow, see the morning sunshine or smell the breakfast coffee.</p>
<p>But can you imagine life without sounds? I can&#8217;t. Music is part of my everyday life from the morning news to my MP3 while getting some work done up to my nightly habit of watching anime shows. That is why I equip my computer with 5.1 speaker system to make sure that I get the best sound out of anything that my computer plays.</p>
<p>Even our home entertainment system is equipped with branded sound system to make sure that every movie that we watch on the DVD player is as real as it can get. And <a href="http://www.thespeakercompany.com/store/speaker/DisplayCategoryProductListPage/categoryID.11219000">contemporary computer speakers</a> are easy to find. If you what Google is, then you are halfway there to finding the best set of speakers that you can find. A good sound system cannot replace what a cheap, poor speaker system so it is always good to invest in something that is worth your money.<br />
<h3>Related Posts</h3>
<ul class="related_post">
<li><a href="http://www.pinoytux.com/random/todays-top-10-rap-artists" title="Today&#8217;s Top 10 Rap Artists">Today&#8217;s Top 10 Rap Artists (0)</a></li>
<li><a href="http://www.pinoytux.com/random/cool-music-from-windows-sounds" title="Cool Music from Windows Sounds">Cool Music from Windows Sounds (0)</a></li>
<li><a href="http://www.pinoytux.com/linux/vmware-failed-to-open-sound-device" title="VMware: Failed to Open Sound Device">VMware: Failed to Open Sound Device (0)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.pinoytux.com/hardware/speak-up/feed</wfw:commentRss>
		</item>
		<item>
		<title>Creative Labs Threatens Third Party Driver Modder</title>
		<link>http://www.pinoytux.com/hardware/creative-labs-threatens-third-party-driver-modder</link>
		<comments>http://www.pinoytux.com/hardware/creative-labs-threatens-third-party-driver-modder#comments</comments>
		<pubDate>Sun, 30 Mar 2008 19:31:10 +0000</pubDate>
		<dc:creator>Rai</dc:creator>
		
		<category><![CDATA[Hardware]]></category>

		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[creative labs]]></category>

		<category><![CDATA[hardware driver]]></category>

		<category><![CDATA[sound card]]></category>

		<category><![CDATA[windows vista]]></category>

		<guid isPermaLink="false">http://www.pinoytux.com/hardware/creative-labs-threatens-third-party-driver-modder</guid>
		<description><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
digg_url = 'http://www.pinoytux.com/hardware/creative-labs-threatens-third-party-driver-modder';
digg_bgcolor = '#FFFFFF';
digg_skin = '';
digg_window = 'new';
digg_title = 'Creative Labs Threatens Third Party Driver Modder';
digg_bodytext = 'A post from Creative Labs Forums delivers a message from Phil O&#8217;Shaughnessy, Corporate Communications VP, to Daniel_K, an individual who modifies the sound card drivers of Creative to unlock functionalities that are not usually available for Windows...';
digg_media = 'news';
digg_topic = '';
//-->
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
A post from Creative Labs Forums delivers a message from Phil O&#8217;Shaughnessy, Corporate Communications VP, to Daniel_K, an individual who modifies the sound card drivers of Creative to unlock functionalities that are not usually available for Windows Vista users.
According to Phil O&#8217;Shaughnessy, Daniel_K is making the drivers run on unsupported hardware and Creative Labs feel [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
digg_url = 'http://www.pinoytux.com/hardware/creative-labs-threatens-third-party-driver-modder';
digg_bgcolor = '#FFFFFF';
digg_skin = '';
digg_window = 'new';
digg_title = 'Creative Labs Threatens Third Party Driver Modder';
digg_bodytext = 'A post from Creative Labs Forums delivers a message from Phil O&#8217;Shaughnessy, Corporate Communications VP, to Daniel_K, an individual who modifies the sound card drivers of Creative to unlock functionalities that are not usually available for Windows...';
digg_media = 'news';
digg_topic = '';
//-->
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
<p>A post from <a href="http://forums.creative.com/creativelabs/board/message?board.id=soundblaster&amp;thread.id=116332&amp;view=by_date_ascending&amp;page=1" target="_blank">Creative Labs Forums</a> delivers a message from Phil O&#8217;Shaughnessy, Corporate Communications VP, to Daniel_K, an individual who modifies the sound card drivers of Creative to unlock functionalities that are not usually available for Windows Vista users.</p>
<p><span id="more-171"></span>According to Phil O&#8217;Shaughnessy, Daniel_K is making the drivers run on unsupported hardware and Creative Labs feel that they should be compensated for this. Daniel_K is also earning via donations from users who use his modified drivers.</p>
<p>Here is the message from the forum:</p>
<blockquote><p> 	Daniel_K:</p>
<p>We are aware that you have been assisting owners of our Creative sound cards for some time now, by providing unofficial driver packages for Vista that deliver more of the original functionality that was found in the equivalent XP packages for those sound cards.Â  In principle we don&#8217;t have a problem with you helping users in this way, so long as they understand that any driver packages you supply are not supported by Creative.Â  Where we do have a problem is when technology and IP owned by Creative or other companies that Creative has licensed from, are made to run on other products for which they are not intended.Â  We took action to remove your thread because, like you, Creative and its technology partners think it is only fair to be compensated for goods and services.Â  The difference in this case is that we own the rights to the materials that you are distributing.Â  By enabling our technology and IP to run on sound cards for which it was not originally offered or intended, you are in effect, stealing our goods.Â  When you solicit donations for providing packages like this, you are profiting from something that you do not own.Â  If we choose to develop and provide host-based processing features with certain sound cards and not others, that is a business decision that only we have the right to make.</p>
<p>Although you say you have discontinued your practice of distributing unauthorized software packages for Creative sound cards we have seen evidence of them elsewhere along with donation requests from you.Â  We also note in a recent post of yours on these forums, that you appear to be contemplating the release of further packages.Â  To be clear, we are asking you to respect our legal rights in this matter and cease all further unauthorized distribution of our technology and IP.Â  In addition we request that you observe our forum rules and respect our right to enforce those rules.Â  If you are in any doubt as to what we would consider unacceptable then please request clarification through one of our forum moderators before posting.</p>
<p>Phil O&#8217;Shaughnessy<br />
VP Corporate Communications<br />
Creative Labs Inc.</p></blockquote>
<h3>Most Popular Posts</h3>
<ul class="related_post">
<li><a href="http://www.pinoytux.com/linux/tip-hiding-files-inside-an-image-in-linux" title="Tip: Hiding Files Inside An Image in Linux">Tip: Hiding Files Inside An Image in Linux (6)</a></li>
<li><a href="http://www.pinoytux.com/games/create-your-own-poker-league-with-pokerdiy" title="Create Your Own Poker League with PokerDIY">Create Your Own Poker League with PokerDIY (1)</a></li>
<li><a href="http://www.pinoytux.com/tv/mythbusters-jamie-and-adam-on-csi" title="Mythbuster&#8217;s Jamie and Adam on CSI">Mythbuster&#8217;s Jamie and Adam on CSI (3)</a></li>
<li><a href="http://www.pinoytux.com/others/21-funny-christmas-cards" title="21 Funny Christmas Cards">21 Funny Christmas Cards (0)</a></li>
<li><a href="http://www.pinoytux.com/rantings/cebu-pacific-airlines-is-evil" title="Cebu Pacific Airlines is Evil!">Cebu Pacific Airlines is Evil! (36)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.pinoytux.com/hardware/creative-labs-threatens-third-party-driver-modder/feed</wfw:commentRss>
		</item>
		<item>
		<title>How Tell Your Hard Drive Is About To Die</title>
		<link>http://www.pinoytux.com/hardware/167</link>
		<comments>http://www.pinoytux.com/hardware/167#comments</comments>
		<pubDate>Sun, 30 Mar 2008 03:34:24 +0000</pubDate>
		<dc:creator>Rai</dc:creator>
		
		<category><![CDATA[Hardware]]></category>

		<category><![CDATA[Troubleshooting]]></category>

		<category><![CDATA[deframentation]]></category>

		<category><![CDATA[disk drive]]></category>

		<category><![CDATA[disk error]]></category>

		<category><![CDATA[hard drive]]></category>

		<category><![CDATA[scandisk]]></category>

		<category><![CDATA[troubleshoot]]></category>

		<guid isPermaLink="false">http://www.pinoytux.com/hardware/167</guid>
		<description><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
digg_url = 'http://www.pinoytux.com/hardware/167';
digg_bgcolor = '#FFFFFF';
digg_skin = '';
digg_window = 'new';
digg_title = 'How Tell Your Hard Drive Is About To Die';
digg_bodytext = 'LifeHack.org writes all the tell-tale signs to know if your hard drive will soon fail and die on you. Very helpful since I have already suffered enough from hard drives that decided to just get tired and stop breathing - er&#8230; spinning.Hard drives...';
digg_media = 'news';
digg_topic = '';
//-->
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
LifeHack.org writes all the tell-tale signs to know if your hard drive will soon fail and die on you. Very helpful since I have already suffered enough from hard drives that decided to just get tired and stop breathing - er&#8230; spinning.

Hard drives form the basis of our computing. The use of computers comes down [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
digg_url = 'http://www.pinoytux.com/hardware/167';
digg_bgcolor = '#FFFFFF';
digg_skin = '';
digg_window = 'new';
digg_title = 'How Tell Your Hard Drive Is About To Die';
digg_bodytext = 'LifeHack.org writes all the tell-tale signs to know if your hard drive will soon fail and die on you. Very helpful since I have already suffered enough from hard drives that decided to just get tired and stop breathing - er&#8230; spinning.Hard drives...';
digg_media = 'news';
digg_topic = '';
//-->
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
<p><a href="http://www.lifehack.org/articles/technology/how-to-tell-when-your-hard-drive-is-going-to-fail.html" target="_blank">LifeHack.org</a> writes all the tell-tale signs to know if your hard drive will soon fail and die on you. Very helpful since I have already suffered enough from hard drives that decided to just get tired and stop breathing - er&#8230; spinning.<br />
<span id="more-167"></span></p>
<blockquote><p>Hard drives form the basis of our computing. The use of computers comes down to manipulating data, and the hard drive is, of course, where we store all our data; family albums, music, work documents, email, the list goes on.</p>
<p>Most of the components in your computer are electronic devices. They donâ€™t fail with time like a mechanical device such as a car. But your hard drive is one of the few mechanical devices used in modern computing, and as such, itâ€™s destined to die eventually.</p>
<p>Itâ€™s important to learn to recognize the warning signs of an imminent hard drive failure, since you might not have the budget for an extensive back-up system, so you can rescue all that data before itâ€™s lostâ€”sometimes forever, not retrievable at any cost.<br />
Why do hard drives fail?</p>
<p><em> Logical Failures</em></p>
<p>Logical failures occur when the electronics of the hard drive failure or the software (firmware) has a problem. This kind of failure is usually the cheapest and easiest to have fixed. Unfortunately, itâ€™s also an uncommon failure.<br />
Media Failures</p>
<p>If the hard drive has been handled roughly, or the magnetic platters are scratched, have read/write errors or low-level formatting problems, this is a media failure. These are also relatively uncommon. Once the platters are scratched, the data should be considered scrapped.</p>
<p><em>Head Failures</em></p>
<p>A head failure occurs when the read/write head crashes into the platters (the head crash), has an â€œimproper flying heightâ€ or the wiring between the logic board and the head is faultyâ€”among other failures related to malfunction of the read/write head. This is a common failure. The head crash is particularly nasty.</p>
<p><em>Mechanical Failures</em></p>
<p>Mechanical failures probably make up the bulk of hard drive failures. The motor burns out, the drive overheats, bearings get stuckâ€”the kind of thing youâ€™d expect to find when a car fails. These can be nasty but if the failure didnâ€™t affect the platters, you might have a chance of recovery, but at a cost.</p>
<p><em>How do I find out when itâ€™s going to fail before it fails?</em></p>
<p>Thatâ€™s not always possible, and sometimes a hard drive will just dieâ€”but itâ€™s still important to keep an eye on the symptoms of an imminent hard drive so you have the chance to back-up your data and get professional help.</p>
<p>Hard drives are incredibly sensitive bits of hardware, so donâ€™t try to crack it open and have a look inside unless you know what youâ€™re doing. And most definitely ensure that if you do crack it open, the platters donâ€™t get exposed to the open airâ€”hard drives can only be opened in Class 100 clean rooms or theyâ€™re pretty much instantly destroyed by dust.</p>
<p>Itâ€™s a lot easier to back-up than to get your data recovered. Once you detect any of the signs of failure you need to ensure that you have a back-up and if not, make one. Then when the drive dies, you can claim your warranty if you still have it, or buy a new drive, and be on your way.</p>
<p>Recovery can cost thousands and thousands of dollars; it sure is a ridiculous amount to pay, but thereâ€™s not much you can do but shop around and find the best price. The cost of transferring a back-up onto a brand new drive is much cheaper than having a recovery specialist do the same for you.</p>
<p><em>Strange Noises</em></p>
<p>Sometimes hearing strange grinding and thrashing noises means your drive is beyond repairâ€”for instance, if youâ€™ve had a head crash, it very often is. Or it could just be that the motor has failed or your hard drive is grinding away because of noisy bearings. If youâ€™re hearing strange noises then act very, very quicklyâ€”you probably donâ€™t have much time.</p>
<p><em>Disappearing Data and Disk Errors</em></p>
<p>Computer wonâ€™t let you save a document? Or youâ€™re sure that you had a file on your desktop yesterday thatâ€™s nowhere to be seen today? Programs that always worked suddenly stop working, asking where a file it depends on is stored?</p>
<p>These are all potential signs that your hard drive is on its way out. Of course, it could be that your kids moved your files for fun or a virus is eating through them, but disappearing data is never a good sign for your drive if you can rule out those alternative causes.<br />
Your computer stops recognizing your drive</p>
<p>This may seem obvious, but if your computer no longer recognizes your drive chances are thereâ€™s a problem with it, not the computer. Test it in a friendâ€™s computer and see if your hard drive is recognized by it.</p>
<p>Often, this will be a logical failureâ€”unless you can hear strange noises that indicate a severe mechanical or head problem.</p>
<p><em>Computer Crashes</em></p>
<p>Does your computer regularly blue-screen or suddenly reboot? Does it crash often, especially when booting your operating system? If your computer is crashing, especially at times when the computers is accessing files (such as during the boot sequence), it may indicate a problem with your drive.<br />
Really Slow Access Times</p>
<p>It shouldnâ€™t take half an hour to open a folder in Windows Explorer, or two hours to empty the trash. Iâ€™ve come across this problem plenty of times over the years, and itâ€™s always followed by a failing hard drive within a month or two.</p>
<p>If you have this symptom on your computer and your drive does not fail, please uninstall Vista from your 486.</p>
<p>Sound is a great indicator. As soon as the sound changes from the norm, or you get plenty of clicking and grinding from your hard drive, you need to power it down immediately. Get to know the sound of your hard drive while itâ€™s young and in working order, because youâ€™ll need to be able to hear the slightest differences when it gets older.</p>
<p><em>What next?</em></p>
<p>Donâ€™t try to be a hero. If thereâ€™s time, get your data backed up. If thereâ€™s notâ€”nasty noises, for exampleâ€”get it out of the computer or enclosure, wrap it in anti-static plastic or aluminium foil and keep it safe until you can send it to a professional. Hard drives are very sensitive, just like those kids who die their hair black and write poems about suicide. Donâ€™t mess with them.</p>
<p>When you contact a recovery specialist, they will give you details on shipping the drive, though they tend to prefer you hand-deliver it to prevent further damage.</p>
<p>When it comes to hard drives, just remember to keep an eye on it and act quickly. And, of course, keep extensive back-ups, even if you have to skip groceries one week to do so.</p></blockquote>
<h3>Related Posts</h3>
<ul class="related_post">
<li><a href="http://www.pinoytux.com/hardware/seagate-unveils-1tb-hard-disk-drive" title="Seagate Unveils 1TB Hard Disk Drive">Seagate Unveils 1TB Hard Disk Drive (2)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.pinoytux.com/hardware/167/feed</wfw:commentRss>
		</item>
		<item>
		<title>DataPipe Server Migration</title>
		<link>http://www.pinoytux.com/hardware/datapipe-server-migration</link>
		<comments>http://www.pinoytux.com/hardware/datapipe-server-migration#comments</comments>
		<pubDate>Fri, 14 Mar 2008 19:00:25 +0000</pubDate>
		<dc:creator>Rai</dc:creator>
		
		<category><![CDATA[Hardware]]></category>

		<category><![CDATA[News]]></category>

		<category><![CDATA[colocation]]></category>

		<category><![CDATA[data center]]></category>

		<category><![CDATA[datapipe]]></category>

		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://www.pinoytux.com/hardware/datapipe-server-migration</guid>
		<description><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
digg_url = 'http://www.pinoytux.com/hardware/datapipe-server-migration';
digg_bgcolor = '#FFFFFF';
digg_skin = '';
digg_window = 'new';
digg_title = 'DataPipe Server Migration';
digg_bodytext = 'DataPipe has announced that there will be a scheduled downtime for affected servers because of a physical migration. Unfortunately this included our colocated server and because of miscommunication, and we had little time to prepare for this event. The...';
digg_media = 'news';
digg_topic = '';
//-->
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
DataPipe has announced that there will be a scheduled downtime for affected servers because of a physical migration. Unfortunately this included our colocated server and because of miscommunication, and we had little time to prepare for this event. The migration took place last Friday, March 14th between 12:00AM to 8:00AM EST.Â  Although DataPipe provided an [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
digg_url = 'http://www.pinoytux.com/hardware/datapipe-server-migration';
digg_bgcolor = '#FFFFFF';
digg_skin = '';
digg_window = 'new';
digg_title = 'DataPipe Server Migration';
digg_bodytext = 'DataPipe has announced that there will be a scheduled downtime for affected servers because of a physical migration. Unfortunately this included our colocated server and because of miscommunication, and we had little time to prepare for this event. The...';
digg_media = 'news';
digg_topic = '';
//-->
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
<p><a href="http://www.datapipe.com/about_datapipe.aspx" target="_blank">DataPipe</a> has announced that there will be a scheduled downtime for affected servers because of a physical migration. Unfortunately this included our colocated server and because of miscommunication, and we had little time to prepare for this event. The migration took place last Friday, March 14th between 12:00AM to 8:00AM EST.Â  Although DataPipe provided an 8-hour window for the downtime, they anticipated that the servers will be back to normal in less than 8 hours. However, in my experience, the usual 8-hour window normally takes longer than the announced downtime because of &#8220;unexpected events&#8221;.<br />
<h3>Related Posts</h3>
<ul class="related_post">
<li><a href="http://www.pinoytux.com/hardware/creative-cpu-designs" title="Creative CPU Designs">Creative CPU Designs (0)</a></li>
<li><a href="http://www.pinoytux.com/hardware/seagate-unveils-1tb-hard-disk-drive" title="Seagate Unveils 1TB Hard Disk Drive">Seagate Unveils 1TB Hard Disk Drive (2)</a></li>
<li><a href="http://www.pinoytux.com/linux/tip-script-for-checking-for-server-load" title="Tip: Script for Checking for Server Load">Tip: Script for Checking for Server Load (2)</a></li>
<li><a href="http://www.pinoytux.com/pinoytux/3ix-is-not-a-cheap-hosting-provider" title="3ix is Not A Cheap Hosting Provider">3ix is Not A Cheap Hosting Provider (38)</a></li>
<li><a href="http://www.pinoytux.com/linux/picotux-smallest-linux-computer-in-the-world" title="Picotux: Smallest Linux Computer In The World">Picotux: Smallest Linux Computer In The World (0)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.pinoytux.com/hardware/datapipe-server-migration/feed</wfw:commentRss>
		</item>
		<item>
		<title>Fast-Teks On Site Computer Services</title>
		<link>http://www.pinoytux.com/hardware/fast-teks-on-site-computer-services</link>
		<comments>http://www.pinoytux.com/hardware/fast-teks-on-site-computer-services#comments</comments>
		<pubDate>Fri, 14 Mar 2008 00:31:23 +0000</pubDate>
		<dc:creator>Rai</dc:creator>
		
		<category><![CDATA[Hardware]]></category>

		<category><![CDATA[computer services]]></category>

		<category><![CDATA[fast-tek]]></category>

		<category><![CDATA[technician]]></category>

		<guid isPermaLink="false">http://www.pinoytux.com/hardware/fast-teks-on-site-computer-services</guid>
		<description><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
digg_url = 'http://www.pinoytux.com/hardware/fast-teks-on-site-computer-services';
digg_bgcolor = '#FFFFFF';
digg_skin = '';
digg_window = 'new';
digg_title = 'Fast-Teks On Site Computer Services';
digg_bodytext = 'Fast-teks On-Site Computer Services provides computer service when you need it. With their certified technicians, they can guarantee customer satisfaction with their full array of services for every customer need, be it residential or business, all in...';
digg_media = 'news';
digg_topic = '';
//-->
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
Fast-teks On-Site Computer Services provides computer service when you need it. With their certified technicians, they can guarantee customer satisfaction with their full array of services for every customer need, be it residential or business, all in reasonable rates. All Fast-teks technicians, trainers and website developers are A+ certified or hold a comparable certification in [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
digg_url = 'http://www.pinoytux.com/hardware/fast-teks-on-site-computer-services';
digg_bgcolor = '#FFFFFF';
digg_skin = '';
digg_window = 'new';
digg_title = 'Fast-Teks On Site Computer Services';
digg_bodytext = 'Fast-teks On-Site Computer Services provides computer service when you need it. With their certified technicians, they can guarantee customer satisfaction with their full array of services for every customer need, be it residential or business, all in...';
digg_media = 'news';
digg_topic = '';
//-->
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
<p>Fast-teks On-Site Computer Services provides <a href="http://www.fastteks.com">computer service</a> when you need it. With their certified technicians, they can guarantee customer satisfaction with their full array of services for every customer need, be it residential or business, all in reasonable rates. All Fast-teks technicians, trainers and website developers are A+ certified or hold a comparable certification in their area of expertise so rest assured that your valuable computer hardware and data are in safe hands.</p>
<p>Residential services include the following:</p>
<p>*  Virus, Worm, Spyware Removal<br />
* Wireless Networking<br />
* Data Backup and Recovery<br />
* High-Speed Cable DSL Modem Setup<br />
* Troubleshoot and Repair<br />
* Software Training<br />
* Audio Visual<br />
* Shared Internet Office Solutions</p>
<p>Small and medium business services include the following:</p>
<p>*  Managed Services<br />
* Data Backup and Recovery<br />
* Website Design and Hosting<br />
* Technology Consulting<br />
* Troubleshoot and Repair<br />
* Software Training<br />
* Remote Managed Services<br />
* Network Monitoring and Management<br />
* Remote Data Backup<br />
* Computer and Network Security<br />
* Shared Internet Office Solutions<br />
* Email Server and Mobile Device Support<br />
* Office Relocation and Setup<br />
* QuickBooks Training</p>
<p>Fast-teks On-Site Computer Services was ranked #6 in the Franchise 500  magazine in 2006 in the tech industry and #385 in the entire Franchise 500.  This is a yearly publication that ranks franchises based various factors.  Financial strength and stability, growth rate and size of system are just a  few categories that ranking is based on. Many companies are considered, but  only the top 500 make it onto this list.<br />
<h3>Most Popular Posts</h3>
<ul class="related_post">
<li><a href="http://www.pinoytux.com/linux/tip-hiding-files-inside-an-image-in-linux" title="Tip: Hiding Files Inside An Image in Linux">Tip: Hiding Files Inside An Image in Linux (6)</a></li>
<li><a href="http://www.pinoytux.com/games/create-your-own-poker-league-with-pokerdiy" title="Create Your Own Poker League with PokerDIY">Create Your Own Poker League with PokerDIY (1)</a></li>
<li><a href="http://www.pinoytux.com/tv/mythbusters-jamie-and-adam-on-csi" title="Mythbuster&#8217;s Jamie and Adam on CSI">Mythbuster&#8217;s Jamie and Adam on CSI (3)</a></li>
<li><a href="http://www.pinoytux.com/others/21-funny-christmas-cards" title="21 Funny Christmas Cards">21 Funny Christmas Cards (0)</a></li>
<li><a href="http://www.pinoytux.com/rantings/cebu-pacific-airlines-is-evil" title="Cebu Pacific Airlines is Evil!">Cebu Pacific Airlines is Evil! (36)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.pinoytux.com/hardware/fast-teks-on-site-computer-services/feed</wfw:commentRss>
		</item>
		<item>
		<title>Picotux: Smallest Linux Computer In The World</title>
		<link>http://www.pinoytux.com/linux/picotux-smallest-linux-computer-in-the-world</link>
		<comments>http://www.pinoytux.com/linux/picotux-smallest-linux-computer-in-the-world#comments</comments>
		<pubDate>Fri, 14 Mar 2008 00:13:01 +0000</pubDate>
		<dc:creator>Rai</dc:creator>
		
		<category><![CDATA[Hardware]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[News]]></category>

		<category><![CDATA[computer]]></category>

		<category><![CDATA[picotux]]></category>

		<category><![CDATA[smallest computer]]></category>

		<guid isPermaLink="false">http://www.pinoytux.com/linux/picotux-smallest-linux-computer-in-the-world</guid>
		<description><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
digg_url = 'http://www.pinoytux.com/linux/picotux-smallest-linux-computer-in-the-world';
digg_bgcolor = '#FFFFFF';
digg_skin = '';
digg_window = 'new';
digg_title = 'Picotux: Smallest Linux Computer In The World';
digg_bodytext = 'Only slightly larger than RJ45 connector, Picotux 100 is the world&#8217;s smallest computer running Linux operating system. Armed with Busybox 1.0, ARM7 CPU at 55 MHz running uClinux kernel 2.4.27.Technical data:Processor: 32-bit ARM 7 Netsilicon NS7520Processor...';
digg_media = 'news';
digg_topic = '';
//-->
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
Only slightly larger than RJ45 connector, Picotux 100 is the world&#8217;s smallest computer running Linux operating system. Armed with Busybox 1.0, ARM7 CPU at 55 MHz running uClinux kernel 2.4.27.
Technical data:
Processor: 32-bit ARM 7 Netsilicon NS7520
Processor Clock: 55 MHz
Flash Memory: 2 MB
RAM: 8 MB SDRAM
Ethernet: 10/100 Mbit, HD and FD, auto sensing
Serial (TTL): Up to [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
digg_url = 'http://www.pinoytux.com/linux/picotux-smallest-linux-computer-in-the-world';
digg_bgcolor = '#FFFFFF';
digg_skin = '';
digg_window = 'new';
digg_title = 'Picotux: Smallest Linux Computer In The World';
digg_bodytext = 'Only slightly larger than RJ45 connector, Picotux 100 is the world&#8217;s smallest computer running Linux operating system. Armed with Busybox 1.0, ARM7 CPU at 55 MHz running uClinux kernel 2.4.27.Technical data:Processor: 32-bit ARM 7 Netsilicon NS7520Processor...';
digg_media = 'news';
digg_topic = '';
//-->
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
<p>Only slightly larger than <a href="http://en.wikipedia.org/wiki/Registered_jack" target="_blank">RJ45</a> connector, <a href="http://www.picotux.com/" target="_blank">Picotux</a><a href="http://www.picotux.com/" target="_blank"> 100</a> is the world&#8217;s smallest computer running Linux operating system. Armed with <a href="http://www.busybox.net/" target="_blank">Busybox 1.0</a>, <a href="http://www.arm.com/products/CPUs/" target="_blank">ARM7 CPU</a> at 55 MHz running <a href="http://www.uclinux.org/" target="_blank">uClinux kernel</a> 2.4.27.</p>
<p>Technical data:</p>
<p>Processor: 32-bit ARM 7 Netsilicon NS7520<br />
Processor Clock: 55 MHz<br />
Flash Memory: 2 MB<br />
RAM: 8 MB SDRAM<br />
Ethernet: 10/100 Mbit, HD and FD, auto sensing<br />
Serial (TTL): Up to 230.400 bps<br />
General Input/Output Pins(TTL): 5, can be used as Handshake<br />
LED for Ethernet: 2; green (programmable) and yellow (Carrier)<br />
Supply Voltage: 3,3 Volt +- 5%<br />
Supply Current: 250 mA<br />
Operating System: uClinux 2.4.27 Big Endian (native)<br />
Shell: Busybox 1.0 and others<br />
File Systems: CRAMFS, JFFS2, NFS<br />
Applications: Webserver, Telnet<br />
Size of the Linux Systems in Flash: 720 KB and more<br />
Protected Bootloader for Update over Network: 64 KB Code<br />
Development System: GNU Tool chain<br />
Compiler: GCC 3.4.4 for C/C++ and Fortran<br />
Binutils: 2.15<br />
Library: uClibc 0.9.26</p>
<p>Dimensions:<br />
Height: 19 mm<br />
Width: 19 mm<br />
Deep: 36 mm<br />
Package: Shielded by metal<br />
Weight: ca.18 g<br />
Ambient Temperature: -40Â°C to 85Â°C<br />
<h3>Related Posts</h3>
<ul class="related_post">
<li><a href="http://www.pinoytux.com/linux/five-reasons-why-linux-is-better-than-windows" title="Five Reasons Why Linux Is Better Than Windows">Five Reasons Why Linux Is Better Than Windows (6)</a></li>
<li><a href="http://www.pinoytux.com/hardware/creative-cpu-designs" title="Creative CPU Designs">Creative CPU Designs (0)</a></li>
<li><a href="http://www.pinoytux.com/linux/unix-is-the-devils-os" title="Unix is the Devil&#8217;s OS">Unix is the Devil&#8217;s OS (3)</a></li>
<li><a href="http://www.pinoytux.com/linux/shuttles-199-linux-pc" title="Shuttle&#8217;s $199 Linux PC">Shuttle&#8217;s $199 Linux PC (0)</a></li>
<li><a href="http://www.pinoytux.com/linux/the-most-hated-company-in-pc-industry" title="The Most Hated Company In PC Industry">The Most Hated Company In PC Industry (2)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.pinoytux.com/linux/picotux-smallest-linux-computer-in-the-world/feed</wfw:commentRss>
		</item>
		<item>
		<title>The Best Laptops Under $1000</title>
		<link>http://www.pinoytux.com/hardware/the-best-laptops-under-1000</link>
		<comments>http://www.pinoytux.com/hardware/the-best-laptops-under-1000#comments</comments>
		<pubDate>Wed, 12 Mar 2008 20:38:19 +0000</pubDate>
		<dc:creator>Rai</dc:creator>
		
		<category><![CDATA[Hardware]]></category>

		<category><![CDATA[acer]]></category>

		<category><![CDATA[fujitsu]]></category>

		<category><![CDATA[hp]]></category>

		<category><![CDATA[laptop]]></category>

		<category><![CDATA[notebook]]></category>

		<guid isPermaLink="false">http://www.pinoytux.com/hardware/the-best-laptops-under-1000</guid>
		<description><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
digg_url = 'http://www.pinoytux.com/hardware/the-best-laptops-under-1000';
digg_bgcolor = '#FFFFFF';
digg_skin = '';
digg_window = 'new';
digg_title = 'The Best Laptops Under $1000';
digg_bodytext = 'These days, $1000 lands you a pretty well rounded budget laptop. You can easily get 2GB of memory, 120GB or more of hard disk space, 802.11b/g wireless networking, and dedicated multimedia shortcut keys that let you watch DVDs or view documents without...';
digg_media = 'news';
digg_topic = '';
//-->
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
These days, $1000 lands you a pretty well rounded budget laptop. You can easily get 2GB of memory, 120GB or more of hard disk space, 802.11b/g wireless networking, and dedicated multimedia shortcut keys that let you watch DVDs or view documents without booting into Windows. The Acer and Dell laptops in our list even sported [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
digg_url = 'http://www.pinoytux.com/hardware/the-best-laptops-under-1000';
digg_bgcolor = '#FFFFFF';
digg_skin = '';
digg_window = 'new';
digg_title = 'The Best Laptops Under $1000';
digg_bodytext = 'These days, $1000 lands you a pretty well rounded budget laptop. You can easily get 2GB of memory, 120GB or more of hard disk space, 802.11b/g wireless networking, and dedicated multimedia shortcut keys that let you watch DVDs or view documents without...';
digg_media = 'news';
digg_topic = '';
//-->
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
<p>These days, $1000 lands you a pretty well rounded budget laptop. You can easily get 2GB of memory, 120GB or more of hard disk space, 802.11b/g wireless networking, and dedicated multimedia shortcut keys that let you watch DVDs or view documents without booting into Windows. The Acer and Dell laptops in our list even sported HDMI connections, extras we didn&#8217;t expect at this price point. Read more <a href="http://www.pcworld.com/article/id,142959-page,2-c,notebooks/article.html" target="_blank">here</a>.</p>
<p>Source: <a href="http://www.pcworld.com/article/id,142959-page,2-c,notebooks/article.html" target="_blank">pcworld.com</a><br />
<h3>Related Posts</h3>
<ul class="related_post">
<li><a href="http://www.pinoytux.com/microsoft/bundled-windows-os-is-refundable" title="Bundled Windows OS is Refundable">Bundled Windows OS is Refundable (0)</a></li>
<li><a href="http://www.pinoytux.com/linux/tip-how-to-configure-your-synaptics-touchpad-in-linux" title="Tip: How to Configure Your Synaptics Touchpad in Linux">Tip: How to Configure Your Synaptics Touchpad in Linux (0)</a></li>
<li><a href="http://www.pinoytux.com/linux/kubuntu-compiz-and-kde-4-part-two" title="Kubuntu, Compiz and KDE 4 Part Two">Kubuntu, Compiz and KDE 4 Part Two (2)</a></li>
<li><a href="http://www.pinoytux.com/jokes/macbook-air-commercial-parody" title="MacBook Air Commercial Parody">MacBook Air Commercial Parody (1)</a></li>
<li><a href="http://www.pinoytux.com/hardware/creative-cpu-designs" title="Creative CPU Designs">Creative CPU Designs (0)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.pinoytux.com/hardware/the-best-laptops-under-1000/feed</wfw:commentRss>
		</item>
		<item>
		<title>Motorola MC70 Enterprise Digital Assistant</title>
		<link>http://www.pinoytux.com/hardware/motorola-mc70-enterprise-digital-assistant</link>
		<comments>http://www.pinoytux.com/hardware/motorola-mc70-enterprise-digital-assistant#comments</comments>
		<pubDate>Tue, 11 Mar 2008 03:07:02 +0000</pubDate>
		<dc:creator>Rai</dc:creator>
		
		<category><![CDATA[Hardware]]></category>

		<category><![CDATA[computer]]></category>

		<category><![CDATA[device]]></category>

		<category><![CDATA[gadget]]></category>

		<category><![CDATA[motorola mc70]]></category>

		<category><![CDATA[pda]]></category>

		<category><![CDATA[scanner]]></category>

		<guid isPermaLink="false">http://www.pinoytux.com/hardware/motorola-mc70-enterprise-digital-assistant</guid>
		<description><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
digg_url = 'http://www.pinoytux.com/hardware/motorola-mc70-enterprise-digital-assistant';
digg_bgcolor = '#FFFFFF';
digg_skin = '';
digg_window = 'new';
digg_title = 'Motorola MC70 Enterprise Digital Assistant';
digg_bodytext = 'Gadgets keep evolving incorporating one type into another kind creating a different kind of device altogether. Just like Motorola MC70 Mobile Computer that combines mobile phone, PDA, computer, scanner and imaging device all in one compact, rugged device....';
digg_media = 'news';
digg_topic = '';
//-->
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
Gadgets keep evolving incorporating one type into another kind creating a different kind of device altogether. Just like Motorola MC70 Mobile Computer that combines mobile phone, PDA, computer, scanner and imaging device all in one compact, rugged device. This lightweight device combines wireless networking, voice and data communication with advanced data capture. Its rugged structure [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
digg_url = 'http://www.pinoytux.com/hardware/motorola-mc70-enterprise-digital-assistant';
digg_bgcolor = '#FFFFFF';
digg_skin = '';
digg_window = 'new';
digg_title = 'Motorola MC70 Enterprise Digital Assistant';
digg_bodytext = 'Gadgets keep evolving incorporating one type into another kind creating a different kind of device altogether. Just like Motorola MC70 Mobile Computer that combines mobile phone, PDA, computer, scanner and imaging device all in one compact, rugged device....';
digg_media = 'news';
digg_topic = '';
//-->
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
<p>Gadgets keep evolving incorporating one type into another kind creating a different kind of device altogether. Just like <a href="http://www.barcodesinc.com/motorola/mc70.htm">Motorola MC70 Mobile Computer</a><img src="http://tinyurl.com/2e6y2u" /> that combines mobile phone, PDA, computer, scanner and imaging device all in one compact, rugged device. This lightweight device combines wireless networking, voice and data communication with advanced data capture. Its rugged structure also helps withstand rigorous environments and working conditions and has been tested by drop-and-tumble method, providing a versatile and efficient device. The networking capabilities of Motorola MC70 include LAN/WAN and wireless support for voice and data connectivity.</p>
<p>The multiple functions of the device provides low total cost of ownership (TCO). Accessories to complement the features of the device are readily available.</p>
<p><strong> MC70 Specification</strong></p>
<p>Windows Mobile 5.0, 64<acronym title="megabytes">MB</acronym> <acronym title="random access memory">RAM</acronym> 128 MB <acronym title="read only memory">ROM</acronym>, 1/4 VGA color display and Bluetooth.<br />
<h3>Related Posts</h3>
<ul class="related_post">
<li><a href="http://www.pinoytux.com/hardware/top-ten-terrible-tech-products" title="Top Ten Terrible Tech Products">Top Ten Terrible Tech Products (0)</a></li>
<li><a href="http://www.pinoytux.com/linux/geeks-guide-to-gift-giving" title="Geek&#8217;s Guide to Gift Giving">Geek&#8217;s Guide to Gift Giving (0)</a></li>
<li><a href="http://www.pinoytux.com/hardware/creative-cpu-designs" title="Creative CPU Designs">Creative CPU Designs (0)</a></li>
<li><a href="http://www.pinoytux.com/linux/diablo-3-coming-soon" title="Diablo 3 Coming Soon">Diablo 3 Coming Soon (2)</a></li>
<li><a href="http://www.pinoytux.com/jokes/the-reason-why-i-love-my-computer" title="The Reason Why I love My Computer">The Reason Why I love My Computer (2)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.pinoytux.com/hardware/motorola-mc70-enterprise-digital-assistant/feed</wfw:commentRss>
		</item>
		<item>
		<title>Apple MacBook Can Get You A Hot Date</title>
		<link>http://www.pinoytux.com/hardware/apple-macbook-can-get-you-a-hot-date</link>
		<comments>http://www.pinoytux.com/hardware/apple-macbook-can-get-you-a-hot-date#comments</comments>
		<pubDate>Mon, 03 Mar 2008 22:16:48 +0000</pubDate>
		<dc:creator>Rai</dc:creator>
		
		<category><![CDATA[Hardware]]></category>

		<category><![CDATA[apple]]></category>

		<category><![CDATA[cosmopolitan]]></category>

		<category><![CDATA[date]]></category>

		<category><![CDATA[girls]]></category>

		<category><![CDATA[guys]]></category>

		<category><![CDATA[lovers]]></category>

		<category><![CDATA[mac]]></category>

		<category><![CDATA[macbook]]></category>

		<category><![CDATA[men]]></category>

		<guid isPermaLink="false">http://www.pinoytux.com/hardware/apple-macbook-can-get-you-a-hot-date</guid>
		<description><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
digg_url = 'http://www.pinoytux.com/hardware/apple-macbook-can-get-you-a-hot-date';
digg_bgcolor = '#FFFFFF';
digg_skin = '';
digg_window = 'new';
digg_title = 'Apple MacBook Can Get You A Hot Date';
digg_bodytext = 'According to Cosmo, which is NEVER wrong, girls looking to find a single man need look no further than their local Apple Store.Â  Thatâ€™s right. Thanks to sky-high Mac and iPod sales, Appleâ€™s 142 Stores have made Cosmoâ€™s short list...';
digg_media = 'news';
digg_topic = '';
//-->
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
According to Cosmo, which is NEVER wrong, girls looking to find a single man need look no further than their local Apple Store.Â  Thatâ€™s right. Thanks to sky-high Mac and iPod sales, Appleâ€™s 142 Stores have made Cosmoâ€™s short list of the The Best Places to Meet a Guy. Although, if Cosmoâ€™s readers look anything [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
<!--
digg_url = 'http://www.pinoytux.com/hardware/apple-macbook-can-get-you-a-hot-date';
digg_bgcolor = '#FFFFFF';
digg_skin = '';
digg_window = 'new';
digg_title = 'Apple MacBook Can Get You A Hot Date';
digg_bodytext = 'According to Cosmo, which is NEVER wrong, girls looking to find a single man need look no further than their local Apple Store.Â  Thatâ€™s right. Thanks to sky-high Mac and iPod sales, Appleâ€™s 142 Stores have made Cosmoâ€™s short list...';
digg_media = 'news';
digg_topic = '';
//-->
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
<p>According to<em> <strong>Cosmo</strong></em>, which is NEVER wrong, girls looking to find a single man need look no further than their local Apple Store.Â  Thatâ€™s right. Thanks to sky-high Mac and iPod sales, Appleâ€™s 142 Stores have made Cosmoâ€™s short list of the<strong> <a href="http://www.cosmopolitan.com/sex-love/dating/best-places-to-meet-men">The Best Places to Meet a Guy</a></strong>. Although, if Cosmoâ€™s readers look anything like their cover girl, odds are they could meet a man at a Girl Scout meeting. So, whatâ€™s the Apple Storeâ€™s draw?</p>
<blockquote><p> <em>â€ Most guys are natural gadget lovers, and with sales of iPods and MacBooks skyrocketing, more men than ever are stopping by Apple boutiques. The vibe at the stores is conducive to man meeting too: You can check your email among cuties, take a free workshop on anything from Photoshop to podcasting (a great opportunity to strike up a conversation), or just survey the, ahem, good-looking merchandise.â€</em></p></blockquote>
<p>Cosmoâ€™s other two brilliant suggestions for locations are at â€œThe Gymâ€ and at â€œA Fortune 500 Companyâ€. Out of these 3 choices, the Apple Store certainly seems like the least <em>shallow</em> location, if not one with the hottest guys.</p>
<p>I canâ€™t say I ever noticed â€œhotâ€ guys at the Apple Store, but I admit I wasnâ€™t looking. So, if youâ€™re a single Mac Chick into â€œchecking your e-mail among cutiesâ€, head over to the Apple Store.</p>
<p>Source: <a href="http://macenstein.com/default/archives/1185" target="_blank">macenstein.com</a><br />
<h3>Related Posts</h3>
<ul class="related_post">
<li><a href="http://www.pinoytux.com/jokes/macbook-air-commercial-parody" title="MacBook Air Commercial Parody">MacBook Air Commercial Parody (1)</a></li>
<li><a href="http://www.pinoytux.com/others/iphone-stumped-carrie-bradshaw" title="iPhone Stumped Carrie Bradshaw">iPhone Stumped Carrie Bradshaw (1)</a></li>
<li><a href="http://www.pinoytux.com/linux/vista-vs-mac-vs-linux-on-latest-trends" title="Vista vs Mac vs Linux on Latest Trends">Vista vs Mac vs Linux on Latest Trends (4)</a></li>
<li><a href="http://www.pinoytux.com/mac/pc-vs-mac-commercials" title="PC vs Mac Commercials">PC vs Mac Commercials (2)</a></li>
<li><a href="http://www.pinoytux.com/jokes/if-computers-were-human" title="If Computers Were Human&#8230;">If Computers Were Human&#8230; (7)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.pinoytux.com/hardware/apple-macbook-can-get-you-a-hot-date/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
