<?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>gHacks technology news &#187; Hardware</title>
	<atom:link href="http://www.ghacks.net/category/hardware/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ghacks.net</link>
	<description>A technology blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<lastBuildDate>Mon, 23 Nov 2009 14:06:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Let Munin monitor your servers and network</title>
		<link>http://www.ghacks.net/2009/11/05/let-munin-monitor-your-servers-and-network/</link>
		<comments>http://www.ghacks.net/2009/11/05/let-munin-monitor-your-servers-and-network/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 19:50:59 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Network Monitoring]]></category>
		<category><![CDATA[system monitoring]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[web monitoring]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=18152</guid>
		<description><![CDATA[If you are looking for an easy to install, configure, and use systems monitor, look no further. The Munin is a network/systems monitor that presents all its data is easy to read graphs. Munin is setup as a server/client (or node) which makes this system very flexible. Munin also offers an extensive plugins library that [...]]]></description>
			<content:encoded><![CDATA[<p>If you are looking for an easy to install, configure, and use systems monitor, look no further. The Munin is a network/systems monitor that presents all its data is easy to read graphs. Munin is setup as a server/client (or node) which makes this system very flexible. Munin also offers an extensive plugins library that extends that flexibility to include the monitoring of many various systems and even applications.</p>
<p>And what&#8217;s best is you don&#8217;t have to jump through a bunch of hoops to get munin up and running. In this tutorial you will see how to get your Munin server up and running and monitoring your system and a sample client configuration that will monitor a client node. As you might expect, I will continue to build upon the Ubuntu Server series and install Munin on a Ubuntu 9.04 installation. NOTE: This same installation will work on Ubuntu 9.10 as well.<span id="more-18152"></span><strong>Server installation/configuration</strong></p>
<p>Installing Munin on the Ubunter server is simple. Open up a terminal window (or log into your server console) and issue the command:</p>
<p><em>sudo apt-get install munin </em></p>
<p>The above command will also install <em>munin-node</em> which is the client-side software. This is fine, so let it happen. Upon installation Munin will install the configuration files in <strong>/etc/munin,</strong> the executable in <strong>/etc/init.d/, </strong>and the web files in <strong>/var/www/munin</strong>.</p>
<p>The first thing that will need to be done is to configure your server correctly. Open up the <strong>/etc/munin/munin.conf</strong> file and look for this section:</p>
<p><code>dbdir     /var/lib/munin<br />
htmldir    /var/www/munin/<br />
logdir     /var/log/munin<br />
rundir     /var/run/munin</code></p>
<p>Out of the box, this will work just fine.  But if you have any other needs that would dictate any of these directives change, change them here.</p>
<p>The next section to look for is this:</p>
<p><code># a simple host tree<br />
[localhost.localdomain]<br />
address 127.0.0.1<br />
use_node_name yes</code></p>
<p>What the above section does is monitor the server Munin is installed on. This configuration only needs to change if you have specific requirements. Also, if you need to add a client (node), this is where you add it.</p>
<p>In order to instruct Munin to monitor a remote machine you need to add a new host tree. Say, for instance, you want to monitor a machine on the IP addres 192.168.1.150. To do this you would add:</p>
<p><code>[MACHINE NAME]<br />
address 192.168.1.150<br />
use_node_name yes</code></p>
<p>Where MACHINE NAME is a name to indicate the job (or user, or department, etc) of the machine.</p>
<p>Once you have these configurations and save the file. Now to move on to the <strong>/etc/munin/munin-node.conf</strong> file. There is only one configuration you would need to add in order to monitor nodes. Look for this line:</p>
<p><em>allow ^127\.0\.0\.1$</em></p>
<p>Beneath this line you will want to add (in order to enable our new node):</p>
<p><em>allow ^192\.168\.1\.1$</em></p>
<p>Save this file and restart the Munin server with the command:</p>
<p><em>/etc/init.d/munin restart</em></p>
<p><strong>Installing for client</strong></p>
<p>All you need to do for your client is to install the <em>munin-node</em> package. To do this issue the command:</p>
<p><em>sudo apt-get install munin-node</em></p>
<p>On the client machine. Now start munin-node with the command:</p>
<p><em>sudo /etc/init.d/munin-node start</em></p>
<p>Munin will begin to monitor this client now.</p>
<p><strong>The graphs</strong></p>
<p>When all is up and running, point your browser to http://ADDRESS_TO_SERVER/munin/</p>
<div id="attachment_18157" class="wp-caption alignleft" style="width: 190px"><a rel="attachment wp-att-18157" href="http://www.ghacks.net/2009/11/05/let-munin-monitor-your-servers-and-network/munin_overview/"><img class="size-thumbnail wp-image-18157 " src="http://www.ghacks.net/wp-content/uploads/2009/11/munin_overview-300x245.png" alt="Figure 1" width="180" height="147" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>Where ADDRESS_TO_SERVER is the actual address of the server. Very shortly after you install Munin you may only see a listing of the nodes being watched (see Figure 1). This is okay, it will take some time before data is actually collected.</p>
<p>After a while you will notice data collected and graphs developing. If you click on the <strong>localhost.localdomain</strong> link you will see data beginning to collect (see Figure 2).</p>
<p><strong> </strong></p>
<p><strong></p>
<div id="attachment_18158" class="wp-caption alignright" style="width: 310px"><a rel="attachment wp-att-18158" href="http://www.ghacks.net/2009/11/05/let-munin-monitor-your-servers-and-network/munin_early_data/"><img class="size-thumbnail wp-image-18158" src="http://www.ghacks.net/wp-content/uploads/2009/11/munin_early_data-300x300.png" alt="Figure 2" width="300" height="300" /></a><p class="wp-caption-text">Figure 2</p></div>
<p>Final thoughts</strong></p>
<p>Munin is a very powerful tool that allows you to gather crucial data about your systems and networks. Now that you have Munin installed and running you can begin to extend the server by adding more and more clients as well as plugins. You will quickly find Munin to be a very valuable tool for data analysis on your various systems and networks.</p>

	Tags: <a href="http://www.ghacks.net/tag/network-monitoring/" title="Network Monitoring" rel="tag">Network Monitoring</a>, <a href="http://www.ghacks.net/tag/system-monitoring/" title="system monitoring" rel="tag">system monitoring</a>, <a href="http://www.ghacks.net/tag/ubuntu/" title="ubuntu" rel="tag">ubuntu</a>, <a href="http://www.ghacks.net/tag/web-monitoring/" title="web monitoring" rel="tag">web monitoring</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/06/08/how-to-install-nagios-on-ubuntu-server/" title="How to install Nagios on Ubuntu server (June 8, 2009)">How to install Nagios on Ubuntu server</a> (10)</li>
	<li><a href="http://www.ghacks.net/2009/10/30/with-ubuntu-9-10-arrives-wubi-9-10/" title="With Ubuntu 9.10 Arrives Wubi 9.10 (October 30, 2009)">With Ubuntu 9.10 Arrives Wubi 9.10</a> (2)</li>
	<li><a href="http://www.ghacks.net/2006/12/20/why-you-should-switch-your-parents-pc-to-ubuntu/" title="Why you should switch your parents pc to ubuntu (December 20, 2006)">Why you should switch your parents pc to ubuntu</a> (20)</li>
	<li><a href="http://www.ghacks.net/2009/04/02/which-ubuntu-derivative-is-right-for-you/" title="Which Ubuntu Derivative Is Right For You? (April 2, 2009)">Which Ubuntu Derivative Is Right For You?</a> (16)</li>
	<li><a href="http://www.ghacks.net/2009/10/06/what-makes-ubuntu-so-user-friendly/" title="What makes Ubuntu so user friendly? (October 6, 2009)">What makes Ubuntu so user friendly?</a> (47)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/11/05/let-munin-monitor-your-servers-and-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scanning in Linux with iscan and XSane</title>
		<link>http://www.ghacks.net/2009/11/01/scanning-in-linux-with-iscan-and-xsane/</link>
		<comments>http://www.ghacks.net/2009/11/01/scanning-in-linux-with-iscan-and-xsane/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 15:04:58 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Espon]]></category>
		<category><![CDATA[flatbed scanners]]></category>
		<category><![CDATA[linux scanning]]></category>
		<category><![CDATA[scanning]]></category>
		<category><![CDATA[usb scanners]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=17986</guid>
		<description><![CDATA[If you are one of those that depends upon a scanner for your daily work, and you want to handle this task using the Linux operating system, you are in luck. In the past, Linux has had some serious issues with scanning tools. When USB scanners replaced the old parallel port scanners it seemed nothing [...]]]></description>
			<content:encoded><![CDATA[<p>If you are one of those that depends upon a scanner for your daily work, and you want to handle this task using the Linux operating system, you are in luck. In the past, Linux has had some serious issues with scanning tools. When USB scanners replaced the old parallel port scanners it seemed nothing would work. But, as usual, Linux caught up and USB scanner support started appearing. Now many scanners are supported under Linux and the tools available for scanning have improved greatly. The improvements in scanner support have been made possible by the <a title="Sane Project" href="http://www.sane-project.org" target="_blank">Sane Project</a>.</p>
<p>The first thing you will want to do is check the <a title="Supported Scanners" href="http://www.sane-project.org/sane-mfgs.html#SCANNERS" target="_blank">Sane supported scanner listing</a> on the Sane Project site. But don&#8217;t let your scanner not being on that list stop you. My Epson Perfection V30 was not on the list and I still managed to get it working with the help of iscan. The iscan package is a simple scanning tool for Epson scanners.  You can find the iscan tool within Synaptic. The iscan tool also integrates perfectly into The GIMP, so all your image needs can be met within one tool. But iscan is not the only option. There is also the Xsane tool, which is far more powerful than iscan. Let&#8217;s take a look at both of these scanning utilities to see how scanning is handled under the Linux operating system.</p>
<p><span id="more-17986"></span>NOTE: This article is not going to cover getting your scanner to work under Linux. If your scanner is not listed in the Sane hardware listing, your best bet is to google your model numer and your distribution. For example, in my case I would google <em>epson perfection v30 ubuntu 9.10</em>. You should come up with results that will tell you what approximate drivers to use to get your scanner working.</p>
<p><strong>iscan</strong></p>
<div id="attachment_17989" class="wp-caption alignleft" style="width: 190px"><a rel="attachment wp-att-17989" href="http://www.ghacks.net/2009/11/01/scanning-in-linux-with-iscan-and-xsane/iscan/"><img class="size-thumbnail wp-image-17989" src="http://www.ghacks.net/wp-content/uploads/2009/11/iscan-300x300.png" alt="Figure 1" width="180" height="180" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>We&#8217;ll first look at iscan. This tool is, by far, the easier of the two tools to use. And, like its bigger brother XSane, it integrates perfectly with The GIMP. That doesn&#8217;t mean you have to use iscan from within The GIMP. Once installed you will find iscan within the Graphics sub menu of the Applications menu. The entry will be called &#8220;Image Scan!&#8221; (No quotes). Or, if you&#8217;d rather, you can start iscan from within The Gimp by going to the File menu, then to the Create sub menu, and selecting the &#8220;Scanning (iscan)&#8221; entry. Both will start the iscan interface.</p>
<p>When you fire up iscan you will notice how simple the interface is (see Figure 1). This scanner utility is just as easy to use as any Windows or Mac utility. The only configuration option for iscan is your print command. That is how simple this tool is.</p>
<p>With your picture in your scanner hit the Preview button to first get a preview of your image. Once the image is up you can then select the portion of the image you want to scan, select the Destination (either file or printer), and click the Scan button. When you click the Scan button you will be asked to give the file a name. The scanner will then do it&#8217;s job and save the file for you. It&#8217;s that simple.</p>
<p><strong>XSane</strong></p>
<div id="attachment_17992" class="wp-caption alignright" style="width: 190px"><a rel="attachment wp-att-17992" href="http://www.ghacks.net/2009/11/01/scanning-in-linux-with-iscan-and-xsane/xsane/"><img class="size-thumbnail wp-image-17992" src="http://www.ghacks.net/wp-content/uploads/2009/11/xsane-300x300.png" alt="Figure 2" width="180" height="180" /></a><p class="wp-caption-text">Figure 2</p></div>
<p>XSane can be found in your distributions repositories. So whether you use Ubuntu or Fedoar (or anything in between), you should be able to open up your distributions Add/Remove Software tool and find XSane easily. XSane, like iscan, is a graphical frontend for the Sane project. But XSane is a bit more serious of a tool. You can see (in Figure 2) there is much more to XSane than your average scanning tool. In Figure 2 you see the standard windows that open along with the Main window. Pictured are the  Main windows (far left), Preview window (center), Standard Options window (top right), and Histogram (lower right). You can also include an Advanced Options window, and a Batch Scan window.</p>
<p>But even with all of the extra options, acquiring a scan with XSane is just as simple as with iscan. Follow these directions:</p>
<ol>
<li>Place your photo on the scanner.</li>
<li>Open XSane.</li>
<li>Click the Aquire preview button in the Preview window.</li>
<li>Adjust the size, rotation, and scale at the bottom of the Preview window.</li>
<li>Adjust the color in the Main window.</li>
<li>Select the file type in the Main window.</li>
<li>Adjust the scan resultion in the Main window.</li>
<li>Click the Scan button in the Main window.</li>
</ol>
<p>When the scan is complete a new window will open that allows you to further adjust your image. In this window you can apply a despeckle or blur filter, adjust the geometry, rotate the image, clone image, do optical character  recognition, and save the image.</p>
<p>And what about the Histogram window? This window allows you to fine-tune the color of your image. You use this tool after you preview and before you scan. You will be suprised at how well you can perfect the color of your scans with this tool.</p>
<p><strong>Final thoughts</strong></p>
<p>For my preferences, I lean toward XSane to handle my scanning tasks. But iscan does the job quite well. Either tool will allow you to take advantage of that flatbed scanner you have in your office while using Linux. One less excuse to continue using Windows. ;-)</p>

	Tags: <a href="http://www.ghacks.net/tag/espon/" title="Espon" rel="tag">Espon</a>, <a href="http://www.ghacks.net/tag/flatbed-scanners/" title="flatbed scanners" rel="tag">flatbed scanners</a>, <a href="http://www.ghacks.net/tag/linux-scanning/" title="linux scanning" rel="tag">linux scanning</a>, <a href="http://www.ghacks.net/tag/scanning/" title="scanning" rel="tag">scanning</a>, <a href="http://www.ghacks.net/tag/usb-scanners/" title="usb scanners" rel="tag">usb scanners</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/01/07/document-scanning-with-digital-cameras/" title="Document Scanning With Digital Cameras (January 7, 2009)">Document Scanning With Digital Cameras</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/11/01/scanning-in-linux-with-iscan-and-xsane/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Xbox Media Center on Linux</title>
		<link>http://www.ghacks.net/2009/10/28/xbox-media-center-on-linux/</link>
		<comments>http://www.ghacks.net/2009/10/28/xbox-media-center-on-linux/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 16:04:09 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Tutorials Advanced]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[media center]]></category>
		<category><![CDATA[multimedia]]></category>
		<category><![CDATA[video playback]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=17827</guid>
		<description><![CDATA[The Xbox Media Center arrived in 2004 and became popular so quickly that it became clear more ports would be needed. So the XBMC team allowed this tool to evolve into a cross platform media center that would run on just about anything you can think of.  But, of course, the purpose of this article [...]]]></description>
			<content:encoded><![CDATA[<p>The <a title="XBMC" href="http://xbmc.org/" target="_blank">Xbox Media Center</a> arrived in 2004 and became popular so quickly that it became clear more ports would be needed. So the XBMC team allowed this tool to evolve into a cross platform media center that would run on just about anything you can think of.  But, of course, the purpose of this article is to install XBMC on Linux. Although XBMC can be installed on most Linux distributions, the Ubuntu installation is the least painful. I&#8217;ll first illustrate the installation on Ubuntu and then on Fedora. Once installed, you will find XBMC meets many (if not all) of your media center needs similar to that of Windows Media Center.</p>
<p>Of course, ideally, you will want to install XBMC on a machine intended for multi-media use. It will work on lower-end video cards, but the interface will be somewhat slower. For a complete listing of supported hardware check out the <a title="XBMC supported hardware" href="http://xbmc.org/wiki/?title=Supported_hardware" target="_blank">XBMC hardware page</a>. Now, let&#8217;s get on with the installation.</p>
<p><span id="more-17827"></span><strong>Ubuntu</strong></p>
<p>I will give you a warning here: The most recently supported Ubuntu is 8.10. That does not, however, mean it will not install on anything later. I have XBMC installed and working fine on Ubuntu 9.04. With that in mind here are the installation steps for Ubuntu.</p>
<p>Open up your <strong>/etc/apt/sources.list</strong> file and add the following to the end:<br />
<code>deb http://ppa.launchpad.net/team-xbmc-hardy/ubuntu hardy main<br />
deb-src http://ppa.launchpad.net/team-xbmc-hardy/ubuntu hardy main</code></p>
<p>Save that file and then issue the command:</p>
<p><em>sudo apt-get update</em></p>
<p>Once the update is complete issue the following command:<br />
<em> </em></p>
<p><em>sudo apt-get install xbmc</em></p>
<p>If you want to install extra skins, issue this command:</p>
<p><em>sudo apt-get install xbmc-skin-*</em></p>
<div id="attachment_17833" class="wp-caption alignleft" style="width: 190px"><a rel="attachment wp-att-17833" href="http://www.ghacks.net/2009/10/28/xbox-media-center-on-linux/xbmc/"><img class="size-thumbnail wp-image-17833" src="http://www.ghacks.net/wp-content/uploads/2009/10/xbmc-300x300.png" alt="Figure 1" width="180" height="180" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>You will find the XBMC menu entry in the Sound And Video sub-menu of the Applications menu. When XBMC opens you will see a very user-friendly interface (see Figure 1).</p>
<p>Now it&#8217;s time for a less than user-friendly installation. Because there have been no rpm files created for Fedora, the installation requires a number of steps which will lead you to compiling XBMC. These steps will work for Fedora 8, 9, and 10 as well as CentOS 5.2. Here we go. NOTE: You will need to be the root user for this installation.</p>
<p>If you don&#8217;t already have Subversion install, do so now with the command:</p>
<p><em>yum install subversion</em></p>
<p>Once Subversion is installed, check out XBMC from subversion with the command:</p>
<p><em>svn co https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk</em></p>
<p>Now install the rpmfusion repository with one of the following commands:</p>
<p>Fedora:</p>
<p><em>rpm -Uvh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm</em></p>
<p>and</p>
<p><em>rpm -Uvh http://download1.rpmfusion.org/nonfree/fedora/rmpfusion-nonfree-release-stable.noarch.r</em>pm</p>
<p>CentOS 5 (32 bit):<br />
<em>rpm -Uvh http://apt.sw.be/redhat/e15/en/i386/rpmforge/RPMS/rpmforge-release-0.3.6-1.e15.rf.i386.rpm</em></p>
<p>CentOS 5 (64 bit):</p>
<p><em>rpm -Uvh http://apt.sw.be/redhat/e15/en/x86_64/rpmforge/RPMS/rpmforge-release-0.3.6-1.e15.rf.x86_64.rpm</em></p>
<p>Now the fun begins. This installation command is all one line:<br />
<code>yum install SDL* glew glew-devel libmad-devel tre tre-devel libogg libogg-devel libvorbis libvorbis-devel boost boost-devel bzip2-devel bzip2-libs fribidi* lzo lzo-devel mysql-libs mysql-devel jasper jasper-devel faac faac-devel enca enca-devel hal hal-devel hal-libs cmake gperf nasm libXmu-devel fontconfig-devel freetype-devel libXinerama-devel pcre-devel gcc-c++ sqlite-devel curl-devel mysql-devel libcdio-devel libmms-devel faad2-devel flac-devel libsmbclient-devel libXtst-devel</code></p>
<p>The next step creates a symbolic link for the libmysqlclient.so file. The command is one of these two (depending upon your architecture):</p>
<p>For i386:</p>
<p><em>sudo ln -s /usr/lib/mysql/libmysqlclient.so.15.0.0 /usr/lib/libmysqlclient.so </em></p>
<p>For x64:<br />
<em>sudo ln -s /usr/lib64/mysql/libmysqlclient.so.15.0.0 /usr/lib64/libmysqlclient.so</em></p>
<p>Now cd into the XBMC directory (should be in the directory you are currently working in) and issue the following commands:</p>
<p><em>./bootstrap</em></p>
<p>and</p>
<p><em>./configure</em></p>
<p>and</p>
<p><em>make</em></p>
<p>If you see an error related to jpegint.h, then you might have to issue the following command:</p>
<p><em>cp XBMC/xbmx/lib/cximage-6.0/jpeg/jpegint.h /usr/include</em></p>
<p>If you have to issue the above command, then issue the <em>make </em>command again.</p>
<p>Finally issue the command:</p>
<p><em>make install</em></p>
<p>And XBMC will install.</p>
<p>On Fedora distributions you might have an issue with SELinux. If so you will need to issue the following commands:<br />
<code>chcon -t textrel_shlib_t '/usr/local/share/xbmc/system/players/dvdplayer/avutil-50-i486-linux.so'<br />
chcon -t textrel_shlib_t '/usr/local/share/xbmc/system/players/dvdplayer/avcodec-52-i486-linux.so'<br />
chcon -t textrel_shlib_t '/usr/local/share/xbmc/system/players/dvdplayer/avformat-52-i486-linux.so'<br />
chcon -t textrel_shlib_t '/usr/local/share/xbmc/system/players/dvdplayer/swscale-0.6.1-i486-linux.so'</code></p>
<p>That&#8217;s it for the Fedora/CentOS installation. You should find XBMC in your Video menu. If you can&#8217;t seem to find a menu entry you can always enter <em>xbmc </em>in either a terminal window or the run dialog.</p>
<p><strong>Final thoughts</strong></p>
<p>XBMC is an outstanding media center software. It will play your CDs and DVDs flawlessly. If you have the hardware for this software, it is a much better solution than most other Linux video solutions.</p>

	Tags: <a href="http://www.ghacks.net/tag/media-center/" title="media center" rel="tag">media center</a>, <a href="http://www.ghacks.net/tag/multimedia/" title="multimedia" rel="tag">multimedia</a>, <a href="http://www.ghacks.net/tag/video-playback/" title="video playback" rel="tag">video playback</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/08/14/xbox-media-center-cross-platform-alpha/" title="Xbox Media Center Cross Platform Alpha (August 14, 2008)">Xbox Media Center Cross Platform Alpha</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/11/20/xbmc-media-center-final/" title="XBMC Media Center Final (November 20, 2008)">XBMC Media Center Final</a> (13)</li>
	<li><a href="http://www.ghacks.net/2006/09/02/the-perfect-multimedia-device/" title="The perfect multimedia device (September 2, 2006)">The perfect multimedia device</a> (3)</li>
	<li><a href="http://www.ghacks.net/2006/04/09/ten-video-sharing-services-compared/" title="Ten Video Sharing Services Compared (April 9, 2006)">Ten Video Sharing Services Compared</a> (1)</li>
	<li><a href="http://www.ghacks.net/2007/09/08/smplayer-0551/" title="SMPlayer 0.5.51 (September 8, 2007)">SMPlayer 0.5.51</a> (17)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/10/28/xbox-media-center-on-linux/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Amazon Kindle International Version review</title>
		<link>http://www.ghacks.net/2009/10/25/amazon-kindle-international-version-review/</link>
		<comments>http://www.ghacks.net/2009/10/25/amazon-kindle-international-version-review/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 22:25:36 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Amazon]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[3g]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[amazon kindle]]></category>
		<category><![CDATA[e ink]]></category>
		<category><![CDATA[ebook]]></category>
		<category><![CDATA[ebook reader]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[mobile internet]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=17652</guid>
		<description><![CDATA[I have longed for an ebook reader for some time, but the most popular one &#8211; the Amazon Kindle &#8211; has long been reserved solely for the US market. Whilst it has many competitors, like the Sony Reader, I had to wonder about how many titles were available for such platforms. I used to use [...]]]></description>
			<content:encoded><![CDATA[<p>I have longed for an ebook reader for some time, but the most popular one &#8211; the Amazon Kindle &#8211; has long been reserved solely for the US market. Whilst it has many competitors, like the Sony Reader, I had to wonder about how many titles were available for such platforms. I used to use my iPhone to read public domain books.</p>
<p>Amazon recently started exporting the Kindle to other countries, so I bought one. Amazon struggled to negotiate deals with European carriers, which was one reason why the Kindle was not already available to the European market, so instead, the Kindle roams from the AT&amp;T network.</p>
<p>The features are fairly similar to those available to American customers. One can subscribe to and download newspapers, magazines and buy and and download books. One can&#8217;t, however, download the images inside the newspapers and magazines, browse the Web or subscribe to blogs. This is all down through a mobile internet connection, either 3G/GPRS. </p>
<p><span id="more-17652"></span>The 3G coverage in my house is somewhat intermittent, although I still think it is just about tolerable. I find a 2G signal perfectly reasonable for downloading a book or browsing the Kindle store. I initially thought it strange that the Kindle lacks WiFi, unlike many of its competitors, but I have since realised that WiFi is unneeded.</p>
<p>As the mobile internet coverage is included in the purchase price of the Kindle, Amazon prevent users from browsing the web on it outside the US due to the high costs they would face. This would prove annoying to some users, although I imagine web browsing on the Kindle would prove clumsy, due to fact it&#8217;s black and white.</p>
<p>The Kindle can also play MP3s, so audiobooks, music and podcasts can be placed on it. I believe that you need to connect the Kindle to a computer to transfer them onto it. For books, magazines and newspapers, no computer is needed. Files can be coverted into Kindle format by emailing it to an address that will automatically send them to the Kindle (at 0.99USD/MB), by using a free Kindle email conversion service and transferring the files via USB, or by using software like <a href="http://www.ghacks.net/2009/03/13/manage-ebook-collections-with-calibre/">Calibre</a>. The Kindle handles the Mobipocket format, so you can get free public domain books from websites like <a href="http://feedbooks.com/">Feedbooks</a> and transfer them on.</p>
<p>The battery life is very good, due to the way text is displayed. E Ink, which the Kindle employs, has extremely low energy consumption. If you turn the wireless off, it can keep going for weeks without being charged. Charging takes a couple of hours, although the charger supplied is a US socket. It does charge via USB so this isn&#8217;t an issue.</p>
<p>It has a couple of other nice touches, too. One can annotate texts, have them read aloud via a text-to-speech feature (although this doesn&#8217;t work very well) and has a very attractive standby screen which rotates between different images of different writers and writing-related objects.</p>
<p>The International Kindle costs $260, plus postage and import tax. Altogether, mine cost around $340. This is equivalent to about £210 or €225; roughly the same as its competitors. The mobile internet is a big selling point which many competitors lack. They are only purchasable from Amazon.com, so any discounts or vouchers you may have for other Amazon sites won&#8217;t work. Also, books are only available from Amazon.com, so you pay notice the absence of the work of your country&#8217;s authors. I hope that eventually we will be able to relink our Kindles to our own national Amazon sites, although there is no certainty (or even indication) that Amazon will permit this.</p>

	Tags: <a href="http://www.ghacks.net/tag/3g/" title="3g" rel="tag">3g</a>, <a href="http://www.ghacks.net/tag/amazon/" title="amazon" rel="tag">amazon</a>, <a href="http://www.ghacks.net/tag/amazon-kindle/" title="amazon kindle" rel="tag">amazon kindle</a>, <a href="http://www.ghacks.net/tag/e-ink/" title="e ink" rel="tag">e ink</a>, <a href="http://www.ghacks.net/tag/ebook/" title="ebook" rel="tag">ebook</a>, <a href="http://www.ghacks.net/tag/ebook-reader/" title="ebook reader" rel="tag">ebook reader</a>, <a href="http://www.ghacks.net/tag/kindle/" title="kindle" rel="tag">kindle</a>, <a href="http://www.ghacks.net/tag/mobile-internet/" title="mobile internet" rel="tag">mobile internet</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/07/18/amazon-deletes-books-from-kindle-without-user-consent/" title="Amazon Deletes Books From Kindle Without User Consent (July 18, 2009)">Amazon Deletes Books From Kindle Without User Consent</a> (7)</li>
	<li><a href="http://www.ghacks.net/2009/02/19/txtr-ebook-reader/" title="Txtr Ebook Reader (February 19, 2009)">Txtr Ebook Reader</a> (16)</li>
	<li><a href="http://www.ghacks.net/2009/10/27/new-samsung-android-phone-t-mobile-project-dark-plans-leaked-nasdaq-and-amazon-release-iphone-apps/" title="New Samsung Android Phone, T-Mobile Project Dark Plans Leaked, NASDAQ And Amazon Release iPhone Apps (October 27, 2009)">New Samsung Android Phone, T-Mobile Project Dark Plans Leaked, NASDAQ And Amazon Release iPhone Apps</a> (0)</li>
	<li><a href="http://www.ghacks.net/2009/03/13/manage-ebook-collections-with-calibre/" title="Manage Ebook Collections With Calibre (March 13, 2009)">Manage Ebook Collections With Calibre</a> (13)</li>
	<li><a href="http://www.ghacks.net/2007/01/10/wikipedia-on-your-ipod/" title="Wikipedia on your iPod (January 10, 2007)">Wikipedia on your iPod</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/10/25/amazon-kindle-international-version-review/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Sync your Android phone with Banshee</title>
		<link>http://www.ghacks.net/2009/10/22/sync-your-android-phone-with-banshee/</link>
		<comments>http://www.ghacks.net/2009/10/22/sync-your-android-phone-with-banshee/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 01:51:46 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Android]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mobiles]]></category>
		<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[Banshee]]></category>
		<category><![CDATA[HTC Hero]]></category>
		<category><![CDATA[music management software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=17563</guid>
		<description><![CDATA[Recently I finally managed to get rid of my iPhone for a much more Linux-geek friendly mobile &#8211; the HTC Hero. One of my issues with the iPhone was that, in order to do ANY syncing, you had to use iTunes, which I really didn&#8217;t like. And although the HTC Hero has yet to be [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I finally managed to get rid of my iPhone for a much more Linux-geek friendly mobile &#8211; the HTC Hero. One of my issues with the iPhone was that, in order to do ANY syncing, you had to use iTunes, which I really didn&#8217;t like. And although the HTC Hero has yet to be able to do full syncing with Linux (no contacts or calendar syncing with Evolution, Thunderbird, Claws Mail, etc). You can, however, very easily sync your music with the HTC Hero (and any Android-based phone) by using the Banshee music manager.</p>
<p>Banshee is strongly tied to the GNOME desktop manager. These two together make managing your Android phone music as simple as it gets. Now, Banshee is not a complete replacement for iTunes. There is no way to purchase music through Banshee (which is fine because most Android phones can purchase music straight from the Amazon MP3 market). But Banshee does a bang up job of managing your music &#8211; and a simple job interacting with the Android phone. Now, let&#8217;s take a look at how this is done.</p>
<p><span id="more-17563"></span><strong>Installing Banshee</strong></p>
<p>If you don&#8217;t already have Banshee installed you will need to do so. And you will need to make sure you have a version &gt;= 1.4. To install go to your Add/Remove Software tool and follow these steps:</p>
<ol>
<li><span style="background-color: #ffffff">Search for &#8220;banshee&#8221; (no quotes).</span></li>
<li><span style="background-color: #ffffff">Select Banshee for installation.</span></li>
<li><span style="background-color: #ffffff">Click Apply to install.</span></li>
</ol>
<p>That&#8217;s it.</p>
<p>Now that Banshee is installed, you are ready to have Banshee and your Android working together.</p>
<p><strong>Connecting your Android</strong></p>
<div id="attachment_17564" class="wp-caption alignleft" style="width: 190px"><a rel="attachment wp-att-17564" href="http://www.ghacks.net/2009/10/22/sync-your-android-phone-with-banshee/banshee_nautilus/"><img class="size-thumbnail wp-image-17564 " src="http://www.ghacks.net/wp-content/uploads/2009/10/banshee_nautilus-300x300.png" alt="Figure 1" width="180" height="180" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>When you connect your Android phone to your Linux machine you will be asked (on the phone) if you want to mount your SD card. Go ahead and do that so your Linux machine can see the SD card on the phone. This SD card will show up in the Nautilus file manager (shown in Figure 1) as a 2.0 GB Media. You can actually drag and drop files to this directory &#8211; but we&#8217;re managing music, so we&#8217;re going to use Banshee and not a file manager.</p>
<p>Now open up Banshee and your Android phone will automatically show up (see Figure 2).</p>
<p>As you can see, the interface gives you a clear view of the space</p>
<div id="attachment_17565" class="wp-caption alignright" style="width: 190px"><a rel="attachment wp-att-17565" href="http://www.ghacks.net/2009/10/22/sync-your-android-phone-with-banshee/banshee_android/"><img class="size-thumbnail wp-image-17565 " src="http://www.ghacks.net/wp-content/uploads/2009/10/banshee_android-300x300.png" alt="Figure 2" width="180" height="180" /></a><p class="wp-caption-text">Figure 2</p></div>
<p>available on your phone&#8217;s card. You can also see that there are two options:</p>
<p>Manually sync</p>
<p>Automatically sync</p>
<p>Most likely you will want to manually sync your phone. If your Banshee library is like mine there is WAY more music than will fit on a 2 Gig card. of course you can replace that 2 Gig card with a much larger card and then have Banshee automatically sync.</p>
<p>For manually syncing all you need to do is navigate through your music collection and then drag and drop the files you want to put on your phone.</p>
<p>Upon completion of the music management you can then click the Eject Android G1 Phone button in the upper right corner of Banshee. Now, before you actually unplug your phone from your computer you need to turn off USB storage on your phone. Once USB storage is off you can then unplug your phone and check to make sure your new music is present and accounted for.</p>
<p><strong>Final thoughts</strong></p>
<p>I certainly hope the Linux community and the Android community can work together further so that the Linux operating system can enjoy a complete sync. Once this happens wireless companies can be sure that Linux users/fans will flock to their Android offerings.</p>

	Tags: <a href="http://www.ghacks.net/tag/android/" title="android" rel="tag">android</a>, <a href="http://www.ghacks.net/tag/banshee/" title="Banshee" rel="tag">Banshee</a>, <a href="http://www.ghacks.net/tag/htc-hero/" title="HTC Hero" rel="tag">HTC Hero</a>, <a href="http://www.ghacks.net/tag/music-management-software/" title="music management software" rel="tag">music management software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/11/21/the-plot-thickens-around-the-google-phone/" title="The Plot Thickens Around The Google Phone (November 21, 2009)">The Plot Thickens Around The Google Phone</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/11/20/the-htc-dragon-exists-and-google-has-it/" title="The HTC Dragon Exists And Google Has It! (November 20, 2009)">The HTC Dragon Exists And Google Has It!</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/06/23/t-mobile-mytouch/" title="T-Mobile myTouch (June 23, 2009)">T-Mobile myTouch</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/10/23/spring-designs-alex-and-bns-nook/" title="Spring Design&#8217;s Alex And B&#038;N&#8217;s Nook (October 23, 2009)">Spring Design&#8217;s Alex And B&#038;N&#8217;s Nook</a> (6)</li>
	<li><a href="http://www.ghacks.net/2009/11/03/sony-ericsson%e2%80%99s-xperia-x10-review/" title="Sony Ericsson’s XPERIA X10: Review (November 3, 2009)">Sony Ericsson’s XPERIA X10: Review</a> (9)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/10/22/sync-your-android-phone-with-banshee/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>They Are Here, But Will They Cut It? [Apple]</title>
		<link>http://www.ghacks.net/2009/10/20/they-are-here-but-will-they-cut-it-apple/</link>
		<comments>http://www.ghacks.net/2009/10/20/they-are-here-but-will-they-cut-it-apple/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 21:16:48 +0000</pubDate>
		<dc:creator>Shailpik</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Notebooks]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[mac mini]]></category>
		<category><![CDATA[macbook white]]></category>
		<category><![CDATA[magic mouse]]></category>
		<category><![CDATA[quad core imac]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=17510</guid>
		<description><![CDATA[Apple has finally launched the new Macs, and as expected, the world is going crazy over comparisons and everything. Apple’s Phil Schiller has been vocal about Microsoft’s Windows 7 not having any negative effects on Apple’s sales whatsoever. In fact, he said that it would actually drive people towards Apple with the complicated upgrading procedure. [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-17519 alignleft" title="Picture 3" src="http://www.ghacks.net/wp-content/uploads/2009/10/Picture-3.png" alt="Picture 3" width="101" height="148" />Apple has finally launched the new Macs, and as expected, the world is going crazy over comparisons and everything. Apple’s Phil Schiller has been vocal about Microsoft’s <a href="http://windows7news.com/">Windows 7</a> not having any negative effects on Apple’s sales whatsoever. In fact, he said that it would actually drive people towards Apple with the complicated upgrading procedure. So are the new Macs up to the challenge?</p>
<p><span id="more-17510"></span>The most interesting of the lot are definitely the new iMacs and the multi-touch mouse. The new Quad-Core iMac was heard coming long before, when the first rumors started circulating last month. Now that it is finally here, the differences from the old models are obvious. It has a stunning 27” display, Intel Core i5 (upgradable to Core i7) and has a huge screen space at 2560&#215;1440 pixels.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-17524" title="new_iMac" src="http://www.ghacks.net/wp-content/uploads/2009/10/new_iMac_610x482.jpg" alt="new_iMac" width="488" height="386" /></p>
<p>But the excitement is not restricted to the highest model. The main thing that I would like to bring your attention to is the fact that all models (except the quad core) have Intel Core 2 Duo chips at 3.09GHz and have 4GB memory as standard. Plus, there is the brilliant new wireless Magic Mouse and wireless new keyboard that come standard with every iMac.</p>
<p><img class="aligncenter size-full wp-image-17526" title="Magic_Mouse" src="http://www.ghacks.net/wp-content/uploads/2009/10/Magic_Mouse_610x281.jpg" alt="Magic_Mouse" width="610" height="281" /></p>
<p>The Magic mouse is a brilliant piece of equipment. It has no buttons, is made out of aluminum and is topped off with a capacitive multitouch layer that works just like the MacBook’s glass trackpad. You can touch anywhere and you can scroll the full 360º if the application allows it. The whole surface clicks like the glass trackpad and you can even get it to emulate the two-button mouse. I say this is the best non-gaming mouse till date. Plus the tracking is now optical, so the Magic Mouse can track without a mousepad and on <em>almost</em> all surfaces. Gestures are supported and so is accelerated scrolling. So comparisons to the iPhone’s multitouch features are fully justified.</p>
<p><img class="aligncenter size-full wp-image-17525" title="new_MacBook" src="http://www.ghacks.net/wp-content/uploads/2009/10/new_MacBook_610x456.jpg" alt="new_MacBook" width="610" height="456" /></p>
<p>The MacBook gets a polycarbonate unibody, with the same built-in battery as the MacBook Pro line. So it now has a 7-hour rated battery life. There have been subtle design changes &#8211; the most noticeable is the lack of the sharp edge that really bugged people on the previous models. The display is now LED backlit, making the MacBook more eco-friendly and energy efficient.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-17528" title="Mac Mini" src="http://www.ghacks.net/wp-content/uploads/2009/10/gallery-big-03.jpg" alt="Mac Mini" width="504" height="378" /></p>
<p>MacMinis have received speed and storage upgrades but everything else is pretty much the same. There is now a 2.53GHz Core 2 Duo, $999 server edition that packs in two 500GB HDDs, Mac OS X Server Snow Leopard and lacks a DVD burner.</p>
<p>So now that we know what Apple had up their sleeves, it is time to talk about how this will help them in their race against Windows 7 and the slew of new computers that will be released during and soon after the Windows 7 launch.</p>
<p>Apple’s new strategy with iMacs is clearly to give users as much computing power as possible. The new entry point of 3.06 GHz and 4GB RAM is going to be a hit with the crowd because these are above average features at this time. So buying an iMac now would be a great thing because you will not have to upgrade for quite a while.</p>
<p><img class="aligncenter size-full wp-image-17520" title="iMac Details" src="http://www.ghacks.net/wp-content/uploads/2009/10/Picture-2.png" alt="iMac Details" width="571" height="246" /></p>
<p>The new 27” Core ‘5/i7 iMac is clearly an attempt to woo those professionals who want something more affordable than a Mac Pro but something more powerful that the previous generation iMacs. This new iMac is going to be a hit with visual designers and also with musicians. Both have a lot of use for large screen spaces. Designers can do side by side comparisons while musicians can now see more things on screen. I for one would use this with Logic Pro and place the mixer and the arrangement areas side by side during the final mix down.</p>
<p>The two Mac Minis And the MacBook [white] have been through smaller updates. They are not very different spec-wise but the MacBook has changed quite a bit physically. It doesn’t seem like they will make much of an impact on their own but the price cuts are sure to bring in some more sales. To me, it seems like 2010 Q10 will be the bigger quarter for Apple and they will one-up Windows 7 with their tablet device. So this it for now and I don’t think the new Macs and Windows 7 will suffer a lot from each other. That is because the high-end will still go for MacBook Pros and iMacs and the average consumer will be torn between the Mac Mini and myriad Windows 7 systems. However, the MacBook [white] is likely to make it to quite a few stockings this year.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-17517" title="Mac Mini Details" src="http://www.ghacks.net/wp-content/uploads/2009/10/Picture-5.png" alt="Mac Mini Details" width="579" height="190" /></p>

	Tags: <a href="http://www.ghacks.net/tag/apple/" title="apple" rel="tag">apple</a>, <a href="http://www.ghacks.net/tag/mac-mini/" title="mac mini" rel="tag">mac mini</a>, <a href="http://www.ghacks.net/tag/macbook-white/" title="macbook white" rel="tag">macbook white</a>, <a href="http://www.ghacks.net/tag/magic-mouse/" title="magic mouse" rel="tag">magic mouse</a>, <a href="http://www.ghacks.net/tag/quad-core-imac/" title="quad core imac" rel="tag">quad core imac</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/09/05/xnjb-transfer-music-to-and-from-a-mtp-mp3-player-on-a-mac/" title="XNJB: Transfer music to and from a MTP MP3 player on a Mac (September 5, 2009)">XNJB: Transfer music to and from a MTP MP3 player on a Mac</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/10/12/winamp-ipod-plugin/" title="Winamp iPod Plugin (October 12, 2006)">Winamp iPod Plugin</a> (0)</li>
	<li><a href="http://www.ghacks.net/2008/07/16/winamp-ipod-plugin-2/" title="Winamp iPod Plugin (July 16, 2008)">Winamp iPod Plugin</a> (5)</li>
	<li><a href="http://www.ghacks.net/2007/01/10/wikipedia-on-your-ipod/" title="Wikipedia on your iPod (January 10, 2007)">Wikipedia on your iPod</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/08/03/why-apple-needs-a-tablet-pc/" title="Why Apple needs a Tablet PC (August 3, 2009)">Why Apple needs a Tablet PC</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/10/20/they-are-here-but-will-they-cut-it-apple/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Troubleshoot networking problems with GNOME&#8217;s Nettools</title>
		<link>http://www.ghacks.net/2009/10/18/troubleshoot-networking-problems-with-gnomes-nettools/</link>
		<comments>http://www.ghacks.net/2009/10/18/troubleshoot-networking-problems-with-gnomes-nettools/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 14:40:44 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[finger]]></category>
		<category><![CDATA[lookup]]></category>
		<category><![CDATA[netstat]]></category>
		<category><![CDATA[ping]]></category>
		<category><![CDATA[port scan]]></category>
		<category><![CDATA[traceroute]]></category>
		<category><![CDATA[whois]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=17415</guid>
		<description><![CDATA[How many times have you had networking issues and not known exactly where to start? With Linux there are so many tools you can choose from. Add to that the choice between console and GUI and you have the making for a rather confusing start. Most new Linux users (and many of those who have [...]]]></description>
			<content:encoded><![CDATA[<p>How many times have you had networking issues and not known exactly where to start? With Linux there are so many tools you can choose from. Add to that the choice between console and GUI and you have the making for a rather confusing start. Most new Linux users (and many of those who have used Linux for a while) have no idea how to use the whois, finger, Port Scanning, and other helpful networking tools. But it doesn&#8217;t have to be that way.</p>
<p>With the help of the GNOME Nettools you can have a sweet collection of powerful tools that will help you to troubleshoot your network in no time. And this collection of tools is all wrapped up into a user-friendly graphical interface. So without any further adieu, let&#8217;s take a look at this powerful suite of tools.</p>
<p><span id="more-17415"></span><strong>Features</strong></p>
<p>The GNOME Nettools includes the following tools:</p>
<ul>
<li>Devices: Have all information about your networking devices at your fingertips.</li>
<li>Ping: Get detailed information using the ping tool.</li>
<li>Netstat: Get detailed information about your routing table, active network services, and multicast information about your machine.</li>
<li>Traceroute: Trace the path to a network host.</li>
<li>Port scan: Scan for open ports on servers and desktops.</li>
<li>Lookup: Get detailed information about a server.</li>
<li>Finger: Lookup a users finger entry.</li>
<li>Whois: Lookup a whois entry for a domain.</li>
</ul>
<p>GNOME Nettools also features:</p>
<ul>
<li>Copy information to text report.</li>
<li>Help system.</li>
<li>Drop downs for previously entered addresses/domains.</li>
<li>Easy to use GUI.</li>
</ul>
<p>Now let&#8217;s take a look and see how this tool is used.</p>
<p><strong>Usage</strong></p>
<div id="attachment_17417" class="wp-caption alignleft" style="width: 190px"><a rel="attachment wp-att-17417" href="http://www.ghacks.net/2009/10/18/troubleshoot-networking-problems-with-gnomes-nettools/nettools_devices/"><img class="size-thumbnail wp-image-17417" src="http://www.ghacks.net/wp-content/uploads/2009/10/nettools_devices-300x300.png" alt="Figure 1" width="180" height="180" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>As you can see there has been no mention of installation. That is because GNOME Nettools is installed by default. In order to start up the tool you only have to go to the Administration sub-menu of the System menu. Once you have fired up the tool you will be greeted with main window at the Devices tab. This tab is where you gather the information about your installed networking devices. As you can see (In Figure 1) there is plenty of detailed information about my default eth0 interface. You can switch this to display information about any connected internet device you have on the machine by using the Interface drop-down.</p>
<p>The next tab, Ping, is where you can actually start troubleshooting networking issues. Ping is almost always one of the first tools I use, but I generally use it in command line form. Since most new Linux users prefer to not use the command line &#8211; you can still get your ping on with Nettools. Click on the Ping tab to reveal how the Ping tool works (see Figure 2).</p>
<div id="attachment_17419" class="wp-caption alignright" style="width: 190px"><a rel="attachment wp-att-17419" href="http://www.ghacks.net/2009/10/18/troubleshoot-networking-problems-with-gnomes-nettools/nettools_ping-2/"><img class="size-thumbnail wp-image-17419" src="http://www.ghacks.net/wp-content/uploads/2009/10/nettools_ping1-300x300.png" alt="Figure 2" width="180" height="180" /></a><p class="wp-caption-text">Figure 2</p></div>
<p>By default the Nettools Ping tool will be configured for a limited 5 requests. You can up that number or even change it to an unlimited number if you need. In Figure 2 I have sent 5 ping requests to an internal server and received 100% sucess on my packets. I know this server is at least responding.</p>
<p>The other tools will all work exactly as you would expect them. One thing that is nice is as a tool is working you can switch over to another tool without disrupting the original tools task. This is especially nice when running a traceroute that can take a while (see Figure 3).</p>
<div id="attachment_17422" class="wp-caption alignleft" style="width: 190px"><a rel="attachment wp-att-17422" href="http://www.ghacks.net/2009/10/18/troubleshoot-networking-problems-with-gnomes-nettools/nettools_traceroute/"><img class="size-thumbnail wp-image-17422" src="http://www.ghacks.net/wp-content/uploads/2009/10/nettools_traceroute-300x300.png" alt="Figure 3" width="180" height="180" /></a><p class="wp-caption-text">Figure 3</p></div>
<p>The traceroute tool will follow a path, hop for hop, to a destination you enter. In Figure 3 I ran a traceroute on www.google.com which ended before it reached its goal. This, of course, was only to show you the output of the traceroute (as there is not much I can personally do if my route to www.google.com is stopped outside of the boundaries of my network or my service providers network. But it gives you an idea of where the route stops. If this were a corporate issue, and the destination was one I had to reach, I would know precisely where the last known successful hop was (in the case of Figure 3 &#8211; after the 65.222.158.82 address).</p>
<p>I can then use the Whois tool to discover who is connected to that address. By clicking on the Whois tab and then entering the IP address above I receive the following information:</p>
<p><code>MCI Communications Services, Inc. d/b/a Verizon Business UUNET65 (NET-65-192-0-0-1)<br />
65.192.0.0 - 65.223.255.255<br />
SPLICE COMMUNICATIONS, INC. UU-65-222-158-80-D4 (NET-65-222-158-80-1)<br />
65.222.158.80 - 65.222.158.87</code></p>
<p>If www.google.com were a critical address for me (and my company) to reach for work (or a host of my company&#8217;s web site) I could at least contact the owner of this domain.</p>
<p><strong>Final thoughts</strong></p>
<p>As you would expect, the rest of the Nettools tools work in a very similar fashion than their command line counter parts. The only difference? You don&#8217;t have to open up a terminal window to use them. No commands to remember, no commands to type. Just easy network analysis, with the help of a user-friendly GUI tool.</p>

	Tags: <a href="http://www.ghacks.net/tag/finger/" title="finger" rel="tag">finger</a>, <a href="http://www.ghacks.net/tag/lookup/" title="lookup" rel="tag">lookup</a>, <a href="http://www.ghacks.net/tag/netstat/" title="netstat" rel="tag">netstat</a>, <a href="http://www.ghacks.net/tag/ping/" title="ping" rel="tag">ping</a>, <a href="http://www.ghacks.net/tag/port-scan/" title="port scan" rel="tag">port scan</a>, <a href="http://www.ghacks.net/tag/traceroute/" title="traceroute" rel="tag">traceroute</a>, <a href="http://www.ghacks.net/tag/whois/" title="whois" rel="tag">whois</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/03/16/ways-to-check-if-a-website-is-really-down/" title="Ways to check if a website is really down (March 16, 2008)">Ways to check if a website is really down</a> (12)</li>
	<li><a href="http://www.ghacks.net/2009/02/18/internet-maniac-networking-software/" title="Internet Maniac Networking Software (February 18, 2009)">Internet Maniac Networking Software</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/05/11/etoolz-network-toolset/" title="eToolz Network Toolset (May 11, 2008)">eToolz Network Toolset</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/06/30/who-shares-your-shared-hosting/" title="Who shares your shared hosting? (June 30, 2009)">Who shares your shared hosting?</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/01/04/webhopper-internet-traceroute-tool/" title="WebHopper Internet Traceroute Tool (January 4, 2009)">WebHopper Internet Traceroute Tool</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/10/18/troubleshoot-networking-problems-with-gnomes-nettools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Reasons Why The Apple Tablet Might FAIL</title>
		<link>http://www.ghacks.net/2009/10/15/5-reasons-why-the-apple-tablet-might-fail/</link>
		<comments>http://www.ghacks.net/2009/10/15/5-reasons-why-the-apple-tablet-might-fail/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 19:16:37 +0000</pubDate>
		<dc:creator>Shailpik</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Compilations]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Mobile Computing]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[Apple Tablet]]></category>
		<category><![CDATA[failure]]></category>
		<category><![CDATA[newton]]></category>
		<category><![CDATA[problems]]></category>
		<category><![CDATA[tablet]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=17308</guid>
		<description><![CDATA[With all the rumors around the device and the vast number of different sources of those rumors, it seems like Apple really is going to release the fabled tablet early next year. But will it be all that great? There is precedence of super-hyped Apple products failing spectacularly. In this context, the best example would [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-17309" title="apple-logo" src="http://www.ghacks.net/wp-content/uploads/2009/10/apple-logo.jpg" alt="apple-logo" width="180" height="180" />With all the rumors around the device and the vast number of different sources of those rumors, it seems like Apple really <em>is</em> going to release the fabled tablet early next year. But will it be all that great? There is precedence of super-hyped Apple products failing spectacularly. In this context, the best example would the Newton Message Pad.</p>
<p>There were many reasons behind it failing and they were there because the concept was way ahead of the available and affordable consumer technology at that time.</p>
<p>So now that we are on the brink of another tablet from the company, I would like to tone down all our expectations a little and give you a dose of practicality in this post.<span id="more-17308"></span></p>
<ul>
<li><span style="text-decoration: underline;"><strong>The OS Problem</strong></span> – The tablet will be a very unique device. It is exactly halfway between the iPhone and the MacBooks. So there are two choices for Apple – scale up the iPhone OS or scale down OS X. Logically, scaling down the full sized OS X would pose a lot of problems in terms of expectations and engineering. Scaling up the iPhone OS makes much more sense. But then, what do you tell the app devs? Here’s a new iPhone OS resolution and specs, make apps for it? The third choice is making a whole new OS. But that would mean forcing users to learn something new and making things more complicated (three OS’ to maintain). We are lazy people.</li>
</ul>
<ul>
<li><span style="text-decoration: underline;"><strong>The Portability Problem</strong></span> – Would you really like to carry around a 10.6inch glass tablet? I thought not. It will fracture all too easily. This structural problem can only be overcome by making A) a tough <em>lid</em> for it or B) a touchscreen built out of shatterproof, bulletproof, extra tough glass that can take a straight punch to the face and stay intact. The second option would make the device far too expensive and the first would make it the lid an almost redundant piece. Detachable or not, it would not be very helpful about the portability and usability.</li>
</ul>
<ul>
<li><span style="text-decoration: underline;"><strong>Weight And Battery Life</strong></span> – All that screen space and whatever the processing power is, requires power. And everyone knows that more battery power means more weight. So what would you rather have? A 3-cell battery that does not last long or a 9-cell battery that makes it impossible to carry the device for too long? And let’s not talk about the screen brightness. Forget working under direct sunlight; let’s see this device remain workable in a brightly lit room without dying in an hour.</li>
</ul>
<ul>
<li><span style="text-decoration: underline;"><strong>Processing Power and Performance</strong></span> – With battery life already an issue, one must  wonder – how much processing power would this tablet have? Something around 600MHz like the iPhone 3GS just won’t cut it for this large a device. You need to have something fairly muscle-bound, like an Intel ULV or Atom at the very least. Now think of a netbook and think of the frustratingly sluggish performance. Apple would probably need to artificially block multi-tasking on the tablet as well. Bummer.</li>
</ul>
<ul>
<li><span style="text-decoration: underline;"><strong>Usability</strong></span> – Will someone please tell me how the hell am I supposed to use this tablet? I am almost certain that I can’t hold in one hand because it will be too heavy. Besides, I would really like to use <em>both</em> hands on a 10.6inch touchscreen. Also, Apple would be loath to include a <em>kickstand</em> on the device, which would totally destroy the aesthetics of the curved and polished back that it apparently has. So the only remaining way is to keep it on a flat surface parallel to the ground and bend over to use it. As a blogger I already spend too much time sitting badly and getting backaches. I could live without more. So unless Apple makes this thing levitate in mid air, this does not look very useful to me.</li>
</ul>
<p><img class="aligncenter size-full wp-image-17310" title="apple-tablet-patent-400" src="http://www.ghacks.net/wp-content/uploads/2009/10/apple-tablet-patent-400.jpg" alt="apple-tablet-patent-400" width="400" height="304" /></p>
<p>Of course, knowing Apple and dear Stevie, each of these reasons has already caused a total reset. So hopefully, we will see another masterpiece from Apple early next year. And if it fails, you read about it at gHacks!</p>

	Tags: <a href="http://www.ghacks.net/tag/apple/" title="apple" rel="tag">apple</a>, <a href="http://www.ghacks.net/tag/apple-tablet/" title="Apple Tablet" rel="tag">Apple Tablet</a>, <a href="http://www.ghacks.net/tag/failure/" title="failure" rel="tag">failure</a>, <a href="http://www.ghacks.net/tag/newton/" title="newton" rel="tag">newton</a>, <a href="http://www.ghacks.net/tag/problems/" title="problems" rel="tag">problems</a>, <a href="http://www.ghacks.net/tag/tablet/" title="tablet" rel="tag">tablet</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/08/03/why-apple-needs-a-tablet-pc/" title="Why Apple needs a Tablet PC (August 3, 2009)">Why Apple needs a Tablet PC</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/11/19/hot-today-the-islate-strikes-back-thanks-to-more-apple-tablet-rumors/" title="Hot Today: The iSlate Strikes Back, Thanks To More Apple Tablet Rumors (November 19, 2009)">Hot Today: The iSlate Strikes Back, Thanks To More Apple Tablet Rumors</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/11/14/apple-update-the-apple-temple-at-67th-broadway-big-cash-tablet-ahoy-and-more/" title="Apple Update: The Apple Temple At 67th Broadway, Big Cash, Tablet Ahoy And More (November 14, 2009)">Apple Update: The Apple Temple At 67th Broadway, Big Cash, Tablet Ahoy And More</a> (0)</li>
	<li><a href="http://www.ghacks.net/2009/09/05/xnjb-transfer-music-to-and-from-a-mtp-mp3-player-on-a-mac/" title="XNJB: Transfer music to and from a MTP MP3 player on a Mac (September 5, 2009)">XNJB: Transfer music to and from a MTP MP3 player on a Mac</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/10/12/winamp-ipod-plugin/" title="Winamp iPod Plugin (October 12, 2006)">Winamp iPod Plugin</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/10/15/5-reasons-why-the-apple-tablet-might-fail/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Speed up your IDE/ATA hard drive with hdparm</title>
		<link>http://www.ghacks.net/2009/10/07/speed-up-your-ideata-hard-drive-with-hdparm/</link>
		<comments>http://www.ghacks.net/2009/10/07/speed-up-your-ideata-hard-drive-with-hdparm/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 20:35:06 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tutorials Advanced]]></category>
		<category><![CDATA[ATA drives]]></category>
		<category><![CDATA[drive throughput]]></category>
		<category><![CDATA[IDE drives]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=17031</guid>
		<description><![CDATA[The Linux operating system has a really nice tool for testing and optimizing your hard drive. This tool is called hdparm and can work with both IDE and ATA drives. NOTE: hdparm does NOT work with SATA drives. The hdparm tool is a command line only tool, and even though it should be only used [...]]]></description>
			<content:encoded><![CDATA[<p>The Linux operating system has a really nice tool for testing and optimizing your hard drive. This tool is called hdparm and can work with both IDE and ATA drives. NOTE: hdparm does NOT work with SATA drives. The hdparm tool is a command line only tool, and even though it should be only used by those who know their systems well, it&#8217;s not terribly difficult to use.</p>
<p>But why would you want to speed up your drive when modern drives are already fast enough? Some Linux installations default to slower defaults which, effectively, slow down your drives. Of course using such a tool must come with a warning. WARNING: Using hdparm incorrectly could cause corruption of data.</p>
<p><span id="more-17031"></span>You do not have to worry about installing hdparm as it should already be installed by default. The basic usage of hdparm is:</p>
<p><em>hdparm [OPTIONS] [DEVICE]</em></p>
<p>Of course, by DEVICE, I mean in the Linux vernacular which will be something like <strong>/dev/hda</strong>.</p>
<p>To get the basic information about your drive you would issue the command:</p>
<p><em>hdparm /dev/HDA</em></p>
<p>Where <em>HDA</em> is the actual name of the hard drive you want to work with.</p>
<p>When I run the command:</p>
<p><em>sudo hdparm /dev/hda</em></p>
<p>I see the following:</p>
<p><code>jlwallen@jlwallen-laptop:~$ sudo hdparm /dev/hda<br />
[sudo] password for jlwallen:<br />
/dev/hda:</code></p>
<p><code>multcount     =  8<br />
using_dma     =  0<br />
IO_support    =  0 (default)<br />
readonly      =  0 (off)<br />
readahead     = 256 (on)<br />
geometry      = 19457/255/63, sectors = 312581808, start = 0</code></p>
<p>What is really important in the above output is the IO_Support line. It is set to 0 which is 16-bit. Modern drives support IO mode 1 which is 32-bit mode. By changing this you can nearly double the throughput of your hard drive. But how exactly do you set this? Patience. Before we make this change we want to test the speeds of our drive. To run a standard test issue the command:</p>
<p><em>sudo hdparm -Tt /dev/HDA</em></p>
<p>Where <em>SDA</em> is the actual location of your drive. The results should look something like:</p>
<p><code>/dev/hda:<br />
Timing cached reads:   868 MB in  2.00 seconds = 434 MB/sec<br />
Timing buffered disk reads:  68 MB in  3.01 seconds =  22.52 MB/sec</code></p>
<p>As you can see the speeds are so-so at best, so let&#8217;s kick them up a notch. To do the following:</p>
<p>Enable DMA</p>
<p>Change the IO mode from 16-bit to 32-bit.</p>
<p>Change the maximum number of disk sectors to transfer in a single request.</p>
<p>issue the command:</p>
<p><em>sudo hdparm -d1 -c1 -m16 /dev/hda</em></p>
<p>Now when I issue the command:</p>
<p><em>sudo hdparm /dev/hda</em></p>
<p>I see:</p>
<p><code>jlwallen@jlwallen-laptop:~$ sudo hdparm /dev/hda<br />
[sudo] password for jlwallen:<br />
/dev/hda:</code></p>
<p><code>multcount     =  16 (on)<br />
using_dma     =  1 (on)<br />
IO_support    =  1 (32-bit)<br />
readonly      =  0 (off)<br />
readahead     = 256 (on)<br />
geometry      = 19457/255/63, sectors = 312581808, start = 0</code></p>
<p>When the drive speeds are tested now, they should nearly be doubled.</p>
<p><strong>What about SATA?</strong></p>
<p>Naturally there is a tool for the same tricks, but for SATA drives. The <em>sdparm </em>tool is similar in use to the <em>hdparm</em> tool. The <em>sdparm</em> tool, however, is a bit more complex and not nearly as necessary as most SATA drives will give you pretty swift throughput. If you want to use <em>sdparm</em> you will notice that it is not installed by default. You can install <em>sdparm</em> with the command:</p>
<p><em>sudo apt-get install sdparm</em></p>
<p>I will dive into <em>sdparm</em> at a later date.</p>
<p><strong>Final thoughts</strong></p>
<p>If you are dealing with older, slower ATA/IDE drives you will probably notice a significant improvement when you use hdparm to speed up your throughput. Give this a go, but I suggest testing it on a non-production machine first.</p>
<p><em><br />
</em></p>

	Tags: <a href="http://www.ghacks.net/tag/ata-drives/" title="ATA drives" rel="tag">ATA drives</a>, <a href="http://www.ghacks.net/tag/drive-throughput/" title="drive throughput" rel="tag">drive throughput</a>, <a href="http://www.ghacks.net/tag/ide-drives/" title="IDE drives" rel="tag">IDE drives</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/10/07/speed-up-your-ideata-hard-drive-with-hdparm/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Phoenix Instant Boot</title>
		<link>http://www.ghacks.net/2009/09/28/phoenix-instant-boot/</link>
		<comments>http://www.ghacks.net/2009/09/28/phoenix-instant-boot/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 14:33:12 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[instant boot]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[netbook]]></category>
		<category><![CDATA[notebook]]></category>
		<category><![CDATA[phoenix]]></category>
		<category><![CDATA[phoenix instant boot]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=16743</guid>
		<description><![CDATA[Computer boot time is a concern to many but not all users. Some do not seem to care if their PC boots up in a minute or more while others leave their computers on to avoid booting it again. One of the things that is making the boot time of modern computer systems that long [...]]]></description>
			<content:encoded><![CDATA[<p>Computer boot time is a concern to many but not all users. Some do not seem to care if their PC boots up in a minute or more while others leave their computers on to avoid booting it again. One of the things that is making the boot time of modern computer systems that long is the computer bios. It can take up to ten seconds for the Bios to load the hardware devices (like hard drives, computer memory or disk drives) before the operating system can start loading the files needed to boot the operating system.</p>
<p><span id="more-16743"></span>Phoenix have developed a new technology that they call Phoenix Instant Boot. The new technology cuts down the time it takes for the Bios to initialize everything to one second.  This is achieved by loading devices and processes that are needed to load the operating system simultaneously. Take a look at the following video that has been posted to Youtube that showcases the boot time.</p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/Fab6IfPuvho&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Fab6IfPuvho&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
<p>The notebook used in the demonstration video was powered by a high-performance solid state disk. It took about ten seconds to boot into <a href="http://windows7news.com/">Windows 7</a>. While boot time is definitely not the only thing that counts it is nice to see some progress in this area. It is even possible, according to Phoenix, that some hardware manufacturers will offer Bios upgrades that incorporate the technology.</p>

	Tags: <a href="http://www.ghacks.net/tag/instant-boot/" title="instant boot" rel="tag">instant boot</a>, <a href="http://www.ghacks.net/tag/laptop/" title="laptop" rel="tag">laptop</a>, <a href="http://www.ghacks.net/tag/netbook/" title="netbook" rel="tag">netbook</a>, <a href="http://www.ghacks.net/tag/notebook/" title="notebook" rel="tag">notebook</a>, <a href="http://www.ghacks.net/tag/phoenix/" title="phoenix" rel="tag">phoenix</a>, <a href="http://www.ghacks.net/tag/phoenix-instant-boot/" title="phoenix instant boot" rel="tag">phoenix instant boot</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/06/18/disney-netpal/" title="Disney Netpal (June 18, 2009)">Disney Netpal</a> (8)</li>
	<li><a href="http://www.ghacks.net/2009/05/20/what-you-should-do-after-buying-a-new-computer-system/" title="What You Should Do After Buying A New Computer System (May 20, 2009)">What You Should Do After Buying A New Computer System</a> (18)</li>
	<li><a href="http://www.ghacks.net/2009/09/15/web-browser-have-impact-on-battery-life/" title="Web Browser Have Impact On Battery Life (September 15, 2009)">Web Browser Have Impact On Battery Life</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/05/30/turn-off-computer-hardware-with-a-single-click/" title="Turn Off Computer Hardware With A Single Click (May 30, 2009)">Turn Off Computer Hardware With A Single Click</a> (6)</li>
	<li><a href="http://www.ghacks.net/2008/05/17/track-your-stolen-computer-with-locate-pc/" title="Track your stolen computer with Locate PC (May 17, 2008)">Track your stolen computer with Locate PC</a> (10)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/09/28/phoenix-instant-boot/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>How to create a bootable USB Ubuntu drive</title>
		<link>http://www.ghacks.net/2009/09/24/how-to-create-a-bootable-usb-ubuntu-drive/</link>
		<comments>http://www.ghacks.net/2009/09/24/how-to-create-a-bootable-usb-ubuntu-drive/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 00:45:26 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Desktop Manager]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[thumb drive linux]]></category>
		<category><![CDATA[ubuntu desktop]]></category>
		<category><![CDATA[usb drive]]></category>
		<category><![CDATA[usb startup disk]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=16610</guid>
		<description><![CDATA[The Ubuntu desktop distribution is full of nifty tricks. One of those tricks is the ability to create a bootable USB Ubuntu drive quickly and easily. Used to be this trick wasn&#8217;t so easy. Not only did you have to format the USB drive, you had to manually create the file systems, copy the files, [...]]]></description>
			<content:encoded><![CDATA[<p>The Ubuntu desktop distribution is full of nifty tricks. One of those tricks is the ability to create a bootable USB Ubuntu drive quickly and easily. Used to be this trick wasn&#8217;t so easy. Not only did you have to format the USB drive, you had to manually create the file systems, copy the files, add a boot loader, and hope that it worked. Sometimes it didn&#8217;t, so you&#8217;d have to start all over again. All of this was done via the command line.</p>
<p>Now there are loads of tools to use for this purpose. I have already covered the Unetbootin tool in my article &#8220;<a title="Install Linux on a USB drive with Unetbootin" href="http://www.ghacks.net/2008/12/16/install-linux-on-a-usb-drive-with-unetbootin/" target="_blank">Install Linux on a USB drive with Unetbootin</a>.&#8221; This time around we are going to do the same trick with a tool that comes pre-installed on any modern Ubuntu distribution. It&#8217;s all graphical interface and all easy going.</p>
<p><span id="more-16610"></span><strong>What you will need</strong></p>
<ul>
<li>A USB drive with at least 700 MB in size.</li>
<li>Either an ISO image or the Ubuntu Live CD</li>
</ul>
<p>And a little bit of time. If you don&#8217;t have either the ISO image or the CD you can just download a fresh copy from the <a title="Ubuntu" href="http://www.ubuntu.com" target="_blank">Ubuntu site</a>.</p>
<p>Once you have everything you need, you are ready to go.</p>
<p><strong>Starting the tool</strong></p>
<div id="attachment_16612" class="wp-caption alignleft" style="width: 282px"><a rel="attachment wp-att-16612" href="http://www.ghacks.net/2009/09/24/how-to-create-a-bootable-usb-ubuntu-drive/usb_creator/"><img class="size-full wp-image-16612" src="http://www.ghacks.net/wp-content/uploads/2009/09/usb_creator.png" alt="Figure 1" width="272" height="339" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>You will find the USB creator in the Administration sub-menu of the System menu on the GNOME desktop. The entry you are looking for is called &#8220;USB Startup Disk Creator&#8221;. Click that to open up the main window (see Figure 1).</p>
<p>As you can see (in Figure 1) there is neither an image or a CD listed. You either have to insert your Ubuntu CD or, if you&#8217;re using a downloaded image, click the Other button and navigate to where you&#8217;ve saed your image file.</p>
<p>When you insert your CD it will be automatically detected by the system and listed in the USB Startup Disk window. When this happens everything that is greyed out in Figure 1 will be at your service.</p>
<p>You will notice the only option available is for saving documents and settings. If your USB drive has enough extra space you can designate a portion of that drive for this purpose. With this feature you can effectively have a portable version of Linux that is far more than just a &#8220;startup disk&#8221;.</p>
<p><strong>Creating the disk</strong></p>
<div id="attachment_16613" class="wp-caption alignright" style="width: 465px"><a rel="attachment wp-att-16613" href="http://www.ghacks.net/2009/09/24/how-to-create-a-bootable-usb-ubuntu-drive/usb_installing/"><img class="size-full wp-image-16613" src="http://www.ghacks.net/wp-content/uploads/2009/09/usb_installing.png" alt="Figure 2" width="455" height="168" /></a><p class="wp-caption-text">Figure 2</p></div>
<p>When you have selected your image to use and configured your free space you are ready to go. Click the Make Startup Disk button and the main windo will be dismissed. During the creation process you will see a progress window (see Figure 2) that will let you know how much is done and what is happening. The phases of this creation are:</p>
<ul>
<li>Copying Files</li>
<li>Creating persistence file</li>
<li>Making persistence file system</li>
</ul>
<p>Once all three phases are complete you will get a dialog window telling you installation is complete and you can now reboot your machine with the USB drive. Of course when you boot a machine with this device it has to be able to boot from a USB device. Most modern machine can do that so it shouldn&#8217;t be an issue.</p>
<p><strong>Final thoughts</strong></p>
<p>As far as tools of this nature, the Ubuntu USB disk creator tool is one of the easiest and most reliable. It&#8217;s not the most flexible; but for what it does, you can&#8217;t beat it. If you&#8217;re looking to have a portable Ubuntu distribution you can carry with you, make use of this user-friendly tool.</p>

	Tags: <a href="http://www.ghacks.net/tag/thumb-drive-linux/" title="thumb drive linux" rel="tag">thumb drive linux</a>, <a href="http://www.ghacks.net/tag/ubuntu-desktop/" title="ubuntu desktop" rel="tag">ubuntu desktop</a>, <a href="http://www.ghacks.net/tag/usb-drive/" title="usb drive" rel="tag">usb drive</a>, <a href="http://www.ghacks.net/tag/usb-startup-disk/" title="usb startup disk" rel="tag">usb startup disk</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/03/06/usb-flash-drives-usb-vaccine/" title="USB Flash Drives: USB Vaccine (March 6, 2009)">USB Flash Drives: USB Vaccine</a> (6)</li>
	<li><a href="http://www.ghacks.net/2007/09/10/usb-flash-drive-with-capacity-meter/" title="USB Flash Drive with Capacity Meter (September 10, 2007)">USB Flash Drive with Capacity Meter</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/09/05/usb-drive-letter-manager/" title="USB Drive Letter Manager (September 5, 2008)">USB Drive Letter Manager</a> (2)</li>
	<li><a href="http://www.ghacks.net/2006/04/29/security-applications-that-run-on-usb-drives/" title="Security Applications that run on Usb Drives (April 29, 2006)">Security Applications that run on Usb Drives</a> (0)</li>
	<li><a href="http://www.ghacks.net/2008/07/08/microsoft-usb-flash-drive-manager-2/" title="Microsoft USB Flash Drive Manager (July 8, 2008)">Microsoft USB Flash Drive Manager</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/09/24/how-to-create-a-bootable-usb-ubuntu-drive/feed/</wfw:commentRss>
		<slash:comments>34</slash:comments>
		</item>
		<item>
		<title>Ask The Readers: New Computer System Suggestions</title>
		<link>http://www.ghacks.net/2009/09/14/ask-the-readers-new-computer-system-suggestions/</link>
		<comments>http://www.ghacks.net/2009/09/14/ask-the-readers-new-computer-system-suggestions/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 07:26:25 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[ask the readers]]></category>
		<category><![CDATA[building a pc]]></category>
		<category><![CDATA[computer hardware]]></category>
		<category><![CDATA[computer system]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=16317</guid>
		<description><![CDATA[My plan is to build a new computer system after Windows 7 is released to install the new operating system on it and retire my old Windows XP system. I have done little research until now and decided to tap into the best possible resource of computer knowledge there is: the Ghacks readers. I do [...]]]></description>
			<content:encoded><![CDATA[<p>My plan is to build a new computer system after <a href="http://windows7news.com/">Windows 7</a> is released to install the new operating system on it and retire my old Windows XP system. I have done little research until now and decided to tap into the best possible resource of computer knowledge there is: the Ghacks readers. I do know what I want to do with the computer system and I also know some minimum specs that I would like to see. It would be nice if everyone with a firm opinion could weight in and give me their take on which hardware components I should buy for the new PC.</p>
<p>I&#8217;m usually favoring the &#8220;second-best&#8221; part or device over the best, e.g. not the latest and greatest video card for $600+ but one for $300 that is not super fast but still fast enough for everything.</p>
<p><span id="more-16317"></span><strong>Usage:</strong></p>
<p>I need the PC for blogging and research on the Internet mainly. I want to view movies and listen to music. I also want to work with Visual Studio and play some games with friends every now and then. </p>
<p><strong>Components:</strong></p>
<p><strong>CPU:</strong> Intel I7 9xx or 8xx. If you have other suggestions or favor a specific processor let me know<br />
<strong>Computer Memory:</strong> 8GB or more<br />
<strong>Motherboard:</strong> No favorite yet. Do not need a lot of extras like firewire, bluetooth, infrared connections on the board. Should have a fast network connection build in.<br />
<strong>Video Card:</strong> No idea. Do not want to pay more than $300 for the video card. I currently have a ATI 4870. Are there any DirectX 11 cards out there yet? Video card should not make a lot of noise.<br />
<strong>Hard Drives:</strong> I need at least 2 Terabyte. No more than two hard drives. Currently thinking about getting two 1.5 Terabyte drives. Hard drives should not make lots of noise. More important than speed to me. I do not need Raid but I though about having a faster boot hard drive and two slower data drives. Would you favor a fast hard drive (or two in Raid) or SSD drive for that task?<br />
<strong>SSD Drives:</strong> I&#8217;m not sure if I want an SSD drive. Are there any next gen SSD drives out there that do not get slower over time?<br />
<strong>Sound Card:</strong> Not necessarily needed but if there is a good one for little money I take it. Otherwise it should be onboard sound.<br />
<strong>Case:</strong> Mid-tower is fine. I do not care about color but it should have a few connectors on the front (e.g. USB)<br />
<strong>Power Unit:</strong> It has to be quiet. Should supply enough power though for the computer system.<br />
<strong>Computer Monitor:</strong> Do not need one</p>
<p>Did I leave anything out? I&#8217;m keen to read your suggestions. I also do not have a problem waiting another few months before I build the system in case some ubercool hardware comes out in that time that is worth waiting for.</p>

	Tags: <a href="http://www.ghacks.net/tag/ask-the-readers/" title="ask the readers" rel="tag">ask the readers</a>, <a href="http://www.ghacks.net/tag/building-a-pc/" title="building a pc" rel="tag">building a pc</a>, <a href="http://www.ghacks.net/tag/computer-hardware/" title="computer hardware" rel="tag">computer hardware</a>, <a href="http://www.ghacks.net/tag/computer-system/" title="computer system" rel="tag">computer system</a>, <a href="http://www.ghacks.net/tag/pc/" title="pc" rel="tag">pc</a>, <a href="http://www.ghacks.net/tag/windows-7/" title="windows 7" rel="tag">windows 7</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/07/12/power-supply-calculator/" title="Power Supply Calculator (July 12, 2009)">Power Supply Calculator</a> (13)</li>
	<li><a href="http://www.ghacks.net/2008/03/11/building-a-pc-march-progress/" title="Building a PC March Progress (March 11, 2008)">Building a PC March Progress</a> (5)</li>
	<li><a href="http://www.ghacks.net/2006/11/29/zombie-city-tactics/" title="Zombie City Tactics (November 29, 2006)">Zombie City Tactics</a> (0)</li>
	<li><a href="http://www.ghacks.net/2009/10/12/winshake-adds-aero-peek-and-share-to-windows-vista-and-xp/" title="WinShake Adds Aero Peek And Share To Windows Vista and XP (October 12, 2009)">WinShake Adds Aero Peek And Share To Windows Vista and XP</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/09/23/windows-media-player-light/" title="Windows Media Player Light (September 23, 2008)">Windows Media Player Light</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/09/14/ask-the-readers-new-computer-system-suggestions/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Add a second drive to your Ubuntu server</title>
		<link>http://www.ghacks.net/2009/09/10/add-a-second-drive-to-your-ubuntu-server/</link>
		<comments>http://www.ghacks.net/2009/09/10/add-a-second-drive-to-your-ubuntu-server/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 19:20:12 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Tutorials Advanced]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[ext3 file system]]></category>
		<category><![CDATA[fstab]]></category>
		<category><![CDATA[mount drives]]></category>
		<category><![CDATA[new linux drive]]></category>
		<category><![CDATA[ubuntu server]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=16193</guid>
		<description><![CDATA[You have your Ubuntu Server up and running (with the help of &#8220;Installing Ubuntu Server 9.04&#8220;) but you&#8217;re afraid you&#8217;ll run out of room on your drive. To solve this problem you have installed a new hard drive, but because this is a GUI-less server you do not have access to the user-friendly GUI tools [...]]]></description>
			<content:encoded><![CDATA[<p>You have your Ubuntu Server up and running (with the help of &#8220;<a title="Installing Ubuntu Server 9.04" href="http://www.ghacks.net/2009/09/03/installing-ubuntu-server-9-04/" target="_blank">Installing Ubuntu Server 9.04</a>&#8220;) but you&#8217;re afraid you&#8217;ll run out of room on your drive. To solve this problem you have installed a new hard drive, but because this is a GUI-less server you do not have access to the user-friendly GUI tools that make this job easy. So you&#8217;re going to have to install this drive with the help of the command line.</p>
<p>GASP!</p>
<p>Never fear, it&#8217;s not that hard. Just a few commands and you&#8217;ll be up and running with your new hard drive installed on your server. This article will assume the physical drive is already installed on your machine.</p>
<p><span id="more-16193"></span>I am going to make a couple of assumptions here, for the sake of simplicity for this article. The first assumption is that the new drive will be mounted to the directory <strong>/data</strong>. The next assumption is that you want this directory to be both readable and writable by all users on the system. Another assumption is that you will want the drive to be formatted with the ext3 file system with just one partition. Finally I will assume you want this drive to be automatically mounted upon boot of the system.</p>
<p>With that out of the way, let&#8217;s get down to business.</p>
<p>Once you boot the machine with the new drive log into the console and issue the command:</p>
<p><span style="background-color: #ffffff">dmesg</span></p>
<p>Near the bottom of the output you should see where the disk is located. it will be <span style="background-color: #ffffff">something like:</span></p>
<p><em>/dev/sdb</em></p>
<p>So let&#8217;s assume it is on <strong>/dev/sdb.</strong></p>
<p>If you can&#8217;t figure it out where the drive is located  with <em>dmesg</em> issue the command:</p>
<p><em>sudo fdisk -l</em></p>
<p>The above command will report something like:</p>
<p><code>/dev/sda1   *           1       18709   150280011   83  Linux<br />
/dev/sda2           18710       19457     6008310    5  Extended<br />
/dev/sda5           18710       19457     6008278+  82  Linux swap / Solaris</code></p>
<p>But will include a listing for your new drive. If you only see listings for <strong>/dev/sda*</strong> then your new drive has not been recognized and there is a problem with the physical installation.</p>
<p>Once you know where your drive is located (again we&#8217;ll use <strong>/dev/sdb</strong> for our example) it&#8217;s time to create a new directory where this drive will be mounted. We are mounting our drive to the directory <strong>/data </strong><span style="background-color: #ffffff">so we&#8217;ll create this directory with the following command:</span></p>
<p><em>sudo mkdir /data</em></p>
<p>Now let&#8217;s make it available to all users:</p>
<p><em>sudo chmod -R 777 /data</em></p>
<p>With a place to mount the drive, it&#8217;s time to format the new drive. The formatting will be done with the command:</p>
<p><em>sudo mkfs.ext3 /dev/sdb</em></p>
<p>When this is complete you are ready to mount the drive. Before you edit fstab entry (so the drive will be automatically mounted) make sure it can be successfully mounted <span style="background-color: #ffffff">with the command:</span></p>
<p><em>sudo mount /dev/sdb /data</em></p>
<p>If this is successful let&#8217;s create an entry in <strong>/etc/fstab</strong>. open that <span style="background-color: #ffffff">file with the command</span></p>
<p><em>sudo nano /etc/fstab</em></p>
<p>Now add the following entry at the end of that file:</p>
<p><code>/dev/sdb /data  ext3 defaults 0 0</code></p>
<p>Once you save that file, mount the drive (without having to reboot) with the command:</p>
<p><em>sudo mount -a</em></p>
<p>To make sure the drive mounted successfully issue the command:</p>
<p><em>df</em></p>
<p>The above should include in the report:</p>
<p><em>/dev/sdb   /data</em></p>
<p>If that&#8217;s the case, success! You can run one file test by trying to write a file to the new drive with the command:</p>
<p><em>touch /data/test</em></p>
<p>If you can write that file all is well.</p>
<p><strong>Final thoughts</strong></p>
<p>Yes it is a bit more complicated than adding a new drive when you have GUI tools available, but it&#8217;s not anything that can&#8217;t be accomplished by the average user. If you are not afraid of the command line, you can add a second drive in Ubuntu with ease.</p>

	Tags: <a href="http://www.ghacks.net/tag/ext3-file-system/" title="ext3 file system" rel="tag">ext3 file system</a>, <a href="http://www.ghacks.net/tag/fstab/" title="fstab" rel="tag">fstab</a>, <a href="http://www.ghacks.net/tag/mount-drives/" title="mount drives" rel="tag">mount drives</a>, <a href="http://www.ghacks.net/tag/new-linux-drive/" title="new linux drive" rel="tag">new linux drive</a>, <a href="http://www.ghacks.net/tag/ubuntu-server/" title="ubuntu server" rel="tag">ubuntu server</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/04/02/which-ubuntu-derivative-is-right-for-you/" title="Which Ubuntu Derivative Is Right For You? (April 2, 2009)">Which Ubuntu Derivative Is Right For You?</a> (16)</li>
	<li><a href="http://www.ghacks.net/2009/10/03/use-this-iptables-script-for-webmail-server-security/" title="Use this iptables script for Web/Mail server security (October 3, 2009)">Use this iptables script for Web/Mail server security</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/01/03/understanding-linux-etcfstab/" title="Understanding Linux /etc/fstab (January 3, 2009)">Understanding Linux /etc/fstab</a> (6)</li>
	<li><a href="http://www.ghacks.net/2009/04/06/keep-logged-in-users-informed-with-motd/" title="Keep logged in users informed with motd (April 6, 2009)">Keep logged in users informed with motd</a> (0)</li>
	<li><a href="http://www.ghacks.net/2009/09/03/installing-ubuntu-server-9-04/" title="Installing Ubuntu Server 9.04 (September 3, 2009)">Installing Ubuntu Server 9.04</a> (20)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/09/10/add-a-second-drive-to-your-ubuntu-server/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>XNJB: Transfer music to and from a MTP MP3 player on a Mac</title>
		<link>http://www.ghacks.net/2009/09/05/xnjb-transfer-music-to-and-from-a-mtp-mp3-player-on-a-mac/</link>
		<comments>http://www.ghacks.net/2009/09/05/xnjb-transfer-music-to-and-from-a-mtp-mp3-player-on-a-mac/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 23:21:14 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[creative]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[libmtp]]></category>
		<category><![CDATA[libnjb]]></category>
		<category><![CDATA[libraries]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[media transfer protocol]]></category>
		<category><![CDATA[mp3-player]]></category>
		<category><![CDATA[mtp]]></category>
		<category><![CDATA[njb]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[portable devices]]></category>
		<category><![CDATA[xnjb]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=16041</guid>
		<description><![CDATA[When I switched to a Mac, I did not purchase an iPod for a few months. I previously had a Creative Zen Vision M media player. Unfortunately, this device was not mass storage, but utilised &#8216;Media Transfer Protocol&#8217;. Whilst several pieces of software on Windows provide the facility to move music to the device, OS [...]]]></description>
			<content:encoded><![CDATA[<p>When I switched to a Mac, I did not purchase an iPod for a few months. I previously had a Creative Zen Vision M media player. Unfortunately, this device was not mass storage, but utilised &#8216;Media Transfer Protocol&#8217;. Whilst several pieces of software on Windows provide the facility to move music to the device, OS X or iTunes has no integrated support.</p>
<p>Media Transfer Protocol (MTP) is utilised on a range of devices, but especially so by Creative. Creative Zens (and their variants) utilise the protocol. Whilst the Creative NOMAD isn&#8217;t MTP, it too uses an awkward protocol not natively supported by OS X. The infamous Zune (in the eyes of an Apple fanboy) too uses MTP, however, Microsoft make it very difficult to transfer data to.</p>
<p><a href="http://www.wentnet.com/projects/xnjb/index.html">XNJB</a> is a piece of software that provides a graphical front-end to a libnjb and libmtp: free and open source libraries that allow communication with devices like Creative NOMADs and Creative Zens. Unfortunately, neither support the Zune, due to additional restrictions Microsoft put in place. The libraries work on other POSIX operating systems, like Linux, but XNJB does not.</p>
<p><span id="more-16041"></span>XNJB allows users to upload and download songs from their media players, for ID3 data to be edited and devices searched. All of this has to be done within the software; it is not integrated into iTunes or Finder.</p>
<p>The transfer of data felt a bit slow to me, but I expect this is primarily due to the messiness of my library and the nature of Media Transfer Protocol.</p>
<p>This software is, however, a useful tool when you first got the Mac. I do, though, doubt you could realistically continue to use a MTP device successfully with OS X. Naturally, you could use it inside Boot Camp or a virtual machine, but in my opinion, that too is not an ideal option.</p>
<p><a href="http://www.wentnet.com/projects/xnjb/device-list.html">Compatible devices are listed on their website.</a></p>

	Tags: <a href="http://www.ghacks.net/tag/apple/" title="apple" rel="tag">apple</a>, <a href="http://www.ghacks.net/tag/creative/" title="creative" rel="tag">creative</a>, <a href="http://www.ghacks.net/tag/ipod/" title="iPod" rel="tag">iPod</a>, <a href="http://www.ghacks.net/tag/libmtp/" title="libmtp" rel="tag">libmtp</a>, <a href="http://www.ghacks.net/tag/libnjb/" title="libnjb" rel="tag">libnjb</a>, <a href="http://www.ghacks.net/tag/libraries/" title="libraries" rel="tag">libraries</a>, <a href="http://www.ghacks.net/tag/mac/" title="mac" rel="tag">mac</a>, <a href="http://www.ghacks.net/tag/media-transfer-protocol/" title="media transfer protocol" rel="tag">media transfer protocol</a>, <a href="http://www.ghacks.net/tag/mp3-player/" title="mp3-player" rel="tag">mp3-player</a>, <a href="http://www.ghacks.net/tag/mtp/" title="mtp" rel="tag">mtp</a>, <a href="http://www.ghacks.net/tag/njb/" title="njb" rel="tag">njb</a>, <a href="http://www.ghacks.net/tag/os-x/" title="os x" rel="tag">os x</a>, <a href="http://www.ghacks.net/tag/portable-devices/" title="portable devices" rel="tag">portable devices</a>, <a href="http://www.ghacks.net/tag/xnjb/" title="xnjb" rel="tag">xnjb</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/06/16/sync-itunes-with-non-ipod-mp3-players/" title="Sync iTunes with non iPod mp3 players (June 16, 2007)">Sync iTunes with non iPod mp3 players</a> (11)</li>
	<li><a href="http://www.ghacks.net/2008/04/24/sync-any-mp3-player-with-itunes/" title="Sync any mp3 player with iTunes (April 24, 2008)">Sync any mp3 player with iTunes</a> (2)</li>
	<li><a href="http://www.ghacks.net/2007/02/06/replace-itunes-with-floola/" title="Replace iTunes with Floola (February 6, 2007)">Replace iTunes with Floola</a> (12)</li>
	<li><a href="http://www.ghacks.net/2006/12/18/add-features-to-your-mp3-player/" title="Add Features to your MP3 Player (December 18, 2006)">Add Features to your MP3 Player</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/10/12/winamp-ipod-plugin/" title="Winamp iPod Plugin (October 12, 2006)">Winamp iPod Plugin</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/09/05/xnjb-transfer-music-to-and-from-a-mtp-mp3-player-on-a-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gain more battery life from your Linux-based laptop with powertop</title>
		<link>http://www.ghacks.net/2009/09/01/gain-more-battery-life-from-your-linux-based-laptop-with-powertop/</link>
		<comments>http://www.ghacks.net/2009/09/01/gain-more-battery-life-from-your-linux-based-laptop-with-powertop/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 17:59:58 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mobile Computing]]></category>
		<category><![CDATA[Notebooks]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[laptop battery]]></category>
		<category><![CDATA[laptop battery life]]></category>
		<category><![CDATA[linux laptop]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=15919</guid>
		<description><![CDATA[If your laptop is running Linux you might not be happy with the battery life you are getting. There are numerous reasons for the possible extra drain on your battery. Some of the biggest issues are: Hard drive spin-downs, interrupts, and power management. Figuring out how to make these adjustments to your kernel (or subsystems) [...]]]></description>
			<content:encoded><![CDATA[<p>If your laptop is running Linux you might not be happy with the battery life you are getting. There are numerous reasons for the possible extra drain on your battery. Some of the biggest issues are: Hard drive spin-downs, interrupts, and power management. Figuring out how to make these adjustments to your kernel (or subsystems) to gain a bit of extra battery life would take more time googling than you would probably prefer. Fortunately there is a single application available to take care of this for you. Powertop is one of those tools every user of Linux on a laptop should have installed &#8211; especially if your laptop depends primarily on its battery for life.</p>
<p><a title="Powertop" href="http://www.lesswatts.org/projects/powertop/" target="_blank">Powertop</a> was created by Lesswatts.org with the sole purpose of helping users find those programs and/or systems that are using too much power. The end result? More battery life for you to enjoy. Power top is easy to install and use. Powertop is a curses-based application so it is run inside of a terminal very much like the Top application. Don&#8217;t expect a fancy GUI here, it&#8217;s text-based but still user-friendly. In this article you will find out how to install Powertop and use it to get the most out of your battery.</p>
<p><span id="more-15919"></span><strong>Installing Powertop</strong></p>
<p>So long as you are using a modern release, you should find Powertop in your distributions&#8217; repositories. And since Powertop is a terminal-based application, I will illustrate how to install via command line.</p>
<p>The steps are simple:</p>
<ol>
<li>Open up a terminal window.</li>
<li>Issue the command <em>sudo install powertop.</em></li>
<li>Click &#8216;y&#8217; to okay the installation.</li>
</ol>
<p>That&#8217;s it. Powertop is now ready for you to use.</p>
<p><strong>Using Powertop</strong></p>
<div id="attachment_15924" class="wp-caption alignleft" style="width: 528px"><a rel="attachment wp-att-15924" href="http://www.ghacks.net/2009/09/01/gain-more-battery-life-from-your-linux-based-laptop-with-powertop/powertop/"><img class="size-full wp-image-15924" src="http://www.ghacks.net/wp-content/uploads/2009/09/powertop.png" alt="Figure 1" width="518" height="371" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>With your terminal still open issue the command <em>sudo powertop</em> to start the application. You can not run Powertop as the standard user because Powertop has to collect and modify information that the standard user has no access to. Fortunately sudo will do the trick.</p>
<p>What you see will differ, depending upon your distribution, installation, configuration, etc.</p>
<p>As you can see ,in Figure 1, Powertop has a few suggestions to aid my laptop. The biggest issue is wakeups and Powertop is giving me the top causes for wakeups.</p>
<p>As you can also see, Powertop offers suggestions to solve the various problems. Not only does Powertop make suggestions, it will offer to take care of the suggestion for you. In the instance above you can see Powertop is suggesting I disable the hal system from polling my CD drive. You can do this with the command:</p>
<p><em>hal-disable-polling &#8211;device /dev/cdrom</em></p>
<p>or you can just hit the &#8216;K&#8217; key and Powertop will take care of this for you.</p>
<p>Once you take care of this suggestion (whether you let Powertop take care of it or you do it manually) Powertop will then suggest another way for you get more power from your laptop and will offer to take care of the issue for you. You can continue on like this until Powertop has resolved every issue it can find.</p>
<p><strong>Final thoughts</strong></p>
<p>Powertop is an effective means of helping your laptop gain more battery life without having to recompile a kernel, manually edit a configuration file, or issue any commands (outside of starting the application). After following the suggestions of Powertop you should experience a noticeable difference in your battery life.</p>

	Tags: <a href="http://www.ghacks.net/tag/laptop-battery/" title="laptop battery" rel="tag">laptop battery</a>, <a href="http://www.ghacks.net/tag/laptop-battery-life/" title="laptop battery life" rel="tag">laptop battery life</a>, <a href="http://www.ghacks.net/tag/linux-laptop/" title="linux laptop" rel="tag">linux laptop</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/09/26/vista-battery-saver/" title="Vista Battery Saver (September 26, 2008)">Vista Battery Saver</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/08/20/speedswitchxp-laptop-cpu-frequency-control/" title="SpeedswitchXP Laptop CPU Frequency Control (August 20, 2008)">SpeedswitchXP Laptop CPU Frequency Control</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/12/29/notebook-battery-monitor/" title="Notebook Battery Monitor (December 29, 2008)">Notebook Battery Monitor</a> (9)</li>
	<li><a href="http://www.ghacks.net/2009/06/04/laptop-battery-monitor-battcursor/" title="Laptop Battery Monitor BattCursor (June 4, 2009)">Laptop Battery Monitor BattCursor</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/08/25/battery-care-manages-laptop-batteries/" title="Battery Care Manages Laptop Batteries (August 25, 2009)">Battery Care Manages Laptop Batteries</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/09/01/gain-more-battery-life-from-your-linux-based-laptop-with-powertop/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Computer Repair Flowcharts</title>
		<link>http://www.ghacks.net/2009/09/01/computer-repair-flowcharts/</link>
		<comments>http://www.ghacks.net/2009/09/01/computer-repair-flowcharts/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 09:23:31 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[computer hardware repair]]></category>
		<category><![CDATA[computer repair]]></category>
		<category><![CDATA[cpu troubleshooting]]></category>
		<category><![CDATA[hard drive failure]]></category>
		<category><![CDATA[modem failure]]></category>
		<category><![CDATA[motherboard troubleshooting]]></category>
		<category><![CDATA[network troubleshooting]]></category>
		<category><![CDATA[power supply failure]]></category>
		<category><![CDATA[ram troubleshooting]]></category>
		<category><![CDATA[repair computer]]></category>
		<category><![CDATA[video card diagnostics]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=15902</guid>
		<description><![CDATA[Diagnosing computer problems can be a very time consuming process especially for computer users who have no or only basic computer repair process. These users only have a few options left if their computer system fails. One being to ask a proficient friend or colleague. The other option is to pay for professional computer repair [...]]]></description>
			<content:encoded><![CDATA[<p>Diagnosing computer problems can be a very time consuming process especially for computer users who have no or only basic computer repair process. These users only have a few options left if their computer system fails. One being to ask a proficient friend or colleague. The other option is to pay for professional computer repair which can be costly and time consuming depending where the computer system was bought and where it should be repaired.</p>
<p>Computer repair flowcharts can aid even inexperienced users to analyse the computer hardware problem with the possibility to repair it directly without having to spend money on professional computer repair. The computer repair flowcharts that are available on the website in pdf and image format are part of a computer repair book that contains additional diagnostic flowcharts that are not available on the website.</p>
<p><span id="more-15902"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/09/computer_repair-499x296.jpg" alt="computer repair" title="computer repair" width="499" height="296" class="alignnone size-medium wp-image-15903" /></p>
<p>The <a href="http://www.fonerbooks.com/pcrepair.htm">following</a> computer repair flowcharts are available for free on the website:</p>
<ul>
<li>Power Supply Failure</li>
<li>Video Card Diagnostics</li>
<li>CPU, RAM and Motherboard Troubleshooting</li>
<li>Hard Drive Failure</li>
<li>CD and DVD Troubleshooting</li>
<li>Modem Failure</li>
<li>Sound Card Diagnostics</li>
<li>Network Troubleshooting </li>
</ul>
<p>Each computer repair flowchart guides the user through a series of Yes or No questions. The hard drive repair flowchart for example beings by asking if the drive is detected during the boot process and goes from there to cover all eventualities that can lead to a hard drive problem. Computer repair experience or at least some knowledge of computer hardware helps while working with the computer repair flowchart as it sometimes refers to specific computer hardware or features provided by the hardware.</p>
<p>The computer repair charts refer to each other. The Motherboard, CPU and RAM troubleshooting section for instance links to the Power Supply Failure and Video Card Diagnostics flowcharts which means that the user has to open these computer repair charts to continue with the repair.</p>

	Tags: <a href="http://www.ghacks.net/tag/computer-hardware-repair/" title="computer hardware repair" rel="tag">computer hardware repair</a>, <a href="http://www.ghacks.net/tag/computer-repair/" title="computer repair" rel="tag">computer repair</a>, <a href="http://www.ghacks.net/tag/cpu-troubleshooting/" title="cpu troubleshooting" rel="tag">cpu troubleshooting</a>, <a href="http://www.ghacks.net/tag/hard-drive-failure/" title="hard drive failure" rel="tag">hard drive failure</a>, <a href="http://www.ghacks.net/tag/modem-failure/" title="modem failure" rel="tag">modem failure</a>, <a href="http://www.ghacks.net/tag/motherboard-troubleshooting/" title="motherboard troubleshooting" rel="tag">motherboard troubleshooting</a>, <a href="http://www.ghacks.net/tag/network-troubleshooting/" title="network troubleshooting" rel="tag">network troubleshooting</a>, <a href="http://www.ghacks.net/tag/power-supply-failure/" title="power supply failure" rel="tag">power supply failure</a>, <a href="http://www.ghacks.net/tag/ram-troubleshooting/" title="ram troubleshooting" rel="tag">ram troubleshooting</a>, <a href="http://www.ghacks.net/tag/repair-computer/" title="repair computer" rel="tag">repair computer</a>, <a href="http://www.ghacks.net/tag/video-card-diagnostics/" title="video card diagnostics" rel="tag">video card diagnostics</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/10/10/rizone%e2%80%99s-power-tools/" title="Rizone’s Power Tools (October 10, 2009)">Rizone’s Power Tools</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/06/12/online-network-troubleshooting-analyzer-netalyzr/" title="Online Network Troubleshooting Analyzer Netalyzr (June 12, 2009)">Online Network Troubleshooting Analyzer Netalyzr</a> (29)</li>
	<li><a href="http://www.ghacks.net/2009/07/27/fix-winsock-errors-with-winsock-repair/" title="Fix Winsock Errors With Winsock Repair (July 27, 2009)">Fix Winsock Errors With Winsock Repair</a> (11)</li>
	<li><a href="http://www.ghacks.net/2009/02/05/computer-repair-utility-kit/" title="Computer Repair Utility Kit (February 5, 2009)">Computer Repair Utility Kit</a> (18)</li>
	<li><a href="http://www.ghacks.net/2009/07/24/computer-repair-toolkit-for-tech-support/" title="Computer Repair Toolkit For Tech Support (July 24, 2009)">Computer Repair Toolkit For Tech Support</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/09/01/computer-repair-flowcharts/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Map your network with Zenmap</title>
		<link>http://www.ghacks.net/2009/08/09/map-your-network-with-zenmap/</link>
		<comments>http://www.ghacks.net/2009/08/09/map-your-network-with-zenmap/#comments</comments>
		<pubDate>Sun, 09 Aug 2009 19:47:47 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[network mapping]]></category>
		<category><![CDATA[network scanner]]></category>
		<category><![CDATA[nmap]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=15190</guid>
		<description><![CDATA[Nmap is one of the most useful network discovery tools you will ever use. Nmap allows you to explore networks of any size to determine the following information:

Port details
Host details
State
Service
Devices
Addresses
and much, much more

Nmap is one of those applications you will need to open anytime you see issues on your network, need to get information about [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Nmap" href="http://www.nmap.org" target="_blank">Nmap</a> is one of the most useful network discovery tools you will ever use. Nmap allows you to explore networks of any size to determine the following information:</p>
<ul>
<li>Port details</li>
<li>Host details</li>
<li>State</li>
<li>Service</li>
<li>Devices</li>
<li>Addresses</li>
<li>and much, much more</li>
</ul>
<p>Nmap is one of those applications you will need to open anytime you see issues on your network, need to get information about hosts, track down an IP address, etc. Nmap is flexible, powerful, deployed all over the world (it is in the top 10 programs on <a title="Freshmeat" href="http://www.freshmeat.net" target="_blank">Freshmeat</a>), easy to use, well documented, cross platform (Linux, OS X, and Windows ) and (best of all) FREE!</p>
<p>But Nmap is a commmand-line only tool. Most users don&#8217;t want to monkey with the command line. Fortunately there are plenty of front-end tools for command line equivalents. For Nmap you can use the user-friend <a title="Zenmap" href="http://www.nmap.org/zenmap" target="_blank">Zenmap</a>. And how can you get up to speed quickly with Zenmap? Easy&#8230;you read this tutorial on how to run a scan on your entire LAN and then read the results.</p>
<p><span id="more-15190"></span><strong>Getting and installing</strong></p>
<p>To install Zenmap you will have to install Nmap along with it. You can do this one of two ways: with Synaptic (or another GUI front end for your installation tool), or from the command line. To install via your Add/Remove Software tool follow these steps:</p>
<ol>
<li>Open up your Add/Remove Software utility.</li>
<li>Search for Nmap.</li>
<li>Mark Nmap for installation.</li>
<li>Search for Zenmap.</li>
<li>Mark Zenmap for installation.</li>
<li>Click Apply to install.</li>
</ol>
<p>Once installed you will see the entry for Zenmap in your Internet (or Network) sub-menu of your Applications or Main menu. You will want to run Zenmap as the root user because, most likely, your standard user will not have access to the networking devices.</p>
<p><strong>Running Zenmap</strong></p>
<div id="attachment_15192" class="wp-caption alignleft" style="width: 390px"><a rel="attachment wp-att-15192" href="http://www.ghacks.net/2009/08/09/map-your-network-with-zenmap/zenmap/"><img class="size-full wp-image-15192 " src="http://www.ghacks.net/wp-content/uploads/2009/08/zenmap.png" alt="Figure 1" width="380" height="381" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>When you fire up Zenmap you will see the main window (see Figure 1) which will be empty of scans (because none have been issued as of yet).</p>
<p>To start a new scan you can do one of two things: You can enter a target IP (or range), select the type of scan, and hit Scan. Or you can open up the Command Wizard to construct a much more specific type of scan.</p>
<p>If you opt for just entering in your target(s) here&#8217;s how it works. The first thing you do is enter a target IP address. If you want to use a range of addresses the address would look like this: 192.168.1.1-200. NOTE: There are no spaces in the address.</p>
<p>You then need to select the type of scan to run. There are eight different types of scans to run. The intense scan will give you the most information and the Operating System Detection will give you the least amount of information.</p>
<p>The second method of setting up a scan is the Command Wizard. When you click this button you will walk through the following steps:</p>
<ul>
<li>Novice/Expert: Select the level of configuration you want to use.</li>
<li>Profile/Command: Create a new profile or create a command to run once.</li>
<li>Profile Details: If you go the Profile route you will have to enter the profile details.</li>
<li>Scan Type: TCP or Non-TCP scan types as well as inclusion of Services version and Operating system detection.</li>
<li>Ping Options: ICMP, ACK, SYN, IPPronto, etc details (if needed).</li>
<li>Scripting Options: If you need to add special scripts to your scan.</li>
<li>Target Options: Exclude hosts as well as configure ports to scan.</li>
<li>Source Options: Use decoys, set source address, set source port options if needed.</li>
<li>Misc Options: Various options to include.</li>
</ul>
<p>Once you have finished configuring your scan via the Wizard you can hit the Scan button. However, if you opted to go the Profile route you will need to select your new profile from the Profile dropdown list.</p>
<p><strong>Scan results</strong></p>
<div id="attachment_15195" class="wp-caption alignright" style="width: 390px"><a rel="attachment wp-att-15195" href="http://www.ghacks.net/2009/08/09/map-your-network-with-zenmap/scan_results/"><img class="size-full wp-image-15195 " src="http://www.ghacks.net/wp-content/uploads/2009/08/scan_results.png" alt="Figure 2" width="380" height="381" /></a><p class="wp-caption-text">Figure 2</p></div>
<p>After your scan has completed you can take a look at your scan results. There are five tabs that will give you various information about the scan. Obviously the Scan Details tab is where you will get a good summation of your scan. To get the low-level details of your scan take a look at the Nmap Output tab. As your scan is running this is the only tab you can view &#8211; and it will give you every piece of information you need.</p>
<p><strong>Saving scans</strong></p>
<p>A nice feature of Zenmap is the ability to save scans. Once you have a scan completed you can save your scan and open it for later viewing. The only downfall of this is the Nmap Output is a bit cramped together. While the scan is running the output is displayed in real time so it&#8217;s easy to read. When not in real time this output can really be a pain to get through. Fortunately, between the other tabs, you can get all of the information you need quickly and easily.</p>
<p><strong>Final thoughts</strong></p>
<p>Zenmap makes easy work out of the complicated Nmap command utility. If you have any need to map a network or analyze your network topography, Zenmap is the way to go.</p>

	Tags: <a href="http://www.ghacks.net/tag/network-mapping/" title="network mapping" rel="tag">network mapping</a>, <a href="http://www.ghacks.net/tag/network-scanner/" title="network scanner" rel="tag">network scanner</a>, <a href="http://www.ghacks.net/tag/nmap/" title="nmap" rel="tag">nmap</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/08/23/softperfect-network-scanner/" title="Softperfect Network Scanner (August 23, 2008)">Softperfect Network Scanner</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/12/18/network-security-software-bothunter/" title="Network Security Software Bothunter (December 18, 2008)">Network Security Software Bothunter</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/06/19/map-your-network-with-lanmap/" title="Map your network with Lanmap (June 19, 2009)">Map your network with Lanmap</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/10/22/asset-scanning-with-nmap-and-ndiff/" title="Asset scanning with nmap and ndiff (October 22, 2009)">Asset scanning with nmap and ndiff</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/08/09/map-your-network-with-zenmap/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Eco-Friendly Printer RiTi Suggests Coffee And Tea Instead Of Ink</title>
		<link>http://www.ghacks.net/2009/08/07/eco-friendly-printer-riti-suggests-coffee-and-tea-instead-of-ink/</link>
		<comments>http://www.ghacks.net/2009/08/07/eco-friendly-printer-riti-suggests-coffee-and-tea-instead-of-ink/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 12:56:44 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[coffee ink]]></category>
		<category><![CDATA[computer printer]]></category>
		<category><![CDATA[eco-friendly printer]]></category>
		<category><![CDATA[printer]]></category>
		<category><![CDATA[printing]]></category>
		<category><![CDATA[riti printer]]></category>
		<category><![CDATA[tea ink]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=15117</guid>
		<description><![CDATA[Many computer users have one thing in common: They drink coffee, lots of it. The coffee dregs usually lands in the bin. This can be a thing of the past if the eco-friendly printer RiTi makes it from concept to prototype in the near future. The RiTi Printer replaces traditional printer ink with coffee or [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/08/eco-friendly_printer.jpg" alt="eco-friendly printer" title="eco-friendly printer" width="128" height="87" class="alignleft size-full wp-image-15118" />Many computer users have one thing in common: They drink coffee, lots of it. The coffee dregs usually lands in the bin. This can be a thing of the past if the eco-friendly printer RiTi makes it from concept to prototype in the near future. The RiTi Printer replaces traditional printer ink with coffee or tea dregs. Anyone who ever tried to print with coffee grounds knows that the colors are lighter than printouts with printer ink. They are on the other hand perfectly readable which might make them a good alternative for internal use.</p>
<p>The concept of the RiTi printer goes further than that. It does not require a power source for the actual printing process which is also something that traditional printers require. The printout is created by moving the ink case left and right manually. This obviously means that this method is not suited for printing out many papers at once. </p>
<p><span id="more-15117"></span><a href="http://www.ghacks.net/wp-content/uploads/2009/08/eco_friendly_printer.jpg"><img src="http://www.ghacks.net/wp-content/uploads/2009/08/eco_friendly_printer-500x375.jpg" alt="eco friendly printer" title="eco friendly printer" width="500" height="375" class="alignnone size-medium wp-image-15121" /></a><a href="http://www.ghacks.net/wp-content/uploads/2009/08/printer.jpg"><img src="http://www.ghacks.net/wp-content/uploads/2009/08/printer-500x375.jpg" alt="printer" title="printer" width="500" height="375" class="alignnone size-medium wp-image-15119" /></a><a href="http://www.ghacks.net/wp-content/uploads/2009/08/riti_printer.jpg"><img src="http://www.ghacks.net/wp-content/uploads/2009/08/riti_printer-500x375.jpg" alt="riti printer" title="riti printer" width="500" height="375" class="alignnone size-medium wp-image-15120" /></a></p>
<p>Users who work regularly with printers might not be inclined to give that new printer concept a try as it opens a can of questions and possible problems:</p>
<ul>
<li>It is not practicable to print many documents</li>
<li>The quality of the printout differs</li>
<li>Only black and white printouts</li>
<li>Coffee or tea dregs required to print</li>
</ul>
<p>The RiTi printer could on the other hand prove to be the printer of choice for environmentally interested users who do occasional printouts.</p>
<p>source <a href="http://www.core77.com/greenergadgets/entry.php?projectid=38">Greener Gadgets</a></p>

	Tags: <a href="http://www.ghacks.net/tag/coffee-ink/" title="coffee ink" rel="tag">coffee ink</a>, <a href="http://www.ghacks.net/tag/computer-printer/" title="computer printer" rel="tag">computer printer</a>, <a href="http://www.ghacks.net/tag/eco-friendly-printer/" title="eco-friendly printer" rel="tag">eco-friendly printer</a>, <a href="http://www.ghacks.net/tag/printer/" title="printer" rel="tag">printer</a>, <a href="http://www.ghacks.net/tag/printing/" title="printing" rel="tag">printing</a>, <a href="http://www.ghacks.net/tag/riti-printer/" title="riti printer" rel="tag">riti printer</a>, <a href="http://www.ghacks.net/tag/tea-ink/" title="tea ink" rel="tag">tea ink</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/03/10/id-card-photo-printing/" title="ID Card Photo Printing (March 10, 2009)">ID Card Photo Printing</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/05/24/hp-smart-web-printing/" title="HP Smart Web Printing (May 24, 2008)">HP Smart Web Printing</a> (5)</li>
	<li><a href="http://www.ghacks.net/2007/08/09/use-your-printer-and-scanner-as-a-copier/" title="Use your Printer and Scanner as a Copier (August 9, 2007)">Use your Printer and Scanner as a Copier</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/12/22/stalled-printer-repair/" title="Stalled Printer Repair (December 22, 2008)">Stalled Printer Repair</a> (7)</li>
	<li><a href="http://www.ghacks.net/2008/09/27/share-printer/" title="Share Printer (September 27, 2008)">Share Printer</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/08/07/eco-friendly-printer-riti-suggests-coffee-and-tea-instead-of-ink/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>External Hard Drives: How do I Choose Which One to Buy</title>
		<link>http://www.ghacks.net/2009/08/04/external-hard-drives-how-do-i-choose-which-one-to-buy/</link>
		<comments>http://www.ghacks.net/2009/08/04/external-hard-drives-how-do-i-choose-which-one-to-buy/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 15:45:39 +0000</pubDate>
		<dc:creator>Cheryl</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[ask the readers]]></category>
		<category><![CDATA[hard-drive]]></category>
		<category><![CDATA[portable storage]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=15030</guid>
		<description><![CDATA[Lately, I&#8217;ve realized that my computer is full of data and is close to its limit. Normally, I burn data onto a CD or DVD and then delete it off my system. The problem is that over time, the CDs have developed a few unreadable areas. So, I&#8217;ve pretty much lost a few chunks of [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-12279" src="http://www.ghacks.net/wp-content/uploads/2009/04/hard_drive.jpg" alt="hard drive" width="96" height="87" />Lately, I&#8217;ve realized that my computer is full of data and is close to its limit. Normally, I burn data onto a CD or DVD and then delete it off my system. The problem is that over time, the CDs have developed a few unreadable areas. So, I&#8217;ve pretty much lost a few chunks of data.</p>
<p>To combat this problem, I&#8217;ve decided its time for me to buy an external hard drive. I figure 500 GB is more than enough for me right now. What&#8217;s confusing me though is choosing which hard drive to buy. I&#8217;ve settled on a 2.5&#8243; drive that draws power from the USB port so I won&#8217;t have to worry about an external power source. After a fair amount of research and considering my budget, I&#8217;ve narrowed my choice down to these two:</p>
<p><a href="http://www.seagate.com/www/en-us/products/external/freeagent/freeagent_go/" target="_blank">Seagate FreeAgent Go</a><br />
<a href="http://www.transcendusa.com/Products/ModDetail.asp?ModNo=198" target="_blank">Transcend StoreJet 25M</a></p>
<p>I&#8217;m getting a lot of conflicting reviews about both drives which is why I&#8217;m asking the Ghacks readers to help me make my decision. Here are some of my queries:</p>
<p><span id="more-15030"></span><strong>Multiple OS support:</strong> My primary computer runs Windows XP but I also own a laptop that&#8217;s running Ubuntu. I&#8217;d prefer something that works out of the box with both but I&#8217;m not averse to a little tweaking if necessary.</p>
<p><strong>Partitioning:</strong> Would I need to partition my drive? I&#8217;m planning to segregate the data according to its format but can I just copy everything on it or should I create dedicated partitions? Should I leave some space free in case I want to install a portable version of an OS?</p>
<p><strong>Durability:</strong> What&#8217;s the point in spending all that cash if my HD&#8217;s going to conk out after a while? Is build quality a factor and how long can I expect the drive to last?</p>
<p>What do you think of my choices? Have I missed anything out? What are you using for external storage and are you happy with it? Let me know in the comments.</p>

	Tags: <a href="http://www.ghacks.net/tag/ask-the-readers/" title="ask the readers" rel="tag">ask the readers</a>, <a href="http://www.ghacks.net/tag/hard-drive/" title="hard-drive" rel="tag">hard-drive</a>, <a href="http://www.ghacks.net/tag/hardware/" title="Hardware" rel="tag">Hardware</a>, <a href="http://www.ghacks.net/tag/portable-storage/" title="portable storage" rel="tag">portable storage</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/07/23/got-my-ssd-any-questions-or-suggestions/" title="Got My SSD, Any Questions Or Suggestions? (July 23, 2008)">Got My SSD, Any Questions Or Suggestions?</a> (5)</li>
	<li><a href="http://www.ghacks.net/2006/01/19/your-keyboard-is-more-dirty-than-your-toilet/" title="Your keyboard is  more dirty than your toilet (January 19, 2006)">Your keyboard is  more dirty than your toilet</a> (1)</li>
	<li><a href="http://www.ghacks.net/2006/11/11/xbox-360-hd-can-be-connected-to-your-pc/" title="Xbox 360 HD can be connected to your pc (November 11, 2006)">Xbox 360 HD can be connected to your pc</a> (3)</li>
	<li><a href="http://www.ghacks.net/2005/11/11/why-qwerty-was-invented/" title="Why QWERTY was invented ! (November 11, 2005)">Why QWERTY was invented !</a> (0)</li>
	<li><a href="http://www.ghacks.net/2007/12/18/what-you-should-do-before-bringing-the-pc-in-for-repair/" title="What you should do before bringing the PC in for repair (December 18, 2007)">What you should do before bringing the PC in for repair</a> (11)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/08/04/external-hard-drives-how-do-i-choose-which-one-to-buy/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Adding a widescreen monitor in Linux</title>
		<link>http://www.ghacks.net/2009/08/03/adding-a-widescreen-monitor-in-linux/</link>
		<comments>http://www.ghacks.net/2009/08/03/adding-a-widescreen-monitor-in-linux/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 19:42:13 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tutorials Advanced]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[nvidia-settings]]></category>
		<category><![CDATA[widescreen monitor]]></category>
		<category><![CDATA[xorg.conf]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=15013</guid>
		<description><![CDATA[Recently I purchased a 23&#8243; wide screen monitor for my primary desktop PC. I had a feeling there would be a bit of an issue when I plugged it into my Elive Compiz installation that isn&#8217;t as user-friendly as, say, a Ubuntu installation. When I did plug it in it wasn&#8217;t horrible. The biggest problem [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I purchased a 23&#8243; wide screen monitor for my primary desktop PC. I had a feeling there would be a bit of an issue when I plugged it into my Elive Compiz installation that isn&#8217;t as user-friendly as, say, a Ubuntu installation. When I did plug it in it wasn&#8217;t horrible. The biggest problem I had was the new aspect ratio of the monitor (16:9) was causing everything on the screen to seem stretched with the previous resolution (1280&#215;1024).</p>
<p>The monitor itself was reporting that the ideal resolution was 1920&#215;1080, so I figured it was just a matter of adding the correct mode to the &#8220;Screen&#8221; section of my <strong>/etc/X11/xorg.conf </strong>file (see more about this in my article &#8220;<a title="Understanding the xorg.conf file" href="http://www.ghacks.net/2009/02/04/get-to-know-linux-understanding-xorgconf/" target="_blank">Get to know Linux: Understanding the xorg.conf file</a>&#8220;). It wasn&#8217;t that easy.</p>
<p><span id="more-15013"></span><strong>The first attempt</strong></p>
<p>Normally, when I needed to change a resolution, or just hard-code a resolution, I would add a sub section in the xorg.conf file like:</p>
<p><code>SubSection "Display"<br />
Modes "1920x1080" "1440x900" "1600x1200" "1440x1440" "1280x1024"      "1280x960" "1280x800" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"<br />
EndSubSection</code></p>
<p>Normally this would work, picking up the 1920&#215;1080 mode first. In this instance, however, this did not work. I will tell you that I am working with an NVidia Geforce 8800 chipset, so support in Linux is quite good. I know this isn&#8217;t an issue with the video card.  But no matter what resolution I used I was having no luck fighting the aspect ratio. The screen was either stretched too far horizontally, cropped at the bottom, or cropped all around.</p>
<p>I remembered there was an application that would gather information about my monitor and report it back. Maybe that was the key. The application is <em>ddcprobe</em> will give you the following information:</p>
<ul>
<li>Monitor name</li>
<li>Monitor VertRefresh values and HorizSync rates range</li>
<li>dpms</li>
</ul>
<p>To install this application issue the command:</p>
<p><em>sudo apt-get install xresprobe</em></p>
<p>and you are ready to check. To do this issue the command</p>
<p><em>ddcprobe</em></p>
<p>which will return something like this:</p>
<p><code>vbe: VESA 3.0 detected.<br />
oem: NVIDIA<br />
vendor: Build    070809.2<br />
product: MCP67 - mcp68-02 Chip Rev<br />
memory: 65536kb<br />
mode: 640x400x256<br />
mode: 640x480x256<br />
mode: 800x600x16<br />
mode: 800x600x256<br />
mode: 1024x768x16<br />
mode: 1024x768x256<br />
mode: 1280x1024x16<br />
mode: 1280x1024x256<br />
mode: 320x200x64k<br />
mode: 320x200x16m<br />
mode: 640x480x64k<br />
mode: 640x480x16m<br />
mode: 800x600x64k<br />
mode: 800x600x16m<br />
mode: 1024x768x64k<br />
mode: 1024x768x16m<br />
mode: 1280x1024x64k<br />
mode: 1280x1024x16m<br />
edid:<br />
edidfail</code></p>
<p>Notice the edidfail at the end. What happens is sometimes hardware will not respond properly when the EDID is queried. If this happens try to probe a few more times, you should get more information. In my case, the Samsung 2333sw would never report the full information.</p>
<p>Back to square one.</p>
<p><strong>NVidia</strong></p>
<p>Remember I mentioned I was using an NVidia GeForce chipset? That&#8217;s a good thing because there is a handy application called <em>nvidia-settings</em> that I had used with much success before. The only reason I hadn&#8217;t automatically tried this was because I have had issues with the Elive Compiz distribution and X when trying to use tools not standard to the distribution. And besides the Elive resolution tool wasn&#8217;t picking up the new monitor so there was no hope there.</p>
<p>Installing the new tool was as simple as issuing:</p>
<p><em>sudo apt-get install nvidia-settings</em></p>
<p>Running the tool was equally as easy by issuing the command:</p>
<p><em>sudo nvidia-settings</em></p>
<div id="attachment_15014" class="wp-caption alignleft" style="width: 470px"><a rel="attachment wp-att-15014" href="http://www.ghacks.net/2009/08/03/adding-a-widescreen-monitor-in-linux/nvidia_settings/"><img class="size-full wp-image-15014" src="http://www.ghacks.net/wp-content/uploads/2009/08/nvidia_settings.png" alt="Figure 1" width="460" height="360" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>When this application starts you will see a number of sections in the left pane (see Figure 1) that you can click on. Click on the X Server Display Configuration and you will then see a button for Detect Displays. Click on that and the new resolution should appear. The next step is to click the Save to X Configuration File which will write your changes.Finally click the Quit button to finish up.</p>
<p>In order to actually have the changes take effect you have to log out of X and log back in. Once you do you should see your new wide screen monitor in action.</p>
<p><strong>What did it write?</strong></p>
<p>The results of the <em>nvidia-settings</em> change to the xorg.conf file surprised me. It completely rewrote the &#8220;Screen&#8221; section of the Xorg configuration file. Here is the &#8220;Screen&#8221; section:</p>
<p><code>Section "Screen"<br />
Identifier     "Screen0"<br />
Device         "Videocard0"<br />
Monitor        "Monitor0"<br />
DefaultDepth    24<br />
Option         "TwinView" "0"<br />
Option         "TwinViewXineramaInfoOrder" "CRT-0"<br />
Option         "metamodes" "1920x1080 +0+0; 1440x900 +0+0; 1280x1024 +0+0; 1280x960 +0+0; 1280x800 +0+0; 1024x768 +0+0; 800x600 +0+0; 640x480 +0+0"<br />
SubSection     "Display"<br />
Depth       24<br />
EndSubSection<br />
EndSection</code></p>
<p>The TwinView option is usually used for dual head displays. In order for Xorg to get the 16:9 aspect ration it must use it and splice the two images together.</p>
<p><strong>Final thoughts</strong></p>
<p>Linux has come such a long way. But when you are attempting to configure a distribution that isn&#8217;t especially made to be Noobie-friendly don&#8217;t expect for tasks like attaching a widescreen monitor to be an out of the box experience. The good news is that there are plenty of tools to help you out of little situations such as this.</p>
<p>In the end the new monitor works and is as beautiful a display as I have seen.</p>

	Tags: <a href="http://www.ghacks.net/tag/nvidia-settings/" title="nvidia-settings" rel="tag">nvidia-settings</a>, <a href="http://www.ghacks.net/tag/widescreen-monitor/" title="widescreen monitor" rel="tag">widescreen monitor</a>, <a href="http://www.ghacks.net/tag/xorgconf/" title="xorg.conf" rel="tag">xorg.conf</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/02/04/get-to-know-linux-understanding-xorgconf/" title="Get To Know Linux: Understanding xorg.conf (February 4, 2009)">Get To Know Linux: Understanding xorg.conf</a> (7)</li>
	<li><a href="http://www.ghacks.net/2009/01/14/fedora-10-and-the-evolution-of-xorg/" title="Fedora 10 and the Evolution of Xorg (January 14, 2009)">Fedora 10 and the Evolution of Xorg</a> (8)</li>
	<li><a href="http://www.ghacks.net/2008/08/07/display-information-about-computer-monitors/" title="Display Information About Computer Monitors (August 7, 2008)">Display Information About Computer Monitors</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/08/03/adding-a-widescreen-monitor-in-linux/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
	</channel>
</rss>
