<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Linhost</title>
	
	<link>http://linhost.info</link>
	<description>Tutorials and random explanations of how things work</description>
	<pubDate>Mon, 05 Jan 2009 11:34:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license><image><link>http://creativecommons.org/licenses/by/3.0/</link><url>http://creativecommons.org/images/public/somerights20.gif</url><title>Some Rights Reserved</title></image><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Linhost" type="application/rss+xml" /><item>
		<title>How to use Wget</title>
		<link>http://feeds.feedburner.com/~r/Linhost/~3/503300810/</link>
		<comments>http://linhost.info/2009/01/how-to-use-wget/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 11:34:26 +0000</pubDate>
		<dc:creator>dataninja</dc:creator>
		
		<category><![CDATA[how to]]></category>

		<category><![CDATA[knowledge base]]></category>

		<category><![CDATA[open source]]></category>

		<category><![CDATA[software]]></category>

		<category><![CDATA[tools]]></category>

		<category><![CDATA[cmd]]></category>

		<category><![CDATA[ftp]]></category>

		<category><![CDATA[HTTP]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[ssl]]></category>

		<category><![CDATA[wget]]></category>

		<guid isPermaLink="false">http://linhost.info/?p=2383</guid>
		<description><![CDATA[Consider this to be a crash course on How To use Wget. Wget is by far the best (intelligent) download manager ever created for the common client server protocols on the web (HTTP, HTTPS, FTP). The amount of configuration options offered by Wget is so immense that the use of the command line may be [...]]]></description>
			<content:encoded><![CDATA[<p>Consider this to be a crash course on <strong>How To</strong> use Wget. <strong>Wget</strong> is by far the best (intelligent) download manager ever created for the common client server protocols on the web (HTTP, HTTPS, FTP). The amount of configuration options offered by Wget is so immense that the use of the command line may be necessary in some cases. Here is a list of useful Wget commands. Ports of Wget for other platforms exist, if you want to see more configuration option open the terminal and use.</p>
<blockquote><pre>
wget --help
</pre>
</blockquote>
<h4>Basic use</h4>
<p>The simplest command Wget can offer. This will download the the file movie.mp4 from domain.com, notice how the the protocol HTTP had to specified can be changed for FTP.</p>
<blockquote><pre>wget http://domain.com/movie.mp4</pre>
</blockquote>
<h4>Resume interrupted download</h4>
<p>Let&#8217;s say you are downloading a 2 GB file then Internet connection dies for some reason Wget only managed to download 1.5 GB out of the 2 GB. The <strong>-c</strong> option can be used to tell Wget to resume the partially downloaded file, no need to download again.</p>
<blockquote><pre>wget -c http://domain.com/bigfile.iso</pre>
</blockquote>
<h4>Mirror a site</h4>
<p>Mirror or make a copy of a web site with the <strong>-m</strong> option. Self explanatory.</p>
<blockquote><pre>wget -m http://domain.com</pre>
</blockquote>
<h4>Bandwidth throttling</h4>
<p>Not everybody has FIOS (not me) for those who for example share a DSL or ISDN line are some what limited in the amount of bandwidth they can spare. Wget provides a way to limit the amount of bandwidth used, basically you can limit how much bandwidth it can use.</p>
<blockquote><pre>wget --limit-rate=20k http://domain.com/movie.mp4</pre>
</blockquote>
<h4>Increase re-tries</h4>
<p>When dealing with an Internet connection that suffers from high latency resulting in long download times the downloads will likely fail to complete. Instead of letting the unknown happen raise the default amount of retries (20) to say 30. Hopefully this will give you a higher margin to complete the download.</p>
<blockquote><pre>wget --tries=45 http://domain.com/movie.mp4</pre>
</blockquote>
<h4>Disguised as a web browser</h4>
<p>Some sites will not allow download managers alone to retrieve the files stored on their server, instead they expect to see a web browser like Mozilla or IE. Well this minor obstacle can be overcome by telling Wget to disguised it self as Mozilla to retrieve the file.</p>
<blockquote><pre>wget -c -U Mozilla http://domain.com/movie.mp4</pre>
</blockquote>
<h4>Download files from FTP server</h4>
<p>To download the same file from a FTP server just change the protocol when issuing the Wget command.</p>
<blockquote><pre>wget ftp://domain.com/movie.mp4</pre>
</blockquote>
<p>Let&#8217;s say the site happens to be password protected, Wget allows the user to login with credentials.</p>
<blockquote><pre>wget ftp://username:password@domain.com/path/to/file</pre>
</blockquote>
<p>Feel free to mix and match the options above nobody got any where by refusing to experiment.</p>
<p><strong>Interesting Links</strong><br />
<a href="http://en.wikipedia.org/wiki/Wget">http://en.wikipedia.org/wiki/Wget</a></p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="cs@m5it.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Beer for How to use Wget" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="" /><input type="image" src="http://linhost.info/log/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=cs@m5it.com&amp;currency_code=USD&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Beer+for+How+to+use+Wget" target="paypal">If you find any of the material on this site useful please take a moment to make a small donation.</a></p><img src="http://feeds.feedburner.com/~r/Linhost/~4/503300810" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linhost.info/2009/01/how-to-use-wget/feed/</wfw:commentRss>
		<feedburner:origLink>http://linhost.info/2009/01/how-to-use-wget/</feedburner:origLink></item>
		<item>
		<title>Recover deleted or formated data with PhotoRec</title>
		<link>http://feeds.feedburner.com/~r/Linhost/~3/502119533/</link>
		<comments>http://linhost.info/2009/01/recover-erased-or-formated-data-with-photorec/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 23:43:14 +0000</pubDate>
		<dc:creator>dataninja</dc:creator>
		
		<category><![CDATA[how to]]></category>

		<category><![CDATA[knowledge base]]></category>

		<category><![CDATA[open source]]></category>

		<category><![CDATA[software]]></category>

		<category><![CDATA[tools]]></category>

		<category><![CDATA[cg security]]></category>

		<category><![CDATA[data carvin]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[opensource]]></category>

		<category><![CDATA[photorec]]></category>

		<guid isPermaLink="false">http://linhost.info/?p=2287</guid>
		<description><![CDATA[Last updated : 01/04/09

Accidents happen for example a Flash drive that might have been accidentally formatted or certain files erased from a hard drive. The good news is that as long as the data is not overwritten there is a high margin for a successful recovery. After all the recycle bin is not a secure [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Last updated : 01/04/09</strong></p>
<div style='float:right;margin-top:0px;margin-left:5px;'><img src='http://www.cgsecurity.org/photorec_logo.png' /></a></div>
<p>Accidents happen for example a Flash drive that might have been accidentally formatted or certain files erased from a hard drive. The good news is that as long as the data is not overwritten there is a high margin for a successful recovery. After all the recycle bin is not a secure way of destroying data by any standards.</p>
<p>For this article I will be using <strong>PhotoRec</strong> by <a href="http://www.cgsecurity.org/wiki/Main_Page">CG Security</a>, Photorec has many advantages for example it&#8217;s open source, cross platform, configurable and is relatively light while operating. The entire operation will take some time depending in size of the drive to be inspected. Do not expect the files to recovered with the original file name, instead Photorec will assign them a number. The output data should be stored on a second drive, don&#8217;t even think about about using the same drive.</p>
<p>The recovery technique I use is called <strong>Data Carving</strong>, I&#8217;ll let the collective knowledge explain what it means.</p>
<p><em>Data Carving is a data recovery technique that allows for data with no file system allocation information to be extracted by identifying sectors and clusters belonging to the file. Data Carving usually searches through raw sectors looking for specific desired file signatures. The fact that there is no allocation information means that the investigator must specify a block size of data to carve out upon finding a matching file signature. This presents the challenge that the beginning of the file is still present and that there is (depending on how common the file signature is) a risk of many false hits. Also, data carving requires that the files recovered be located in sequential sectors (rather than fragmented) as there is no allocation information to point to fragmented file portions. This method can be time and resource intensive.</em></p>
<p><a href="http://en.wikipedia.org/wiki/Data_recovery">Excerpt from Wikipedia</a></p>
<h4>Download PhotoRec from CGSecurtity</h4>
<p>PhotoRec is part of the TestDisk Suite.<br />
<a href="http://www.cgsecurity.org/wiki/PhotoRec">http://www.cgsecurity.org/wiki/PhotoRec</a></p>
<h4>Step 1</h4>
<p>After PhotoRec starts you will be presented with all the drives PhotoRec was able to detect. For demonstration purposes I will be using a 2 GB flash drive.</p>
<blockquote><p>
Disk /dev/sdb - 2097 MB / 1999 MiB (RO) - OCZ ET1208AD
</p></blockquote>
<p>And press enter to proceed.</p>
<p><img src="http://lh3.ggpht.com/_fF0LO28FGYY/SV8HzictFtI/AAAAAAAAAWU/A3nNWgE7d0c/s800/001.jpg"  width="497" height="339"></p>
<h4>Step 2</h4>
<p>Select the partition table in my case it&#8217;s.</p>
<blockquote><p>
[ Intel ] intel/PC partition
</p></blockquote>
<p><img src="http://lh3.ggpht.com/_fF0LO28FGYY/SV8H2xE8U8I/AAAAAAAAAWY/tit9tbP7CNw/s800/002.jpg"  width="497" height="339"></p>
<h4>Step 3</h4>
<p>In this case I want to inspect the whole disk for data.</p>
<blockquote><p>
D No partition        0    0    1    254 245 54  4095999 [Whole disk]
</p></blockquote>
<p><img src="http://lh3.ggpht.com/_fF0LO28FGYY/SV8H6gzZw3I/AAAAAAAAAWc/7u-sgOvCrGM/s800/003.jpg"  width="497" height="339"></p>
<h4>Step 4</h4>
<p>If you noticed in the bottom of the terminal you are also presented with the following options.</p>
<blockquote><p>
[Options]  [File Opt]
</p></blockquote>
<p>You can select<strong> [Options]</strong> or <strong>[File Opt]</strong> to see the available file extensions that PhotoRec can recover, you can also unchecked the file extensions you don&#8217;t want to recover. Or configure how persistent PhotoRec should be.</p>
<p><img src="http://lh5.ggpht.com/_fF0LO28FGYY/SV8H-a-EHlI/AAAAAAAAAWg/Rm8kmBkuyXc/s800/004.jpg"  width="497" height="339"></p>
<p><img src="http://lh4.ggpht.com/_fF0LO28FGYY/SV8IBnXKfoI/AAAAAAAAAWk/mGDQwuAEox4/s800/005.jpg"  width="497" height="339"></p>
<h4>Step 5</h4>
<p>Now specify the file system on which PhotoRec will attempt to recover the data from. My USB drive was formatted to FAT32.</p>
<blockquote><p>
[ Other ]    FAT/NTFS/HFS+/ReiserFS/&#8230;
</p></blockquote>
<p><img src="http://lh3.ggpht.com/_fF0LO28FGYY/SV8IHkWdWfI/AAAAAAAAAWo/N6SoondG-Xk/s800/006.jpg"  width="497" height="339"></p>
<h4>Step 6</h4>
<p>PhotoRec is now presenting you with the option of choosing the default output directory <strong>/home/user</strong> or your own directory. You might want to create a directory just for the recovery which is usually spread across several directories.</p>
<p><img src="http://lh3.ggpht.com/_fF0LO28FGYY/SV8IKx9gizI/AAAAAAAAAWs/PK2oG0j0ftU/s800/007.jpg"  width="497" height="339"></p>
<h4>Step 7</h4>
<p>After selecting the output directory the recovery process will start, PhotoRec will let you know of the remaining time and number of files found.</p>
<p><img src="http://lh6.ggpht.com/_fF0LO28FGYY/SV8IO_grNjI/AAAAAAAAAWw/rrUC4DY99xQ/s800/008.jpg"  width="497" height="339"></p>
<p>The recovery process is done. All recovered files are enumerated.</p>
<p><img src="http://lh3.ggpht.com/_fF0LO28FGYY/SV8IR_SMeaI/AAAAAAAAAW0/APSkNT0zDJQ/s800/009.jpg"  width="497" height="339"></p>
<h4>Output</h4>
<p>Example of the recovery, all data is spread across multiple directories. The recovered files are renamed.</p>
<p><img src="http://lh4.ggpht.com/_fF0LO28FGYY/SV8IVvauYPI/AAAAAAAAAW4/Lrn67GyqeyA/s800/010.jpg" /></p>
<p><img src="http://lh3.ggpht.com/_fF0LO28FGYY/SV8IaGm7k7I/AAAAAAAAAW8/xedgooB9-CY/s800/011.jpg" /></p>
<p>Not all is lost sometimes most of the data can be recovered. Keep in mind some media files may be beyond recovery. Always back up your data and there will be no need for a recovery, otherwise I hope this article helps.</p>
<p><a href="http://en.wikipedia.org/wiki/Data_recovery">http://en.wikipedia.org/wiki/Data_recovery</a></p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="cs@m5it.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Beer for Recover deleted or formated data with PhotoRec" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="" /><input type="image" src="http://linhost.info/log/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=cs@m5it.com&amp;currency_code=USD&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Beer+for+Recover+deleted+or+formated+data+with+PhotoRec" target="paypal">If you find any of the material on this site useful please take a moment to make a small donation.</a></p><img src="http://feeds.feedburner.com/~r/Linhost/~4/502119533" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linhost.info/2009/01/recover-erased-or-formated-data-with-photorec/feed/</wfw:commentRss>
		<feedburner:origLink>http://linhost.info/2009/01/recover-erased-or-formated-data-with-photorec/</feedburner:origLink></item>
		<item>
		<title>Open source tools I can’t work without</title>
		<link>http://feeds.feedburner.com/~r/Linhost/~3/501511124/</link>
		<comments>http://linhost.info/2009/01/open-source-tools-i-cant-work-without/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 05:13:55 +0000</pubDate>
		<dc:creator>dataninja</dc:creator>
		
		<category><![CDATA[knowledge base]]></category>

		<category><![CDATA[open source]]></category>

		<category><![CDATA[software]]></category>

		<category><![CDATA[tools]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[sourceforge]]></category>

		<guid isPermaLink="false">http://linhost.info/?p=2234</guid>
		<description><![CDATA[Whether it&#8217;s for recovery or day to day activities open source has a lot to offer. From simple entertainment software to data recovery there are a lot of options available in the Internet. Here is a list of what I commonly use to get the job done, if you have any recommendation feel free to [...]]]></description>
			<content:encoded><![CDATA[<p>Whether it&#8217;s for recovery or day to day activities open source has a lot to offer. From simple entertainment software to data recovery there are a lot of options available in the Internet. Here is a list of what I commonly use to get the job done, if you have any recommendation feel free to comment.</p>
<p><a href="http://www.cgsecurity.org/wiki/TestDisk"><br />
<h4>Testdisk</h4>
<p></a></p>
<div style='float:right;margin-top:0px;margin-left:5px;'><img src='http://www.cgsecurity.org/testdisk_doc/testdisklogo-clear-100.gif' border='0' /></a></div>
<p>Sometimes accidents happen and partitions are deleted or the system may become un-bootable for some reason. Useful for those nasty Windows viruses which may damage the partition table.</p>
<p><a href="http://www.cgsecurity.org/wiki/PhotoRec"><br />
<h4>PhotoRec</h4>
<p></a></p>
<p>PhotoRec was design to recover data from storage media like hard disk and Flash drives alike that may have been accidentally formated or deleted. PhotoRec aims to recover common formats like PDF, HTML MP3 to name a few. When doing a recovery you might only want to recover the actual files that contain the data not the software it used to run on.</p>
<p><a href="http://www.dban.org/"><br />
<h4>DBAN</h4>
<p></a></p>
<p>By far the best tool for those who want to re-use hard drives which may or may not contain sensitive data. Instead of just erasing data DBAN rewrites random data generated by Mersenne twister or ISAAC on the hard drive multiple times. How secure it is?, well it holds several official certifications from government agencies.</p>
<p><a href="http://ophcrack.sourceforge.net/"><br />
<h4>Ophcrack</h4>
<p></a></p>
<div style='float:right;margin-top:0px;margin-left:5px;'><img src='http://ophcrack.sourceforge.net/logo.png' border='0' /></a></div>
<p>Useful for when the user forgets his or her password and has no other way of obtaining the password to the system. It beats other commercial tools I have used previously.</p>
<p><a href="http://gparted.sourceforge.net/"><br />
<h4>GParted</h4>
<p></a></p>
<div style='float:right;margin-top:0px;margin-left:5px;'><img src='http://lh6.ggpht.com/_fF0LO28FGYY/SV7sgP17gqI/AAAAAAAAAVE/WqRkgzlRMi0/s144/GParted-2.jpg' border='0' /></a></div>
<p>For those who boot into multiple operating systems and need to re-size the primary partition or have to re-size the partition where Windows resides. Some PC manufacturers do not provide an actual CD/DVD instead the OS is install in to a partition.</p>
<p><a href="http://unetbootin.sourceforge.net/"><br />
<h4>UNetbootin</h4>
<p></a></p>
<p>Some tools are offered in the form of an ISO for a reason meaning they have to burned in to a CD/DVD. UNetbootin allows a USB drive to become bootable reducing the amount of CD/DVD&#8217;s I have to burn (waste). UNetbootin  removes the hassle of having to make the ISO bootable, just point to the ISO and UNetbootin does the rest.</p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="cs@m5it.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Beer for Open source tools I can't work without" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="" /><input type="image" src="http://linhost.info/log/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=cs@m5it.com&amp;currency_code=USD&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Beer+for+Open+source+tools+I+can't+work+without" target="paypal">If you find any of the material on this site useful please take a moment to make a small donation.</a></p><img src="http://feeds.feedburner.com/~r/Linhost/~4/501511124" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linhost.info/2009/01/open-source-tools-i-cant-work-without/feed/</wfw:commentRss>
		<feedburner:origLink>http://linhost.info/2009/01/open-source-tools-i-cant-work-without/</feedburner:origLink></item>
		<item>
		<title>CentOS 4.7 Server VM is now avaiable</title>
		<link>http://feeds.feedburner.com/~r/Linhost/~3/500779666/</link>
		<comments>http://linhost.info/2009/01/centos-47-server-vm-is-now-avaiable/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 07:50:54 +0000</pubDate>
		<dc:creator>dataninja</dc:creator>
		
		<category><![CDATA[community]]></category>

		<category><![CDATA[47]]></category>

		<category><![CDATA[CentOS]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://linhost.info/2009/01/centos-47-server-vm-is-now-avaiable/</guid>
		<description><![CDATA[Yet another addition to the library of virtual machines offered by Linhost.info, this time it&#8217;s CentOS 4.7 Server compressed to a size of 286 MB and available via HTTP. 
 Download the virtual machine
If you find any of the material on this site useful please take a moment to make a small donation.]]></description>
			<content:encoded><![CDATA[<p>Yet another addition to the library of virtual machines offered by Linhost.info, this time it&#8217;s CentOS 4.7 Server compressed to a size of 286 MB and available via HTTP. </p>
<p> <a href="/vmware/">Download the virtual machine</a></p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="cs@m5it.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Beer for CentOS 4.7 Server VM is now avaiable" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="" /><input type="image" src="http://linhost.info/log/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=cs@m5it.com&amp;currency_code=USD&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Beer+for+CentOS+4.7+Server+VM+is+now+avaiable" target="paypal">If you find any of the material on this site useful please take a moment to make a small donation.</a></p><img src="http://feeds.feedburner.com/~r/Linhost/~4/500779666" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linhost.info/2009/01/centos-47-server-vm-is-now-avaiable/feed/</wfw:commentRss>
		<feedburner:origLink>http://linhost.info/2009/01/centos-47-server-vm-is-now-avaiable/</feedburner:origLink></item>
		<item>
		<title>Convert videos with Mencoder and keep the original quality</title>
		<link>http://feeds.feedburner.com/~r/Linhost/~3/500661536/</link>
		<comments>http://linhost.info/2009/01/convert-videos-with-mencoder-and-keep-the-original-quality/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 03:48:20 +0000</pubDate>
		<dc:creator>dataninja</dc:creator>
		
		<category><![CDATA[community]]></category>

		<category><![CDATA[knowledge base]]></category>

		<category><![CDATA[open source]]></category>

		<category><![CDATA[software]]></category>

		<category><![CDATA[tools]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[mencoder]]></category>

		<category><![CDATA[mov]]></category>

		<category><![CDATA[mp4]]></category>

		<guid isPermaLink="false">http://linhost.info/?p=2208</guid>
		<description><![CDATA[I received several promo videos in the form of .mov containers which I don&#8217;t tend to use, it was clear I had to change the container to .mp4 which is what I actually use. After using Mencoder to make the changes I noticed some severe loss of quality in the video. After digging around on [...]]]></description>
			<content:encoded><![CDATA[<p>I received several promo videos in the form of .mov containers which I don&#8217;t tend to use, it was clear I had to change the container to .mp4 which is what I actually use. After using Mencoder to make the changes I noticed some severe loss of quality in the video. After digging around on Google I found the following combination that gave the best quality. Results may vary.</p>
<blockquote><p>
mencoder filename.mov -ovc xvid -oac mp3lame -xvidencopts fixed_quant=4 -o output.mp4
</p></blockquote>
<p>Basically Mencoder was told to obtain the best quaility with fixed_quant=4. The quaility level ranges from 1-31. Remember because we changed the container and then told it to keep the highest quality avaiable the file will result in a larger output.</p>
<p>Example :</p>
<ul>
<li>Original file promo.mov <strong>63.3 MB</strong></li>
<li>Encoded file promo.mp4 <strong>51.6 MB</strong></ul>
</li>
</ul>
<p>It should not be that hard to make changes the line above to fit your needs.</p>
<p>Sources :</p>
<p><a href="http://en.linuxreviews.org/HOWTO_Convert_video_files">http://en.linuxreviews.org/HOWTO_Convert_video_files</a><br />
<a href="http://www.linux.com/feature/121385">http://www.linux.com/feature/121385</a><br />
<a href="http://www.mplayerhq.hu/DOCS/HTML/en/menc-feat-selecting-codec.html">http://www.mplayerhq.hu/DOCS/HTML/en/menc-feat-selecting-codec.html</a></p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="cs@m5it.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Beer for Convert videos with Mencoder and keep the original quality" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="" /><input type="image" src="http://linhost.info/log/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=cs@m5it.com&amp;currency_code=USD&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Beer+for+Convert+videos+with+Mencoder+and+keep+the+original+quality" target="paypal">If you find any of the material on this site useful please take a moment to make a small donation.</a></p><img src="http://feeds.feedburner.com/~r/Linhost/~4/500661536" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linhost.info/2009/01/convert-videos-with-mencoder-and-keep-the-original-quality/feed/</wfw:commentRss>
		<feedburner:origLink>http://linhost.info/2009/01/convert-videos-with-mencoder-and-keep-the-original-quality/</feedburner:origLink></item>
		<item>
		<title>Happy new year</title>
		<link>http://feeds.feedburner.com/~r/Linhost/~3/499825109/</link>
		<comments>http://linhost.info/2008/12/happy-new-year/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 00:02:54 +0000</pubDate>
		<dc:creator>dataninja</dc:creator>
		
		<category><![CDATA[community]]></category>

		<category><![CDATA[general]]></category>

		<category><![CDATA[2009]]></category>

		<category><![CDATA[new year]]></category>

		<guid isPermaLink="false">http://linhost.info/?p=2201</guid>
		<description><![CDATA[
I wish you all a happy 2009, it&#8217;s a new year to start new projects and take on new adventures. I wish the best to all of you and thank you for reading this blog. Let&#8217;s improve on 2009 and make the best out of it. Again happy new year and take care.
I really mean [...]]]></description>
			<content:encoded><![CDATA[<div style='float:right;margin-top:0px;margin-left:5px;'><img src='/download/images/logo/tux.png' border='0' /></a></div>
<p>I wish you all a happy 2009, it&#8217;s a new year to start new projects and take on new adventures. I wish the best to all of you and thank you for reading this blog. Let&#8217;s improve on 2009 and make the best out of it. Again happy new year and take care.</p>
<p>I really mean it.</p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="cs@m5it.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Beer for Happy new year" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="" /><input type="image" src="http://linhost.info/log/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=cs@m5it.com&amp;currency_code=USD&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Beer+for+Happy+new+year" target="paypal">If you find any of the material on this site useful please take a moment to make a small donation.</a></p><img src="http://feeds.feedburner.com/~r/Linhost/~4/499825109" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linhost.info/2008/12/happy-new-year/feed/</wfw:commentRss>
		<feedburner:origLink>http://linhost.info/2008/12/happy-new-year/</feedburner:origLink></item>
		<item>
		<title>CentOS 5.2 net install</title>
		<link>http://feeds.feedburner.com/~r/Linhost/~3/498259408/</link>
		<comments>http://linhost.info/2008/12/centos-52-net-install/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 03:08:31 +0000</pubDate>
		<dc:creator>dataninja</dc:creator>
		
		<category><![CDATA[how to]]></category>

		<category><![CDATA[knowledge base]]></category>

		<category><![CDATA[software]]></category>

		<category><![CDATA[CentOS]]></category>

		<category><![CDATA[x86_64]]></category>

		<guid isPermaLink="false">http://linhost.info/?p=2129</guid>
		<description><![CDATA[
Recently I noticed that for the first time CentOS was available in the form of a network installation. Which means instead of downloading the whole operating system only a small ISO (less than 8 MB) has to be downloaded which is enough to boot from and connect to the remote CentOS servers. No need to [...]]]></description>
			<content:encoded><![CDATA[<div style='float:right;margin-top:0px;margin-left:5px;'><img src='/download/images/logo/tux.png' border='0' /></a></div>
<p>Recently I noticed that for the first time CentOS was available in the form of a network installation. Which means instead of downloading the whole operating system only a small ISO (less than 8 MB) has to be downloaded which is enough to boot from and connect to the remote CentOS servers. No need to download 4 GB&#8217;s of data. It&#8217;s also the perfect solution for multiple internal deployments. The whole process may take around 30 to 40 minutes.</p>
<p>Remember the available architectures are i386 and x86_64.</p>
<p><strong>CentOS mirror :</strong> <a href="http://mirror.centos.org/centos/5/isos/">http://mirror.centos.org/centos/5/isos/</a></p>
<p>After you burn the ISO in to a CD/DVD we can start the network installation.</p>
<h4>Network installation</h4>
<p>For the <strong>Installation Method</strong> choose HTTP to fetch the remaining packages from the CentOS servers.</p>
<p><a href="http://picasaweb.google.com/lh/photo/WZq6TvWn1hSlpv-l7Cv7Jw?authkey=jqavTLwxDik&#038;feat=embedwebsite"><img src="http://lh3.ggpht.com/_fF0LO28FGYY/SVhm4qmYv9I/AAAAAAAAAUY/IYn-IGnvGJ4/s400/001.jpg" /></a></p>
<h4>Configure TCP/IP</h4>
<p>We will start the installation by choosing DHCP in order to grab an IP from the local area network.</p>
<p><a href="http://picasaweb.google.com/lh/photo/-GwdYpqrq-RIoUkNu9c3WA?authkey=jqavTLwxDik&#038;feat=embedwebsite"><img src="http://lh5.ggpht.com/_fF0LO28FGYY/SVhm78H1cqI/AAAAAAAAAUc/r1rKrQftQ3k/s400/002.jpg" /></a></p>
<h4>HTTP setup</h4>
<p>Now we need to indicate where the CentOS files are located on the CentOS servers, provide the following information when asked.</p>
<blockquote><p>
Web site name : mirror.centos.org<br />
CentOS directory : centos/5.2/os/i386
</p></blockquote>
<p>Press OK to start fetching the files from the internet.</p>
<p><a href="http://picasaweb.google.com/lh/photo/TSmqXc_b9V7GX_ee03GyOQ?authkey=jqavTLwxDik&#038;feat=embedwebsite"><img src="http://lh5.ggpht.com/_fF0LO28FGYY/SVhnC4CR1cI/AAAAAAAAAUg/Xl_jro_G-nI/s400/003.jpg" /></a></p>
<p>Now let the magic begin.</p>
<p><a href="http://picasaweb.google.com/lh/photo/oQLY-WOp-YupnBRF4CAp2A?authkey=jqavTLwxDik&#038;feat=embedwebsite"><img src="http://lh6.ggpht.com/_fF0LO28FGYY/SVhnGxpyCyI/AAAAAAAAAUk/OsdHja_mtaE/s400/004.jpg" /></a></p>
<p>The hard work is done, proceed to customise the CentOS installation like usual by selecting the packages you want install. This the best and most efficient way of installing CentOS.</p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="cs@m5it.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Beer for CentOS 5.2 net install" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="" /><input type="image" src="http://linhost.info/log/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=cs@m5it.com&amp;currency_code=USD&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Beer+for+CentOS+5.2+net+install" target="paypal">If you find any of the material on this site useful please take a moment to make a small donation.</a></p><img src="http://feeds.feedburner.com/~r/Linhost/~4/498259408" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linhost.info/2008/12/centos-52-net-install/feed/</wfw:commentRss>
		<feedburner:origLink>http://linhost.info/2008/12/centos-52-net-install/</feedburner:origLink></item>
		<item>
		<title>Create a virtual machine from an ISO with VMWare Player</title>
		<link>http://feeds.feedburner.com/~r/Linhost/~3/496851052/</link>
		<comments>http://linhost.info/2008/12/create-a-virtual-machine-from-an-iso-with-vmware-player/#comments</comments>
		<pubDate>Sun, 28 Dec 2008 08:00:33 +0000</pubDate>
		<dc:creator>dataninja</dc:creator>
		
		<category><![CDATA[how to]]></category>

		<category><![CDATA[software]]></category>

		<category><![CDATA[tools]]></category>

		<category><![CDATA[ISO]]></category>

		<category><![CDATA[virtual machine]]></category>

		<category><![CDATA[vmware]]></category>

		<category><![CDATA[vmware player]]></category>

		<guid isPermaLink="false">http://linhost.info/?p=2083</guid>
		<description><![CDATA[
Yeah, you heard me no CD/DVD burning in here. VMWare player lacks the ability to create new virtual machines by it self, this problem can be overcomed by using third party solutions or a blank virtual machine. However one small feature found on VMWare Workstation still missing which is the ability to install the operating [...]]]></description>
			<content:encoded><![CDATA[<div style='float:right;margin-top:0px;margin-left:5px;'><img src='/download/images/logo/vmware.png' border='0' /></a></div>
<p>Yeah, you heard me no CD/DVD burning in here. VMWare player lacks the ability to create new virtual machines by it self, this problem can be overcomed by using third party solutions or a blank virtual machine. However one small feature found on VMWare Workstation still missing which is the ability to install the operating system from ISO without having to burn in it into a CD/DVD first. Mostly it&#8217;s about reducing recordable media waste.</p>
<p>You can download a blank virtual machine ready for installation from <a href="http://linhost.info/?download=Blank%20Virtual%20Machine">this link</a>.</p>
<p>You might also find this article interesting : <a href="http://linhost.info/2008/12/how-to-create-a-virtual-machine-with-vmware-player/">How to Create a virtual machine with VMWare Player</a></p>
<h4>Install from a ISO</h4>
<p>In the case of a blank virtual machine you need to add the following values and indicate the location of the ISO.</p>
<p>Add the following line.</p>
<blockquote><p>
ide1:0.fileName = &#8220;locationofiso.iso&#8221;
</p></blockquote>
<p>Locate and change the following line.</p>
<blockquote><p>
ide1:0.deviceType = &#8220;cdrom-raw&#8221;
</p></blockquote>
<p>To.</p>
<blockquote><p>
ide1:0.deviceType = &#8220;cdrom-image&#8221;
</p></blockquote>
<p>Close and save the configuration file. Now start the virtual machine and proceed with the regular installation.</p>
<p>After the installation is done change the values back to.</p>
<blockquote><p>
ide1:0.fileName = &#8220;auto detect&#8221;<br />
ide1:0.deviceType = &#8220;cdrom-raw&#8221;
</p></blockquote>
<p>Save and enjoy your virtual machine.</p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="cs@m5it.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Beer for Create a virtual machine from an ISO with VMWare Player" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="" /><input type="image" src="http://linhost.info/log/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=cs@m5it.com&amp;currency_code=USD&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Beer+for+Create+a+virtual+machine+from+an+ISO+with+VMWare+Player" target="paypal">If you find any of the material on this site useful please take a moment to make a small donation.</a></p><img src="http://feeds.feedburner.com/~r/Linhost/~4/496851052" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linhost.info/2008/12/create-a-virtual-machine-from-an-iso-with-vmware-player/feed/</wfw:commentRss>
		<feedburner:origLink>http://linhost.info/2008/12/create-a-virtual-machine-from-an-iso-with-vmware-player/</feedburner:origLink></item>
		<item>
		<title>Measure network speeds with Iperf</title>
		<link>http://feeds.feedburner.com/~r/Linhost/~3/495959150/</link>
		<comments>http://linhost.info/2008/12/test-network-speeds-with-iperf/#comments</comments>
		<pubDate>Sat, 27 Dec 2008 01:05:57 +0000</pubDate>
		<dc:creator>dataninja</dc:creator>
		
		<category><![CDATA[how to]]></category>

		<category><![CDATA[tools]]></category>

		<category><![CDATA[iperf]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[network]]></category>

		<guid isPermaLink="false">http://linhost.info/?p=2030</guid>
		<description><![CDATA[
It happens to all of us, sometimes segments of the network may become unusable or slow. The documentation created by the previous administrator may say Gigabit ethernet is supported or enabled across the network, yet only a fraction of the bandwidth is available.
Iperf can measure the throughput of a network, Iperf operates in a client [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://picasaweb.google.com/lh/photo/q7ZyANJiivnP8YMttZaw8w?authkey=altOTnHkmQI&#038;feat=embedwebsite"><img src="http://lh4.ggpht.com/_fF0LO28FGYY/SVV0d5wrBGI/AAAAAAAAAUQ/s2XSj77g1Zg/s800/iperf.jpg" /></a></p>
<p>It happens to all of us, sometimes segments of the network may become unusable or slow. The documentation created by the previous administrator may say Gigabit ethernet is supported or enabled across the network, yet only a fraction of the bandwidth is available.</p>
<p><strong>Iperf</strong> can measure the throughput of a network, Iperf operates in a client server mode. Best of all it&#8217;s open source and cross platform. Iperf is the perfect tool to measure wired and wireless networks, bandwidth is measured through TCP tests.</p>
<h4>Iperf installation</h4>
<p>For the network test I will install Iperf on two systems, one will act as the server and the other as the client. Iperf is available on the Ubuntu repositories.</p>
<blockquote><p>
sudo apt-get install iperf
</p></blockquote>
<h4>Iperf server</h4>
<p>Now turn one of the systems in to the Iperf server.</p>
<blockquote><p>
iperf -s
</p></blockquote>
<p>Iperf server output.</p>
<blockquote><p>
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Server listening on TCP port 5001<br />
TCP window size: 85.3 KByte (default)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;
</p></blockquote>
<h4>Iperf client</h4>
<p>On the Iperf client issue the following command to connect with the Iperf server and initiate the test.</p>
<blockquote><p>
iperf -c 192.168.1.103
</p></blockquote>
<p>Client side output.</p>
<blockquote><p>
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Client connecting to 192.168.1.103, TCP port 5001<br />
TCP window size: 16.0 KByte (default)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
[  3] local 192.168.1.101 port 59291 connected with 192.168.1.103 port 5001<br />
[ ID] Interval       Transfer     Bandwidth<br />
[  3]  0.0-10.0 sec    113 MBytes  94.5 Mbits/sec
</p></blockquote>
<p>You can see that on this test Iperf successfully transfered 113 MB of data at a network speed of 94.2 Mbits/sec.</p>
<p>You can also tell Iperf to wait before giving you the network results, by adding <strong>-t 30</strong> at the end of the command. This will tell Iperf to wait and in the mean time transferer more data across the network.</p>
<p><em>Interesting links</em><br />
<a href="http://sourceforge.net/projects/iperf">http://sourceforge.net/projects/iperf</a></p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="cs@m5it.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Beer for Measure network speeds with Iperf" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="" /><input type="image" src="http://linhost.info/log/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=cs@m5it.com&amp;currency_code=USD&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Beer+for+Measure+network+speeds+with+Iperf" target="paypal">If you find any of the material on this site useful please take a moment to make a small donation.</a></p><img src="http://feeds.feedburner.com/~r/Linhost/~4/495959150" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linhost.info/2008/12/test-network-speeds-with-iperf/feed/</wfw:commentRss>
		<feedburner:origLink>http://linhost.info/2008/12/test-network-speeds-with-iperf/</feedburner:origLink></item>
		<item>
		<title>Temperature monitoring with Lm-sensors on Ubuntu</title>
		<link>http://feeds.feedburner.com/~r/Linhost/~3/495339750/</link>
		<comments>http://linhost.info/2008/12/temperature-monitoring-with-lm-sensors-on-ubuntu/#comments</comments>
		<pubDate>Fri, 26 Dec 2008 05:20:08 +0000</pubDate>
		<dc:creator>dataninja</dc:creator>
		
		<category><![CDATA[how to]]></category>

		<category><![CDATA[tools]]></category>

		<category><![CDATA[lm-sensors]]></category>

		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://linhost.info/?p=1995</guid>
		<description><![CDATA[I tend to do a lot of video encoding which stresses my workstation a bit, also not long ago I changed motherboards. Well that meant I had to remove the CPU and add a new layer of thermal compound. I did measure the temperature with built-in BIOS utility but I still had question regarding the [...]]]></description>
			<content:encoded><![CDATA[<p>I tend to do a lot of video encoding which stresses my workstation a bit, also not long ago I changed motherboards. Well that meant I had to remove the CPU and add a new layer of thermal compound. I did measure the temperature with built-in BIOS utility but I still had question regarding the actual CPU temperature while under normal use.</p>
<p><a href="http://picasaweb.google.com/lh/photo/C7ThcM19kfd2wbBabVPoGw?authkey=NLlgk6a32ys&#038;feat=embedwebsite"><img src="http://lh5.ggpht.com/_fF0LO28FGYY/SVRg_C44d2I/AAAAAAAAAS4/NqZsjpocKpM/s800/panel%2520applet.jpg" /></a></p>
<p>Essentially all I had to do was install <strong>lm-sensors</strong> and the <strong>GNOME sensor applet</strong>. Keep in mind for this article I used a DG31GL Intel Motherboard and a Q6600 Intel processor, all sensors were detected without a problem. Results may vary depending on the hardware.</p>
<h4>Installation</h4>
<p>First we need to install the vital lm-sensors and the GNOME applets that will later present the information on the desktop.</p>
<div class="quickcodenoclick"><code><br />
sudo apt-get install lm-sensors sensors-applet hddtemp<br />
</code></div>
<p>Next we do a sensor detection (results will vary based on hardware support).</p>
<div class="quickcodenoclick"><code><br />
sudo sensors-detect<br />
</code></div>
<p>After the sensor detection was done you will have to answer a series of questions, accepting the default works just fine except the last question. Don&#8217;t forget to answer <strong>Yes</strong> on the last question.</p>
<div class="quickcodenoclick"><code></p>
<p>I will now generate the commands needed to load the required modules.<br />
Just press ENTER to continue:</p>
<p>To load everything that is needed, add this to /etc/modules:</p>
<p>#----cut here----<br />
# Chip drivers<br />
w83627ehf<br />
coretemp<br />
#----cut here----</p>
<p>Do you want to add these lines automatically? (yes/NO)yes</p>
<p></code></div>
<p>The detection was successful now we have to answer <strong>Yes</strong> in order to add the new sensors to <strong>/etc/modules</strong>, later on it will allow the GNOME applet to fetch the required data for display.</p>
<h4>Add the GNOME applet</h4>
<p>To add the applet responsible for displaying the data go to.</p>
<p>Right click on the top panel > click on <strong>Add to Panel.</strong></p>
<p>Search for <strong>Hardware Sensors Monitor</strong> > click on <strong>Add.</strong></p>
<p>The applet will display the temperature data on the system, processor, hard drive and AUX Temp. Not all of the data is necessary or useful, if you like to change what&#8217;s displayed.</p>
<p>Right click on the applet and select <strong>Preferences</strong>. Move on to the <strong>Sensors tab</strong> and check or unchecked what you don&#8217;t like.</p>
<p><a href="http://picasaweb.google.com/lh/photo/u-uo9_qgGaYLIqHfeAi50g?authkey=NLlgk6a32ys&#038;feat=embedwebsite"><img src="http://lh6.ggpht.com/_fF0LO28FGYY/SVRcPYAQI4I/AAAAAAAAASY/WylDHJXcYPM/s800/sensor%2520applet.jpg" /></a></p>
<p><strong>Links of interest</strong><br />
<a href="http://sensors-applet.sourceforge.net/index.php?content=screenshots">http://sensors-applet.sourceforge.net</a><br />
<a href="http://www.lm-sensors.org/">http://www.lm-sensors.org/</a></p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="cs@m5it.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Beer for Temperature monitoring with Lm-sensors on Ubuntu" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="" /><input type="image" src="http://linhost.info/log/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=cs@m5it.com&amp;currency_code=USD&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Beer+for+Temperature+monitoring+with+Lm-sensors+on+Ubuntu" target="paypal">If you find any of the material on this site useful please take a moment to make a small donation.</a></p><img src="http://feeds.feedburner.com/~r/Linhost/~4/495339750" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linhost.info/2008/12/temperature-monitoring-with-lm-sensors-on-ubuntu/feed/</wfw:commentRss>
		<feedburner:origLink>http://linhost.info/2008/12/temperature-monitoring-with-lm-sensors-on-ubuntu/</feedburner:origLink></item>
	</channel>
</rss>
