<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>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>Everything Linux</description>
	<lastBuildDate>Fri, 27 Jan 2012 05:59:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<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 class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pinoytux.com%2Flinux%2Ftip-add-user-and-generate-password-script&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 60px"></iframe></p>
<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 "$USER  $PASSWORD" |  mail -s "Your Account Info" $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  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://www.pinoytux.com/linux/how-to-reset-mysql-password" title="How To Reset MySQL Password">How To Reset MySQL Password</a> (1)</li><li><a href="http://www.pinoytux.com/linux/tip-detect-network-connectivity-in-bash" title="Tip: Detect Network Connectivity in Bash">Tip: Detect Network Connectivity in Bash</a> (0)</li><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</a> (0)</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</a> (3)</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</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.pinoytux.com/linux/tip-add-user-and-generate-password-script/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</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 class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pinoytux.com%2Fhardware%2Fcreative-cpu-designs&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 60px"></iframe></p>
<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></p>
<h3  class="related_post_title">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</a> (0)</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</a> (6)</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</a> (1)</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</a> (2)</li><li><a href="http://www.pinoytux.com/linux/diablo-3-coming-soon" title="Diablo 3 Coming Soon">Diablo 3 Coming Soon</a> (5)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.pinoytux.com/hardware/creative-cpu-designs/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</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 class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pinoytux.com%2Fhardware%2Fseagate-unveils-1tb-hard-disk-drive&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 60px"></iframe></p>
<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.</p>
<h3  class="related_post_title">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</a> (0)</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</a> (8)</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</a> (0)</li><li><a href="http://www.pinoytux.com/hardware/datapipe-server-migration" title="DataPipe Server Migration">DataPipe Server Migration</a> (0)</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</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.pinoytux.com/hardware/seagate-unveils-1tb-hard-disk-drive/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</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 class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pinoytux.com%2Fhardware%2Fspeak-up&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 60px"></iframe></p>
<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.</p>
<h3  class="related_post_title">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</a> (0)</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</a> (1)</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</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.pinoytux.com/hardware/speak-up/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</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 class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pinoytux.com%2Fhardware%2Fcreative-labs-threatens-third-party-driver-modder&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 60px"></iframe></p>
<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  class="related_post_title">Related Posts</h3><ul class="related_post"><li>Most Popular Posts</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.pinoytux.com/hardware/creative-labs-threatens-third-party-driver-modder/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

