<?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; software</title>
	<atom:link href="http://www.ghacks.net/category/software/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, 09 Nov 2009 23:09:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Basic postgresql server setup</title>
		<link>http://www.ghacks.net/2009/11/10/basic-postgresql-server-setup/</link>
		<comments>http://www.ghacks.net/2009/11/10/basic-postgresql-server-setup/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 23:09:50 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tutorials Advanced]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[database user]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[postgresql]]></category>
		<category><![CDATA[ubuntu server]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=18345</guid>
		<description><![CDATA[So many tool require databases. If you are a web administrator or a company with large stores of information, then you know the importance of databases. One of the most oft-used databases available is MySQL. But that is not the only player on the court. Another cross platform object-relational database management tool is PostgreSQL. Many [...]]]></description>
			<content:encoded><![CDATA[<p>So many tool require databases. If you are a web administrator or a company with large stores of information, then you know the importance of databases. One of the most oft-used databases available is MySQL. But that is not the only player on the court. Another cross platform object-relational database management tool is <a title="PostgreSQL" href="http://www.postgresql.org/" target="_blank">PostgreSQL</a>. Many people refer to PostgreSQL as the Oracle of the open source world. That is because PostgreSQL is dense with features but not as fast as MySQL. And where MySQL is a simple to use database management tool, PostgreSQL is often seen as overly complicated.</p>
<p>Of course there are variations on that opinion. But that is neither here nor there. The purpose of this tutorial is to help you get a PostgreSQL server up and running quickly and easily. To make this simple we will make this a part of our Ubuntu Server series, so all you have to do is have your Ubuntu Server up and running (see my article &#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>&#8221; to get started.) Once you have that server up and running you are ready to get your PostgreSQL server up.</p>
<p><span id="more-18345"></span><strong>Installation</strong></p>
<p>The first thing you need to do is to install the necessary software. Since this is Ubuntu, it&#8217;s quite easy. Open up a terminal window and issue the command:</p>
<p><em>sudo apt-get install postgresql</em></p>
<p>Once the software is installed you are ready to set it all up.</p>
<p><strong>Change the default user password</strong></p>
<p>One of the first steps you want to take is to change the default password for the user postgres. Sine we are using Ubuntu you will have to use the sudo command to change to the postgres user like so:</p>
<p><em>sudo su &#8211; postgres</em></p>
<p>You will have to enter your sudo password after which you will now be issuing commands as the user postgres. The next step is to gain access to the postgresql command prompt with the command:</p>
<p><em>psql</em></p>
<p>Your new command prompt will look like:</p>
<p><em>postgres=#</em></p>
<p>NOTE: The only user that can open the PostgreSQL prompt without defining a database to work with is the user postgres. Other users would have to gain access to the command prompt with a command like:</p>
<p><em>psql DB_NAME</em></p>
<p>Where <em>DB_NAME </em>is the name of an existing database.</p>
<p>Changing the password is as simple as issuing the command:</p>
<p><em>\password postgres</em></p>
<p>You will then be asked to enter a password and then verify that password.</p>
<p>Your default password has not been changed. You can exit from the PostgreSQL prompt by issuing the command:</p>
<p><em>\q</em></p>
<p><strong>Create a database</strong></p>
<p>Now, while still logged in as the postgres user, let&#8217;s create a database. For this you do not have to be logged into the PostgreSQL command prompt. Instead just issue the command:</p>
<p><em>createdb testdb</em></p>
<p>Where <em>testdb</em> is the name of the database you want to create. To check to make sure that database was created go back to the PostgreSQL command prompt (remember, the command <em>psql</em>) and enter:</p>
<p><em>\l</em></p>
<p>You should see a listing for your new database like:</p>
<p><code>testdb | postgres | UTF8 | en_US.UTF-8  | en_US.UTF-8</code></p>
<p>Once again, log out of the PostgreSQL command prompt with the command:</p>
<p><em>\q</em></p>
<p><strong>Create a user</strong></p>
<p>By default, the only user that can connect to a database is the postgres user. This will be of no help when you need to connect with another user. To create a new user (that can connect to databases) you would issue the command (as the user <em>postgres</em>):</p>
<p><em>createuser &#8211;superuser USERNAME</em></p>
<p>Where <em>USERNAME </em>is the name of the user you want to create.</p>
<p><strong>Final thoughts</strong></p>
<p>Now you should have a basic PostgreSQL installation with a test database and a user, besides postgres, that can work with the tools. Next time we work with PostgreSQL we&#8217;ll discuss more challenging issues with this outstanding database tool.</p>

	Tags: <a href="http://www.ghacks.net/tag/database/" title="database" rel="tag">database</a>, <a href="http://www.ghacks.net/tag/database-user/" title="database user" rel="tag">database user</a>, <a href="http://www.ghacks.net/tag/mysql/" title="mysql" rel="tag">mysql</a>, <a href="http://www.ghacks.net/tag/postgresql/" title="postgresql" rel="tag">postgresql</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/09/set-up-mysql-database-replication/" title="Set up MySQL database replication (April 9, 2009)">Set up MySQL database replication</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/12/20/install-phpmyadmin-for-easy-mysql-administration/" title="Install phpmyadmin for easy MySQL administration (December 20, 2008)">Install phpmyadmin for easy MySQL administration</a> (6)</li>
	<li><a href="http://www.ghacks.net/2008/11/05/have-wordpress-back-ups-emailed/" title="Have WordPress back-ups emailed (November 5, 2008)">Have WordPress back-ups emailed</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/07/30/database-monitoring-software-db2rss/" title="Database Monitoring Software Db2rss (July 30, 2009)">Database Monitoring Software Db2rss</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/01/12/backup-mysql-databases-in-linux-regularly/" title="Backup MySQL Databases In Linux Regularly (January 12, 2009)">Backup MySQL Databases In Linux Regularly</a> (11)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/11/10/basic-postgresql-server-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 Firewall Control</title>
		<link>http://www.ghacks.net/2009/11/09/windows-7-firewall-control/</link>
		<comments>http://www.ghacks.net/2009/11/09/windows-7-firewall-control/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 09:34:23 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[security-software]]></category>
		<category><![CDATA[windows 7 firewall]]></category>
		<category><![CDATA[Windows 7 Firewall Control]]></category>
		<category><![CDATA[windows firewall]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=18325</guid>
		<description><![CDATA[The firewall in Windows 7 is a solid software firewall. It is by far not as advanced as third party firewalls but it does a good job at protecting a computer system running Windows 7. The functionality of the firewall has been improved ever since Microsoft starting shipping Windows XP versions with the software firewall. [...]]]></description>
			<content:encoded><![CDATA[<p>The firewall in <a href="http://windows7news.com/">Windows 7</a> is a solid software firewall. It is by far not as advanced as third party firewalls but it does a good job at protecting a computer system running Windows 7. The functionality of the firewall has been improved ever since Microsoft starting shipping Windows XP versions with the software firewall. It does lack several features that most third party firewalls offer including usability enhancements like displaying prompts whenever an unknown application tries to create a connection to a private or public network.</p>
<p>The Windows 7 firewall will block the connection if the application has not been configured previously in the Windows Control Panel. The configuration can be strenuous especially in the beginning right after the first start of the operating system. </p>
<p><span id="more-18325"></span>That&#8217;s where the Windows 7 Firewall Control steps in. The free version of the software program adds those application prompts to Windows 7. It displays a prompt whenever an unknown application tries to connect to the Internet.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/11/windows_7_firewall_control.jpg" alt="windows 7 firewall control" title="windows 7 firewall control" width="311" height="467" class="alignnone size-full wp-image-18326" /></p>
<p>This gives the user in front of the computer the option to enable or disable all traffic or enable only incoming or outgoing traffic. The selected setting will be stored in the program&#8217;s main interface only. This is one weakness of the program as it does not sync the settings with the Windows 7 Firewall. This is problematic as it means that the configured settings will be gone if the Windows 7 Firewall Control gets uninstalled. The reason for not syncing is that Windows 7 Firewall Control works independently from the Windows 7 Firewall. It does grab the configuration at startup but does not communicate with the firewall after that.</p>
<p>A pro version of Windows 7 Firewall Control is <a href="http://www.sphinx-soft.com/Vista/index.html">available</a> offering additional features. Both versions can be downloaded at the developer&#8217;s website. (via Windows 7 News: <a href="http://windows7news.com/2009/11/09/windows-7-firewall-control/">Windows 7 Firewall Control</a>)</p>

	Tags: <a href="http://www.ghacks.net/tag/security-software/" title="security-software" rel="tag">security-software</a>, <a href="http://www.ghacks.net/tag/windows-7-firewall/" title="windows 7 firewall" rel="tag">windows 7 firewall</a>, <a href="http://www.ghacks.net/tag/windows-7-firewall-control/" title="Windows 7 Firewall Control" rel="tag">Windows 7 Firewall Control</a>, <a href="http://www.ghacks.net/tag/windows-firewall/" title="windows firewall" rel="tag">windows firewall</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/03/20/windows-registry-watcher/" title="Windows Registry Watcher (March 20, 2009)">Windows Registry Watcher</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/05/29/windows-defender/" title="Windows Defender (May 29, 2009)">Windows Defender</a> (11)</li>
	<li><a href="http://www.ghacks.net/2009/08/29/use-usb-flash-drives-to-lock-windows/" title="Use USB Flash Drives To Lock Windows (August 29, 2009)">Use USB Flash Drives To Lock Windows</a> (13)</li>
	<li><a href="http://www.ghacks.net/2008/11/08/usb-lost-and-found/" title="USB Lost and Found (November 8, 2008)">USB Lost and Found</a> (9)</li>
	<li><a href="http://www.ghacks.net/2009/10/01/trend-micro-rootkitbuster/" title="Trend Micro RootkitBuster (October 1, 2009)">Trend Micro RootkitBuster</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/11/09/windows-7-firewall-control/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Install OpenGoo for in house collaboration tools</title>
		<link>http://www.ghacks.net/2009/11/08/install-opengoo-for-in-house-collaboration-tools/</link>
		<comments>http://www.ghacks.net/2009/11/08/install-opengoo-for-in-house-collaboration-tools/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 19:42:26 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Online Services]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[google documents]]></category>
		<category><![CDATA[mobile office]]></category>
		<category><![CDATA[office suite]]></category>
		<category><![CDATA[online office]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=18315</guid>
		<description><![CDATA[Do you use Google for your collaboration tools? Gmail? Google Documents? Contacts? Although the Google suite is a very nice suite of tools that has grown exponentially in popularity, there is something to be said about keeping your collaboration tools in-house. There are plenty of tools that will allow you to set up such a [...]]]></description>
			<content:encoded><![CDATA[<p>Do you use Google for your collaboration tools? <a href="http://www.ghacks.net/2009/02/09/gmail-90-tools-and-tips-to-make-you-a-gmail-pro/">Gmail</a>? Google Documents? Contacts? Although the Google suite is a very nice suite of tools that has grown exponentially in popularity, there is something to be said about keeping your collaboration tools in-house. There are plenty of tools that will allow you to set up such a collaboration suite. Some of these tools are costly, some of them are overly-complex to use or install, and some of them just don&#8217;t offer all of the tools you need.</p>
<p>And then there&#8217;s <a title="OpenGoo" href="http://www.opengoo.org" target="_blank">OpenGoo</a>. OpenGoo is an open source collaboration tool that is fully web-based, easy to use, simple to install, and free to use. But is OpenGoo for you and your company? This tutorial will show you how to get an OpenGoo installation up and running so you can kick the tires and find out if it is exactly what you need.</p>
<p><span id="more-18315"></span><strong>Features</strong></p>
<p>OpenGoo offers all of the standard features of a business-level collaboration suite:</p>
<ul>
<li>Text documents</li>
<li>Spreadsheets (coming soon)</li>
<li>Presentations</li>
<li>Task Lists</li>
<li>E-mails</li>
<li>Calendars</li>
<li>Web Links</li>
<li>Contacts</li>
</ul>
<p>All you need to install an OpenGoo server is:</p>
<ul>
<li><span style="background-color: #ffffff">Apache &gt;= 2.0</span></li>
<li><span style="background-color: #ffffff">MySQL &gt;= 5.0 (5.2 recommended)</span></li>
<li><span style="background-color: #ffffff">MySQL &gt;= 4.1 with InnoDB support</span></li>
</ul>
<p>Now, let&#8217;s get on with that installation.</p>
<p><strong>Install</strong></p>
<p>This installation will be done on a Ubuntu 9.10 setup. I have installed this on both desktop and server installation, but regardless of which you have installed, you will need a LAMP server running.</p>
<p>The first thing you need to do is to download the zip file from the <a title="OpenGoo download" href="http://sourceforge.net/projects/opengoo/files/" target="_blank">OpenGoo download page</a>. I downloaded and installed the 1.6 beta version which works nicely.</p>
<p>Once that file is downloaded, move that file to <strong>/var/www. </strong>Now, change to the <strong>/var/www/</strong> directory and then unzip it with the command:<span style="background-color: #ffffff"> </span></p>
<p><span style="background-color: #ffffff"><em>sudo unzip opengoo_1.6.beta-2.zip</em></span></p>
<p><span style="background-color: #ffffff">NOTE: If you downloaded a different release, edit that command to reflect the release number.</span></p>
<p><span style="background-color: #ffffff">Once that files is unzipped rename the directory with the command:</span></p>
<p><span style="background-color: #ffffff"><em>sudo mv opengoo_1.6.beta-2.zip opengoo</em></span></p>
<p><span style="background-color: #ffffff">Now change into the <strong>/var/www/opengoo</strong> directory and issue the following commands:</span></p>
<p><span style="background-color: #ffffff"><em>sudo chmod -R ugo+w /var/www/opengoo/config</em></span></p>
<p><span style="background-color: #ffffff"><em>sudo chmod -R ugo+w /var/www/opengoo/cache</em></span></p>
<p><span style="background-color: #ffffff"><em>sudo chmod -R ugo+w /var/www/opengoo/upload</em></span></p>
<p><span style="background-color: #ffffff"><em>sudo chmod -R ugo+w /var/www/opengoo/tmp</em></span></p>
<p><span style="background-color: #ffffff">With all the right permissions in play, it is time to create the database. I like to use PhpMyAdmin to make database creation simple. For more information about installing this tool check out my article &#8220;<a title="Install phpmyadmin for easy MySQL administration" href="http://www.ghacks.net/2008/12/20/install-phpmyadmin-for-easy-mysql-administration/" target="_blank">Install PhpMyAdmin for easy MySQL administration</a>&#8220;. Use this tool to create a database called &#8220;opengoo&#8221; (No quotes).</span></p>
<p><span style="background-color: #ffffff">Time to begin the web-based installation.</span></p>
<p><span style="background-color: #ffffff">Fire up your browser and point it to:</span></p>
<p><span style="background-color: #ffffff"><em>http://IP_TO_SERVER/opengoo</em></span></p>
<p><span style="background-color: #ffffff">Where IP_TO_SERVER is the actual IP Address of your OpenGoo server. You will be greeted with usual welcome screen that will tell you exactly what is going to happen during the installation. Click the Next button to continue on.</span></p>
<p><span style="background-color: #ffffff">The second screen will run the environment checks. If everything gets and OK (and it should be if your LAMP server is up and running and you&#8217;ve taken care of all the permissions) click the Next button to continue on.</span></p>
<p><span style="background-color: #ffffff"> </span></p>
<div id="attachment_18316" class="wp-caption alignleft" style="width: 190px"><a rel="attachment wp-att-18316" href="http://www.ghacks.net/?attachment_id=18316"><img class="size-thumbnail wp-image-18316 " src="http://www.ghacks.net/wp-content/uploads/2009/11/opengoo_install_3-300x300.png" alt="Figure 1" width="180" height="180" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>The third page of the installation (see Figure 1) is the first step that should require you to input any data.</p>
<p>The information should be fairly self explanatory. There is one point of note: If you plan on allowing access to your local LAN you will need to change the Absolute script URL to reflect the proper IP address (or domain).</p>
<p>Once you have all of this information in place, click the Next button which will take you to the congratulations screen where you only need click the Finish button to assume you&#8217;ve completed the installation.</p>
<div id="attachment_18317" class="wp-caption alignright" style="width: 190px"><a rel="attachment wp-att-18317" href="http://www.ghacks.net/?attachment_id=18317"><img class="size-thumbnail wp-image-18317 " src="http://www.ghacks.net/wp-content/uploads/2009/11/opengoo_install_5-300x300.png" alt="Figure 2" width="180" height="180" /></a><p class="wp-caption-text">Figure 2</p></div>
<p>Ah, but there is one more step. Figure 2 shows the final step for the installation. Here you need to create an administrator for your installation.</p>
<p>Setup your administrative user and click Submit. You can now log in to your OpenGoo server with your administrative user.</p>
<p><strong>The basic interface</strong></p>
<p>You will log into your OpenGoo server by entering the same address you did for the installation. When you log in you will be at the OpenGoo Getting Started Page (see Figure 3).</p>
<div id="attachment_18318" class="wp-caption alignleft" style="width: 310px"><a rel="attachment wp-att-18318" href="http://www.ghacks.net/?attachment_id=18318"><img class="size-thumbnail wp-image-18318" src="http://www.ghacks.net/wp-content/uploads/2009/11/opengoo_main_page-300x300.png" alt="Figure 3" width="300" height="300" /></a><p class="wp-caption-text">Figure 3</p></div>
<p>The OpenGoo installation will offer a very simple information page that will help you get started on your decision. But as you can see, the interface is laid out quite well. The tools are accessible and very user-friendly.</p>
<p>After using OpenGoo for a while I can assure you if you like Google&#8217;s suite of tools, you will like OpenGoo.</p>
<p><strong>Final thoughts</strong></p>
<p>If you are looking for a very cost effect collaboration solution look no further than the open source OpenGoo suite of tools. Not only is it easy to use, it&#8217;s simple to install, and free of charge.</p>

	Tags: <a href="http://www.ghacks.net/tag/collaboration/" title="collaboration" rel="tag">collaboration</a>, <a href="http://www.ghacks.net/tag/google-documents/" title="google documents" rel="tag">google documents</a>, <a href="http://www.ghacks.net/tag/mobile-office/" title="mobile office" rel="tag">mobile office</a>, <a href="http://www.ghacks.net/tag/office-suite/" title="office suite" rel="tag">office suite</a>, <a href="http://www.ghacks.net/tag/online-office/" title="online office" rel="tag">online office</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/05/05/open-office-31/" title="Open Office 3.1 (May 5, 2009)">Open Office 3.1</a> (17)</li>
	<li><a href="http://www.ghacks.net/2008/10/10/open-office-3-final/" title="Open Office 3 Final (October 10, 2008)">Open Office 3 Final</a> (21)</li>
	<li><a href="http://www.ghacks.net/2009/05/12/microsoft-sharedview/" title="Microsoft SharedView (May 12, 2009)">Microsoft SharedView</a> (0)</li>
	<li><a href="http://www.ghacks.net/2008/09/02/microsoft-office-migration-planning-manager/" title="Microsoft Office Migration Planning Manager (September 2, 2008)">Microsoft Office Migration Planning Manager</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/02/26/konolive-getting-things-done-software/" title="KonoLive Getting Things Done Software (February 26, 2009)">KonoLive Getting Things Done Software</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/11/08/install-opengoo-for-in-house-collaboration-tools/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>12 Booster Apps For Windows 7</title>
		<link>http://www.ghacks.net/2009/11/08/12-booster-apps-for-windows-7/</link>
		<comments>http://www.ghacks.net/2009/11/08/12-booster-apps-for-windows-7/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 11:48:49 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[windows 7]]></category>
		<category><![CDATA[windows 7 applications]]></category>
		<category><![CDATA[windows 7 software]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=18281</guid>
		<description><![CDATA[Experienced computer users have a specific routine that they go through whenever they install a new operating system. This includes playing around with the default configuration of the operating system but also installing a set of applications that they consider essential. The following article will take a look at ten applications to install after installing [...]]]></description>
			<content:encoded><![CDATA[<p>Experienced computer users have a specific routine that they go through whenever they install a new operating system. This includes playing around with the default configuration of the operating system but also installing a set of applications that they consider essential. The following article will take a look at ten applications to install after installing <a href="http://windows7news.com/">Windows 7</a>. A fair warning though; This is obviously a biased list and what we call essential might be the exact opposite for the user next door. So, this is our list and it will, without doubt, differ from many of the lists that you would create. </p>
<p>All programs that are listed below are fully compatible with the Windows 7 operating system.</p>
<p><span id="more-18281"></span><strong>1. Web Browser <a href="http://www.ghacks.net/tag/firefox/">Firefox</a></strong></p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/11/mozilla_firefox-500x388.jpg" alt="mozilla firefox" title="mozilla firefox" width="500" height="388" class="alignnone size-medium wp-image-18282" /></p>
<p>Windows 7 ships with Microsoft&#8217;s <a href="http://www.ghacks.net/tag/internet-explorer/">Internet Explorer</a> and while IE 8 is a perfectly fine browser it does not offer the same level of speed and extensibility that the Firefox web browser offers. Yes there are other web browsers, specifically Google Chrome and <a href="http://www.ghacks.net/category/browsing/opera/">Opera</a>, both excellent web browsers. The reason for not picking them is that Google Chrome feels &#8211; in many regards &#8211; like a beta browser with its missing extension support in the release versions while Opera&#8217;s way of handling extensions is not optimal for a good workflow. And Firefox is the only web browser that comes with extensions that we do not want to live without anymore, namely the security extension No Script, the password manager Last Pass, Greasemonkey and several SEO extensions.</p>
<p><a href="http://www.mozilla.com/en-US/firefox/upgrade.html">Mozilla Firefox</a> homepage</p>
<p><strong>2. Desktop Email Client Thunderbird</strong></p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/11/thunderbird-500x315.png" alt="thunderbird" title="thunderbird" width="500" height="315" class="alignnone size-medium wp-image-18283" /></p>
<p>Another sure pick for us. There are different email clients that work under Windows 7 with the most popular ones being Windows Live Mail (formerly Outlook Express), Microsoft Outlook and Mozilla Thunderbird with the first and third being free to use.</p>
<p>Some users might prefer to use an online email service like Yahoo Mail, Hotmail or <a href="http://www.ghacks.net/2009/02/09/gmail-90-tools-and-tips-to-make-you-a-gmail-pro/">Gmail</a> instead. Our reason for sticking with a desktop email client are the following:</p>
<ul>
<li>Ability to access emails offline</li>
<li>Ability to use different email providers and servers from one email client</li>
</ul>
<p>Thunderbird offers the same advantage that Firefox offers: Extension support. There are hundreds of extensions for the email client which can increase the functionality tremendously.</p>
<p><a href="http://www.mozillamessaging.com/en-US/thunderbird/">Mozilla Thunderbird</a> homepage</p>
<p><strong>3. Media Player SMPlayer</strong></p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/11/smplayer-500x374.jpg" alt="smplayer" title="smplayer" width="500" height="374" class="alignnone size-medium wp-image-18284" /></p>
<p>Microsoft has really improved the media playback capabilities and other features of Windows Media Player. Especially the ability to playback additional video file types over previous Windows systems and the Media Player lite interface while playing videos are two features that increase the value of the player. One still has to install different codecs to be able to view unsupported video file types.</p>
<p>That&#8217;s where SMPlayer comes into play. The player uses binary codecs which are shipped with the media player. These codecs work out of the box and nearly every different video format is supported by this MPlayer variant. </p>
<p><a href="http://smplayer.sourceforge.net/">SMPlayer</a> homepage</p>
<p><strong>4. FTP, sFTP and SCP client WinSCP</strong></p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/11/winscp-500x453.png" alt="winscp" title="winscp" width="500" height="453" class="alignnone size-medium wp-image-18285" /></p>
<p>Webmasters need a way to upload, download and manage files that are hosted at a web hosting company. The usual way to do that is to connect to the web server with an ftp, sftp or scp client. WinSCP combines all three possibilities in an explorer like interface. It offers several additional features including Windows integration, integrated text editor, batch file scripting or sessions making it one of the few all-in-one clients for the Windows operating system.</p>
<p><a href="http://winscp.net/eng/index.php">WinSCP</a> website</p>
<p><strong>5. Feed reader FeedDemon</strong></p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/11/feed_demon-499x360.jpg" alt="feeddemon" title="feeddemon" width="499" height="360" class="alignnone size-medium wp-image-18286" /></p>
<p>There are two basic options for selecting a feed reader. It can either be an online feed reader like Google Reader or a desktop feed reader. There are a lots of programs that offer desktop feed reading capabilities. This ranges from web browsers like Firefox or Opera over email clients like Outlook or Thunderbird to applications that have been specifically designed for the purpose like Feed Demon.</p>
<p>FeedDemon offers a comfortable way of reading news feeds. It comes with a lot of options that most other integrated feed reading solutions do not offer including the ability to create watchlists to monitor specific keywords. Many integrated solutions, like that in Firefox, felt like they were slowing down the web browser once a certain threshold was reached. </p>
<p><a href="http://www.newsgator.com/individuals/feeddemon/default.aspx">FeedDemon</a> homepage</p>
<p><strong>6. Data encryption software <a href="http://www.ghacks.net/tag/true-crypt/">True Crypt</a></strong></p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/11/true_crypt-500x431.png" alt="true crypt" title="true crypt" width="500" height="431" class="alignnone size-medium wp-image-18287" /></p>
<p>Windows 7 Ultimate and Enterprise come with the Bitlocker data encryption feature that can be used to encrypt data in those operating systems. All other editions of Windows 7 do not offer this feature. The alternative is True Crypt, a reliable data encryption software that can be used to create encrypted containers, partitions and even full systems.</p>
<p>True Crypt comes with an incredible set of features including:</p>
<ul>
<li>Encryption is automatic, real-time (on-the-fly) and transparent.</li>
<li>Parallelization and pipelining allow data to be read and written as fast as if the drive was not encrypted.</li>
<li>Provides plausible deniability, in case an adversary forces you to reveal the password: Hidden volume (steganography) and hidden operating system.</li>
<li>Encryption algorithms: AES-256, Serpent, and Twofish. Mode of operation: XTS.</li>
</ul>
<p><a href="http://www.truecrypt.org/">True Crypt</a> homepage</p>
<p><strong>7. Image viewer XnView</strong></p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/11/xnview-500x400.gif" alt="xnview" title="xnview" width="500" height="400" class="alignnone size-medium wp-image-18288" /></p>
<p>XnView is a fast image viewer for the Windows operating system supporting over 400 different image formats. It works extremely well even when viewing images in folders with thousands of images. It does offer basic image editing features like rotating images or exporting images in more than 50 different image formats, batch editing and renaming, slideshows or filter and effects. Another feature is Twain and WIA support.</p>
<p><a href="http://www.xnview.com/en/xnview.html">XnView</a> website</p>
<p><strong>8. Image editor Paint .net</strong></p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/11/paintnet-500x332.jpg" alt="paintnet" title="paintnet" width="500" height="332" class="alignnone size-medium wp-image-18289" /></p>
<p>Windows Paint was redesigned by Microsoft in Windows 7. It now comes with a ribbon interface and improved functionality. It still lacks many of the features that most users would expect from an image editor. That&#8217;s where paint.net comes into play. The image editor loads fast and offers an advanced functionality that does not need to fear comparison with other solutions like GIMP or Photoshop.</p>
<p><a href="http://paint.net/">Paint.net</a> homepage</p>
<p><strong>9. Text editor Notepad++</strong></p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/11/notepad++-500x352.gif" alt="notepad++" title="notepad++" width="500" height="352" class="alignnone size-medium wp-image-18290" /></p>
<p>Notepad is a fast opening text editor in Windows. It is great for editing smaller text files but lacks features that make it as good when it comes to larger files or scripting languages like php. Notepad++ is an enhanced &#8211; but unrelated &#8211; Notepad clone that offers many interesting features including syntax highlighting, multi-document support, regular expressions, macros, plugins and auto completion. Best of all, it opens as quickly as Notepad in the operating system.</p>
<p><a href="http://notepad-plus.sourceforge.net/uk/site.htm">Notepad++</a> homepage</p>
<p><strong>10. CD and DVD burning software ImgBurn</strong></p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/11/imgburn-500x334.png" alt="imgburn" title="imgburn" width="500" height="334" class="alignnone size-medium wp-image-18291" /></p>
<p>Windows 7 comes with advanced image burning options. It can for example burn ISO images without additional software, something that other Windows operating systems don&#8217;t offer. A third party CD and DVD burning software is on the other hand still a requirement for burning other image formats and creating custom data, audio and video CDs and DVDs.</p>
<p>ImgBurn is a free solution that is slightly more complex to use than many of the other burning software programs. It is however one of the most reliable and feature rich programs available for the Windows operating system and therefor our first choice when it comes to installing a third party burning software.</p>
<p><a href="http://www.imgburn.com/">ImgBurn</a> homepage</p>
<p><strong>11. Audio player AIMP2</strong></p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/11/aimp2.jpg" alt="aimp2" title="aimp2" width="345" height="365" class="alignnone size-full wp-image-18295" /></p>
<p>It is possible to play most audio formats in Windows Media Player. Users who prefer alternatives usually pick Winamp. AIMP2 is an alternative that comes with an excellent set of features and options. Chance is that if Winamp can do it AIMP2 can as well. The audio player is lightweight and uses less system resources than Winamp.</p>
<p><a href="http://www.aimp.ru/index.php?do=download">AIMP2</a> website</p>
<p><strong>12. PDF reader Foxit Reader</strong></p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/11/foxit_reader-500x394.jpg" alt="foxit reader" title="foxit reader" width="500" height="394" class="alignnone size-medium wp-image-18293" /></p>
<p>Windows 7 users need to install a third party software to be able to view pdf documents. The natural choice for most is Adobe&#8217;s PDF reader. Experienced users on the other hand prefer different programs. This can be mainly attributed to the performance of Adobe Reader and security concerns. </p>
<p>One of the most popular alternatives is the Foxit Reader which opens PDFs much faster than Adobe Reader does.</p>
<p><a href="http://www.foxitsoftware.com/pdf/reader/reader3.php">Foxit Reader</a> homepage</p>
<p>Got anything to add? Let us know in the comments.</p>

	Tags: <a href="http://www.ghacks.net/tag/windows-7/" title="windows 7" rel="tag">windows 7</a>, <a href="http://www.ghacks.net/tag/windows-7-applications/" title="windows 7 applications" rel="tag">windows 7 applications</a>, <a href="http://www.ghacks.net/tag/windows-7-software/" title="windows 7 software" rel="tag">windows 7 software</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/05/31/windows-7-gmail-notifier/" title="Windows 7 Gmail Notifier (May 31, 2009)">Windows 7 Gmail Notifier</a> (9)</li>
	<li><a href="http://www.ghacks.net/2009/06/29/creat-custom-windows-7-jumplists/" title="Create Custom Windows 7 Jumplists (June 29, 2009)">Create Custom Windows 7 Jumplists</a> (11)</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> (1)</li>
	<li><a href="http://www.ghacks.net/2009/10/21/windows-7-upgrade-advisor/" title="Windows 7 Upgrade Advisor (October 21, 2009)">Windows 7 Upgrade Advisor</a> (6)</li>
	<li><a href="http://www.ghacks.net/2009/11/06/windows-7-taskbar-tweaker/" title="Windows 7 Taskbar Tweaker (November 6, 2009)">Windows 7 Taskbar Tweaker</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/11/08/12-booster-apps-for-windows-7/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Paint.net 3.5 Final</title>
		<link>http://www.ghacks.net/2009/11/07/paint-net-3-5-final/</link>
		<comments>http://www.ghacks.net/2009/11/07/paint-net-3-5-final/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 19:33:26 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[image editor]]></category>
		<category><![CDATA[paint.net]]></category>
		<category><![CDATA[paint.net 3.5]]></category>
		<category><![CDATA[photo editor]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=18262</guid>
		<description><![CDATA[After using many different image and photo editors over the years including other free ones like GIMP but also commercial applications like Adobe Photoshop I discovered one that I have been using ever since. Paint.net is an image editor for the Windows operating system which combines the attributes that I value the most: Speed and [...]]]></description>
			<content:encoded><![CDATA[<p>After using many different image and photo editors over the years including other free ones like GIMP but also commercial applications like Adobe Photoshop I discovered one that I have been using ever since. Paint.net is an image editor for the Windows operating system which combines the attributes that I value the most: Speed and Ease of use. Most of the other image editors that I tried out where slow to load and quite complex to use. Not so Paint.net which loads up almost as fast as the default Windows Paint application but offers a lot that Paint does not offer.</p>
<p>Is it comparable to Gimp or Adobe Photoshop? I honestly cannot say so and do not care the least. It allows me to do the image editing things that I need to do which are basic image manipulations, e.g. resizing, copying, pasting, and basic editing. </p>
<p><span id="more-18262"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/11/paint.net3.5-500x332.jpg" alt="paint.net 3.5" title="paint.net 3.5" width="500" height="332" class="alignnone size-medium wp-image-18263" /></p>
<p>Paint.net 3.5 final was released today. Users who are interested in the changes in this release can take a look at the post over at the <a href="http://blog.getpaint.net/2009/11/06/paintnet-v35-final-is-now-available/">official</a> blog to find out more about them. Those that do not care about that can download the latest version of the image editor from the developer&#8217;s website where it is <a href="http://www.getpaint.net/">available</a> for all supported operating systems (Windows XP, Windows Vista and <a href="http://windows7news.com/">Windows 7</a>) and languages. Paint.net, as the name suggests, requires the Microsoft .net Framework 3.5 SP1.</p>

	Tags: <a href="http://www.ghacks.net/tag/image-editor/" title="image editor" rel="tag">image editor</a>, <a href="http://www.ghacks.net/tag/paintnet/" title="paint.net" rel="tag">paint.net</a>, <a href="http://www.ghacks.net/tag/paint-net-3-5/" title="paint.net 3.5" rel="tag">paint.net 3.5</a>, <a href="http://www.ghacks.net/tag/photo-editor/" title="photo editor" rel="tag">photo editor</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/09/23/paint-net-3-5-beta/" title="Paint.Net 3.5 Beta (September 23, 2009)">Paint.Net 3.5 Beta</a> (6)</li>
	<li><a href="http://www.ghacks.net/2009/06/20/portable-image-editor-fotografix/" title="Portable Image Editor Fotografix (June 20, 2009)">Portable Image Editor Fotografix</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/04/12/tired-of-photoshop-and-gimp-try-paintnet/" title="Tired of Photoshop and GIMP? Try Paint.net (April 12, 2009)">Tired of Photoshop and GIMP? Try Paint.net</a> (14)</li>
	<li><a href="http://www.ghacks.net/2008/09/17/picture-tourist-remover/" title="Picture Tourist Remover (September 17, 2008)">Picture Tourist Remover</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/04/23/adobe-photoshop-psd-plugin-for-paintnet/" title="Adobe Photoshop PSD Plugin For Paint.net (April 23, 2009)">Adobe Photoshop PSD Plugin For Paint.net</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/11/07/paint-net-3-5-final/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Install Missing Runtimes With All In One Runtime</title>
		<link>http://www.ghacks.net/2009/11/07/install-missing-runtimes-with-all-in-one-runtime/</link>
		<comments>http://www.ghacks.net/2009/11/07/install-missing-runtimes-with-all-in-one-runtime/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 18:39:24 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[all in one runtime]]></category>
		<category><![CDATA[microsoft .net framework]]></category>
		<category><![CDATA[portable software]]></category>
		<category><![CDATA[runtimes]]></category>
		<category><![CDATA[system runtimes]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=18259</guid>
		<description><![CDATA[Many programs for the Windows operating system need so called runtimes so that they can execute correctly on the computer system. Two of the most popular runtimes are the Microsoft .net Framework and the Java Runtime Environment. Some programs check for missing runtimes and provide options to install them while others do not which usually [...]]]></description>
			<content:encoded><![CDATA[<p>Many programs for the Windows operating system need so called runtimes so that they can execute correctly on the computer system. Two of the most popular runtimes are the Microsoft .net Framework and the Java Runtime Environment. Some programs check for missing runtimes and provide options to install them while others do not which usually leads to some research in the readme or on the developer&#8217;s homepage to find out if the program has any dependencies that need to be installed on the PC before the software can be used.</p>
<p>All In One Runtime offers an efficient (critics would probably call it unnecessary or overkill) solution to the problem. The program checks the installed runtimes of the Windows operating system and will automatically display and install the runtimes that are not installed on the PC system.</p>
<p><span id="more-18259"></span>The supported runtimes are:</p>
<ul>
<li>Microsoft .net Frameworks</li>
<li>.net language packs</li>
<li>System runtimes</li>
<li>Visual C++ runtimes</li>
<li>Microsoft Visual J#</li>
<li>Adobe Flash Player</li>
<li>Microsoft Silverlight</li>
<li>Shockwave Player</li>
<li>Java Runtime Environment</li>
<li>DirectX</li>
</ul>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/11/runtimes-500x273.jpg" alt="runtimes" title="runtimes" width="500" height="273" class="alignnone size-medium wp-image-18260" /></p>
<p>The program will display the runtimes that it intends to install. A 30 second countdown will be displayed allowing the user to pause and cancel the installation or remove runtimes from the installation. All In One Runtime is a portable software program for Microsoft Windows operating systems. Supported are 32-bit and 64-bit editions of Windows XP, Windows Vista and <a href="http://windows7news.com/">Windows 7</a>. The download is <a href="http://www.computerbase.de/downloads/software/betriebssysteme/all_one_runtimes/">available</a> on a German website. The developer&#8217;s website is also <a href="http://sereby.org/site/AiO">only</a> available in German.</p>

	Tags: <a href="http://www.ghacks.net/tag/all-in-one-runtime/" title="all in one runtime" rel="tag">all in one runtime</a>, <a href="http://www.ghacks.net/tag/microsoft-net-framework/" title="microsoft .net framework" rel="tag">microsoft .net framework</a>, <a href="http://www.ghacks.net/tag/portable-software/" title="portable software" rel="tag">portable software</a>, <a href="http://www.ghacks.net/tag/runtimes/" title="runtimes" rel="tag">runtimes</a>, <a href="http://www.ghacks.net/tag/system-runtimes/" title="system runtimes" rel="tag">system runtimes</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/09/01/youtube-video-search-is-a-barebone-youtube-downloader/" title="Youtube Video Search Is A Barebone Youtube Downloader (September 1, 2009)">Youtube Video Search Is A Barebone Youtube Downloader</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/10/21/xkcd-comic-wallpaper-changer/" title="Xkcd Comic Wallpaper Changer (October 21, 2009)">Xkcd Comic Wallpaper Changer</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/04/10/wireless-networking-software-homedale/" title="Wireless Networking Software Homedale (April 10, 2009)">Wireless Networking Software Homedale</a> (13)</li>
	<li><a href="http://www.ghacks.net/2009/03/06/windows-xp-default-internet-browser-per-user-profile/" title="Windows XP: Default Internet Browser Per User Profile (March 6, 2009)">Windows XP: Default Internet Browser Per User Profile</a> (0)</li>
	<li><a href="http://www.ghacks.net/2009/08/18/windows-xp-system-file-checker/" title="Windows XP System File Checker (August 18, 2009)">Windows XP System File Checker</a> (7)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/11/07/install-missing-runtimes-with-all-in-one-runtime/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Mandriva 2010 installation walk through</title>
		<link>http://www.ghacks.net/2009/11/06/mandriva-2010-installation-walk-through/</link>
		<comments>http://www.ghacks.net/2009/11/06/mandriva-2010-installation-walk-through/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 20:42:17 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[linux installation]]></category>
		<category><![CDATA[live cd]]></category>
		<category><![CDATA[mandriva linux]]></category>
		<category><![CDATA[mandriva one]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=18202</guid>
		<description><![CDATA[Mandriva is another one of the Linux distributions that has been around for quite some time. Beginning as Mandrake Linux, the company MandrakeSoft was forced to change its name when sued by the Hearst Corporation because of the claims that Mandrake Linux was inspired by their comic character &#8220;Mandrake the Magician&#8221;. So the change in [...]]]></description>
			<content:encoded><![CDATA[<p>Mandriva is another one of the Linux distributions that has been around for quite some time. Beginning as Mandrake Linux, the company MandrakeSoft was forced to change its name when sued by the Hearst Corporation because of the claims that Mandrake Linux was inspired by their comic character &#8220;Mandrake the Magician&#8221;. So the change in name happened in 2005, but the name change wasn&#8217;t the only change in 2005. At the same time Mandriva acquired Lycoris and Conectiva. So Mandriva Linux became a combination of Mandrake Linux and Conectiva Linux.</p>
<p>Because of these changes, the Mandriva of today is not the Mandrake of yesterday. The latest version of Mandriva (named 2010) is a modern take on the Linux distribution and in this article you are going to be treated to a walk through of the installation. NOTE: This installation will be done via VirtualBox, so some of the information you might see may or may not apply to your installation.</p>
<p><span id="more-18202"></span>This installation will be accomplished with the help of the Live CD. You can download the Live CD from the <a title="Mandriva download page" href="http://www2.mandriva.com/downloads/" target="_blank">Mandriva download page</a>. You will notice, on that page, there are a number of different downloads. For this installation the download you want is the <a title="One 2010" href="http://www2.mandriva.com/downloads/?p=linux-one" target="_blank">One 2010 download</a>. Once you have downloaded that Live CD and burned it onto disk, put that disk in your target machine&#8217;s disk drive and reboot the machine.</p>
<p>Unlike most Live CDs, with the Mandriva Live CD you will have to answer some questions as well as agree to a EULA. This always takes me by surprise, but it&#8217;s a necessity if you want to boot up Mandriva. So agree to that EULA and boot up the Live distro.</p>
<p>Once you are up and running you will see the Install icon on the desktop. Double click that icon to begin the installation. And, of course, the first screen you will see is the inevitable &#8220;Welcome&#8221; screen. You can just click the Next button to actually begin the installation.</p>
<div id="attachment_18203" class="wp-caption alignleft" style="width: 190px"><a rel="attachment wp-att-18203" href="http://www.ghacks.net/2009/11/06/mandriva-2010-installation-walk-through/mandriva_install_2/"><img class="size-thumbnail wp-image-18203 " src="http://www.ghacks.net/wp-content/uploads/2009/11/mandriva_install_2-300x300.png" alt="Figure 1" width="180" height="180" /></a><p class="wp-caption-text">Figure 1</p></div>
<p><span style="background-color: #ffffff"><strong>Partitioning</strong></span></p>
<p>The first work you will have to take care of is the partitioning of your drive. Figure 1 shows the user-friendly configuration tool. With this tool you can either choose to use the free space (the easiest method), or you can create your own, custom partition configuration. As you can see (in Figure 1) this is being installed on a Virtual hard drive 16 Gigs in size. Since this space hasn&#8217;t been partitioned, it sees it as free space. So I will select the Free Space option and click the Next button.</p>
<p><strong>Unused hardware support</strong></p>
<div id="attachment_18204" class="wp-caption alignright" style="width: 190px"><a rel="attachment wp-att-18204" href="http://www.ghacks.net/2009/11/06/mandriva-2010-installation-walk-through/mandriva_install_3/"><img class="size-thumbnail wp-image-18204 " src="http://www.ghacks.net/wp-content/uploads/2009/11/mandriva_install_3-300x300.png" alt="Figure 2" width="180" height="180" /></a><p class="wp-caption-text">Figure 2</p></div>
<p>This is a feature unique to the Mandriva installation. Once you have partitioned the hard drive the installation will compare the available hardware against the installable packages. Any packages that would not be used by the available hardware are not installed. This ensures your kernel will not be loading unused modules which will only slow down boot process, take up space, and use battery. Figure 2 shows the this screen. Just click Next and allow this process to happen. This will take some time (depending upon the speed of your hardware and the amount of packages that will not be installed).</p>
<div id="attachment_18205" class="wp-caption alignleft" style="width: 190px"><a rel="attachment wp-att-18205" href="http://www.ghacks.net/2009/11/06/mandriva-2010-installation-walk-through/mandriva_install_4/"><img class="size-thumbnail wp-image-18205 " src="http://www.ghacks.net/wp-content/uploads/2009/11/mandriva_install_4-300x300.png" alt="Figure 3" width="180" height="180" /></a><p class="wp-caption-text">Figure 3</p></div>
<p><strong>Installation progress</strong></p>
<p>After you hit the Next button you will immediately see the installation progress window (see Figure 3). Depending upon your hardware, this could take some time. Of course you will also be greeted by different information windows during this step. You will learn nothing new by watching&#8230;so grab yourself a soda or go play some WoW for a bit and come back when the installation progress reaches its goal.</p>
<div id="attachment_18206" class="wp-caption alignright" style="width: 190px"><a rel="attachment wp-att-18206" href="http://www.ghacks.net/2009/11/06/mandriva-2010-installation-walk-through/mandriva_install_5/"><img class="size-thumbnail wp-image-18206 " src="http://www.ghacks.net/wp-content/uploads/2009/11/mandriva_install_5-300x300.png" alt="Figure 4" width="180" height="180" /></a><p class="wp-caption-text">Figure 4</p></div>
<p><strong>Bootloader</strong></p>
<p>After all of the packages have been installed you will have to deal with the bootloader installation. Your best bet is to stick with the defaults. If you load the bootloader on the wrong disk your installation will not boot.</p>
<p>As soon as you click the Next button you can then add, delete, or modify all of the entries in your boot menu. This is another section of the installation process that you should leave to the defaults. The only reason you would want to modify any of this information is if you are dual booting or you need to pass specific parameters to Grub for one of your entries. But more than likely, this step will be left to the defaults, so just click the Next button in this window as well.</p>
<p>The final installation window is the bookend for the Welcome screen &#8211; the Congratulation screen. This window will inform you to remove your Live CD and reboot your machine. Do this to complete the installation process.</p>
<p><strong>Final steps</strong></p>
<div id="attachment_18207" class="wp-caption alignleft" style="width: 190px"><a rel="attachment wp-att-18207" href="http://www.ghacks.net/2009/11/06/mandriva-2010-installation-walk-through/mandriva_install_9/"><img class="size-thumbnail wp-image-18207 " src="http://www.ghacks.net/wp-content/uploads/2009/11/mandriva_install_9-300x300.png" alt="Figure 5" width="180" height="180" /></a><p class="wp-caption-text">Figure 5</p></div>
<p>Of course you are not completely finished. Did you notice something missing from the installation process? No root password was created and no users were created. Both of these steps are taken care of post-installation. In fact, both configurations are taken care of in one screen (see Figure 5).</p>
<p>After you complete this step, click the Next button only to find yourself on one more screen. This final screen wants you to register with Mandriva, take a survey, and contribute to Mandriva. You can decline all of this if you like by scrolling down and clicking the Decline buton.</p>
<p>After you either decline or complete the various optional information you will finally get to log into your newly installed Mandriva 2010 Linux installation. congratulations, you are the proud user of an outstanding, user-friendly Linux box.</p>

	Tags: <a href="http://www.ghacks.net/tag/linux-installation/" title="linux installation" rel="tag">linux installation</a>, <a href="http://www.ghacks.net/tag/live-cd/" title="live cd" rel="tag">live cd</a>, <a href="http://www.ghacks.net/tag/mandriva-linux/" title="mandriva linux" rel="tag">mandriva linux</a>, <a href="http://www.ghacks.net/tag/mandriva-one/" title="mandriva one" rel="tag">mandriva one</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2005/11/11/why-every-windows-user-needs-a-linux-live-cd/" title="Why Every Windows User Needs a Linux Live CD (November 11, 2005)">Why Every Windows User Needs a Linux Live CD</a> (0)</li>
	<li><a href="http://www.ghacks.net/2009/01/03/ubuntu-privacy-remix/" title="Ubuntu Privacy Remix (January 3, 2009)">Ubuntu Privacy Remix</a> (3)</li>
	<li><a href="http://www.ghacks.net/2006/11/23/testdisk-a-free-data-recovery-cd/" title="Testdisk &#8211; A Free Data Recovery CD (November 23, 2006)">Testdisk &#8211; A Free Data Recovery CD</a> (0)</li>
	<li><a href="http://www.ghacks.net/2008/09/23/run-linux-live-cds-in-windows/" title="Run Linux Live CDs In Windows (September 23, 2008)">Run Linux Live CDs In Windows</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/09/14/remastersys-outstanding-solution-for-backup-and-custom-live-cds/" title="Remastersys: Outstanding solution for backup and custom Live CDs (September 14, 2009)">Remastersys: Outstanding solution for backup and custom Live CDs</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/11/06/mandriva-2010-installation-walk-through/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cache My Work Launches Apps Again After System Restarts</title>
		<link>http://www.ghacks.net/2009/11/06/cache-my-work-launches-apps-again-after-system-restarts/</link>
		<comments>http://www.ghacks.net/2009/11/06/cache-my-work-launches-apps-again-after-system-restarts/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 17:08:22 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[application-launcher]]></category>
		<category><![CDATA[cache my work]]></category>
		<category><![CDATA[session management]]></category>
		<category><![CDATA[sessions]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=18195</guid>
		<description><![CDATA[A popular feature in modern web browsers is the session management. These web browsers can be configured to display the very same websites that were displayed before closing the web browser in the previous browsing session. A similar option for the Windows operating system is not available by default. That is where the Cache My [...]]]></description>
			<content:encoded><![CDATA[<p>A popular feature in modern web browsers is the session management. These web browsers can be configured to display the very same websites that were displayed before closing the web browser in the previous browsing session. A similar option for the Windows operating system is not available by default. That is where the Cache My Work software programs steps in. </p>
<p>The program will display a list of programs on startup that can be restarted in the next Windows session. All the user needs to do is to place a checkmark next to any program that should be started again on the next Windows startup. </p>
<p><span id="more-18195"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/11/cache_my_work.jpg" alt="cache my work" title="cache my work" width="279" height="253" class="alignnone size-full wp-image-18196" /></p>
<p>The program makes use of the run once key in the Windows Registry to launch these applications again. What this means is that while the programs will be launched the last session in the applications will not unless the application itself support sessions. This means that it is possible to launch a web browser like Firefox with the tabs open that have been open during the last session. Applications like Notepad, Adobe Photoshop or Word on the other hand will be launched with blank screens instead.</p>
<p>Cache My Work can also remember the open Windows Explorer windows to recreate them on the next start of the operating system. The program is intuitive to use and should not pose any problems even to inexperienced users. Interested users can download the program <a href="http://cachemywork.codeplex.com/">from</a> its Codeplex profile page. (via <a href="http://www.downloadsquad.com/2009/11/06/pick-up-where-you-left-off-before-a-reboot-with-cache-my-work/">Download Squad</a>)</p>

	Tags: <a href="http://www.ghacks.net/tag/application-launcher/" title="application-launcher" rel="tag">application-launcher</a>, <a href="http://www.ghacks.net/tag/cache-my-work/" title="cache my work" rel="tag">cache my work</a>, <a href="http://www.ghacks.net/tag/session-management/" title="session management" rel="tag">session management</a>, <a href="http://www.ghacks.net/tag/sessions/" title="sessions" rel="tag">sessions</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/10/22/windows-advanced-run-dialog/" title="Windows Advanced Run Dialog (October 22, 2008)">Windows Advanced Run Dialog</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/09/15/software-applications-launcher-8start/" title="Software Applications Launcher 8start (September 15, 2008)">Software Applications Launcher 8start</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/12/22/open-multiple-applications-with-a-single-click/" title="Open Multiple Applications With A Single Click (December 22, 2008)">Open Multiple Applications With A Single Click</a> (2)</li>
	<li><a href="http://www.ghacks.net/2007/12/19/launchy-20/" title="Launchy 2.0 (December 19, 2007)">Launchy 2.0</a> (7)</li>
	<li><a href="http://www.ghacks.net/2008/11/17/launch-applications-with-the-mouse/" title="Launch Applications With The Mouse (November 17, 2008)">Launch Applications With The Mouse</a> (13)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/11/06/cache-my-work-launches-apps-again-after-system-restarts/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Form Letter Machine</title>
		<link>http://www.ghacks.net/2009/11/06/the-form-letter-machine/</link>
		<comments>http://www.ghacks.net/2009/11/06/the-form-letter-machine/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 15:48:26 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[donation-coder]]></category>
		<category><![CDATA[form letter]]></category>
		<category><![CDATA[letter generator]]></category>
		<category><![CDATA[letters]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=18192</guid>
		<description><![CDATA[The Form Letter Machine can be a helpful software program for users who want to automate the generation of targeted letters. It does so by offering options to configure paragraphs that are set in a distinct order (by grouping items) in the program. It is for instance possible to add different introductions, closing lines and [...]]]></description>
			<content:encoded><![CDATA[<p>The Form Letter Machine can be a helpful software program for users who want to automate the generation of targeted letters. It does so by offering options to configure paragraphs that are set in a distinct order (by grouping items) in the program. It is for instance possible to add different introductions, closing lines and middle parts to the program. A letter could then be generated by simply selecting the pre-written paragraphs that fit in the specific case.</p>
<p>Groups can consist of radioboxes or checkboxes. Only one paragraph can be selected per group if radioboxes are selected while checkboxes allow the selection of multiple paragraphs.</p>
<p><span id="more-18192"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/11/form_letter-500x258.jpg" alt="form letter" title="form letter" width="500" height="258" class="alignnone size-medium wp-image-18193" /></p>
<p>The example above consists of three groups with two of the groups using radioboxes and one checkboxes. Here is what Mouser has to say about his program:</p>
<blockquote><p> The Form Letter Machine  is a program that will help you to write letters and emails by mixing and matching from pre-written paragraphs.</p>
<p>It&#8217;s useful for people who regularly need to send out emails which include different components in different circumstances. For example if you field technical support requests, or if you need to reply to various inquiries, etc. </p>
<p>It enables you to assemble text from multiple paragraphs, each one customized for a specific type of inquiry or response. You can build your own configurations using checkboxes and radioboxes and nested groups, and then easily write new letters or respond to inquiries by checking off the components you want to include. A real-time preview allows you to view the message as it is composed. The program also supports user defined variables, which allows you to quickly personalize the template with a name or other data that is specific to the task. The text is then copied to the clipboard and can be used in your e-mail program or word processor.</p></blockquote>
<p>One interesting option is the use of variables in texts (for names and other parameters that might change). Variables can be easily defined in the interface and filled with values which appear instantly in the text.</p>
<p>Mouser has <a href="http://www.tfdocs.com/">created</a> a website for the program which is a repository for user generated form letters that can be used in the software program. The Form Letter Machine is available for download at the <a href="http://www.donationcoder.com/Software/Mouser/TheFormLetterMachine/index.html">Donation Coder</a> website.</p>

	Tags: <a href="http://www.ghacks.net/tag/donation-coder/" title="donation-coder" rel="tag">donation-coder</a>, <a href="http://www.ghacks.net/tag/form-letter/" title="form letter" rel="tag">form letter</a>, <a href="http://www.ghacks.net/tag/letter-generator/" title="letter generator" rel="tag">letter generator</a>, <a href="http://www.ghacks.net/tag/letters/" title="letters" rel="tag">letters</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/08/04/windows-clipboard-enhancer-cccctrlc/" title="Windows Clipboard Enhancer CCCCtrlC (August 4, 2009)">Windows Clipboard Enhancer CCCCtrlC</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/07/04/trout-is-a-lightweight-free-music-player/" title="Trout Is A Lightweight Free Music Player (July 4, 2009)">Trout Is A Lightweight Free Music Player</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/04/12/sort-files-folders-automatically/" title="Sort Files Folders Automatically (April 12, 2009)">Sort Files Folders Automatically</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/10/12/screen-capture-software/" title="Screen Capture Software Screenshot Captor (October 12, 2008)">Screen Capture Software Screenshot Captor</a> (6)</li>
	<li><a href="http://www.ghacks.net/2009/03/06/pick-me-selects-random-files-from-directories/" title="Pick Me Selects Random Files From Directories (March 6, 2009)">Pick Me Selects Random Files From Directories</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/11/06/the-form-letter-machine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 Taskbar Tweaker</title>
		<link>http://www.ghacks.net/2009/11/06/windows-7-taskbar-tweaker/</link>
		<comments>http://www.ghacks.net/2009/11/06/windows-7-taskbar-tweaker/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 11:02:37 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[portable software]]></category>
		<category><![CDATA[windows 7]]></category>
		<category><![CDATA[windows 7 software]]></category>
		<category><![CDATA[windows 7 taskbar]]></category>
		<category><![CDATA[windows 7 taskbar tweaker]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=18189</guid>
		<description><![CDATA[One of the most prominent features of Microsoft&#8217;s new operating system Windows 7 is the taskbar which its new functionality. The new features include the ability to pin programs to the taskbar, display thumbnail previews of open windows and tabs (for example from Windows Explorer, Internet Explorer or the latest version of the Firefox web [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most prominent features of Microsoft&#8217;s new operating system <a href="http://windows7news.com/">Windows 7</a> is the taskbar which its new functionality. The new features include the ability to pin programs to the taskbar, display thumbnail previews of open windows and tabs (for example from Windows Explorer, <a href="http://www.ghacks.net/tag/internet-explorer/">Internet Explorer</a> or the latest version of the <a href="http://www.ghacks.net/tag/firefox/">Firefox</a> web browser) and jumplists that offer quick links to application specific features.</p>
<p>The free software program Windows 7 Taskbar Tweaker is a portable application for the Windows 7 operating system. It can be used to modify several of the default options of the Windows 7 taskbar, to be precise:</p>
<p><span id="more-18189"></span>
<ul>
<li>Right-click on a taskbar item to either display jumplists (default) or the standard window menu</li>
<li>Change grouping from grouping applications to not grouping them</li>
<li>Change dropping items to the taskbar from pinning them to opening them</li>
<li>Change the middle-click behavior from opening a new program instance to either closing the window or focusing the window</li>
<li>Change left-click on grouped item button from opening the thumbnail preview to cycling through the windows.</li>
<li>Disable the thumbnail preview</li>
</ul>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/11/windows_7_taskbar_tweaker.jpg" alt="windows 7 taskbar tweaker" title="windows 7 taskbar tweaker" width="429" height="337" class="alignnone size-full wp-image-18190" /></p>
<p>The new settings become available after clicking on the apply button in the program window. The software program is <a href="http://rammichael.com/?proj=29">available</a> for download at the developer&#8217;s website for both 32-bit and 64-bit editions of the Windows 7 operating system.</p>

	Tags: <a href="http://www.ghacks.net/tag/portable-software/" title="portable software" rel="tag">portable software</a>, <a href="http://www.ghacks.net/tag/windows-7/" title="windows 7" rel="tag">windows 7</a>, <a href="http://www.ghacks.net/tag/windows-7-software/" title="windows 7 software" rel="tag">windows 7 software</a>, <a href="http://www.ghacks.net/tag/windows-7-taskbar/" title="windows 7 taskbar" rel="tag">windows 7 taskbar</a>, <a href="http://www.ghacks.net/tag/windows-7-taskbar-tweaker/" title="windows 7 taskbar tweaker" rel="tag">windows 7 taskbar tweaker</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/01/02/windows-7-like-taskbar-in-windows-xp/" title="Windows 7 Like Taskbar In Windows XP (January 2, 2009)">Windows 7 Like Taskbar In Windows XP</a> (10)</li>
	<li><a href="http://www.ghacks.net/2009/06/29/creat-custom-windows-7-jumplists/" title="Create Custom Windows 7 Jumplists (June 29, 2009)">Create Custom Windows 7 Jumplists</a> (11)</li>
	<li><a href="http://www.ghacks.net/2009/05/31/windows-7-gmail-notifier/" title="Windows 7 Gmail Notifier (May 31, 2009)">Windows 7 Gmail Notifier</a> (9)</li>
	<li><a href="http://www.ghacks.net/2009/10/04/preferred-filter-tweaker-for-windows-7/" title="Preferred Filter Tweaker for Windows 7 (October 4, 2009)">Preferred Filter Tweaker for Windows 7</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/10/22/microsoft-touchless/" title="Microsoft Touchless (October 22, 2008)">Microsoft Touchless</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/11/06/windows-7-taskbar-tweaker/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Software Giveaway Alert: Mac Apps Worth $154 For Free (MacHeist NanoBundle)</title>
		<link>http://www.ghacks.net/2009/11/06/software-giveaway-alert-mac-apps-worth-154-for-free-macheist-nanobundle/</link>
		<comments>http://www.ghacks.net/2009/11/06/software-giveaway-alert-mac-apps-worth-154-for-free-macheist-nanobundle/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 01:18:58 +0000</pubDate>
		<dc:creator>Shailpik</dc:creator>
				<category><![CDATA[Compilations]]></category>
		<category><![CDATA[Cool]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[free mac apps]]></category>
		<category><![CDATA[giveaways]]></category>
		<category><![CDATA[Macheist]]></category>
		<category><![CDATA[nanobundle]]></category>
		<category><![CDATA[twitterific]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=18169</guid>
		<description><![CDATA[The folks at Mac are at it again. They are offering to give you 6 great Mac apps completely for free. if you were to buy them individually, you would have to pay $154 for them. But in the MacHeist&#8217;s NanoBundle, they will be yours for free. Do not lose any time and get over [...]]]></description>
			<content:encoded><![CDATA[<p><img style="float: left; border: 0px initial initial;" title="Picture 10" src="http://www.ghacks.net/wp-content/uploads/2009/11/Picture-10.png" alt="Picture 10" width="75" height="75" />The folks at Mac are at it again. They are offering to give you 6 great Mac apps completely for free. if you were to buy them individually, you would have to pay $154 for them. But in the MacHeist&#8217;s NanoBundle, they will be yours for free. Do not lose any time and get over to <a href="http://macheist.com">macheist.com</a> at once. This thing ends in 6 days. Get as many people in on it as you can. Pic of apps on the other side.</p>
<p><span id="more-18169"></span></p>
<p><img style="display: block; margin-left: auto; margin-right: auto; border: 0px initial initial;" title="MacHeist NanoBundle Inner page" src="http://www.ghacks.net/wp-content/uploads/2009/11/Picture-9-418x500.png" alt="MacHeist NanoBundle Inner page" width="418" height="500" /></p>

	Tags: <a href="http://www.ghacks.net/tag/free-mac-apps/" title="free mac apps" rel="tag">free mac apps</a>, <a href="http://www.ghacks.net/tag/giveaways/" title="giveaways" rel="tag">giveaways</a>, <a href="http://www.ghacks.net/tag/macheist/" title="Macheist" rel="tag">Macheist</a>, <a href="http://www.ghacks.net/tag/nanobundle/" title="nanobundle" rel="tag">nanobundle</a>, <a href="http://www.ghacks.net/tag/twitterific/" title="twitterific" rel="tag">twitterific</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/09/02/freezly-indexes-twitter-giveaways/" title="Freezly Indexes Twitter Giveaways (September 2, 2009)">Freezly Indexes Twitter Giveaways</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/11/06/software-giveaway-alert-mac-apps-worth-154-for-free-macheist-nanobundle/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<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> (1)</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> (19)</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> (15)</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>Double Anti-Spy Professional Review And Giveaway</title>
		<link>http://www.ghacks.net/2009/11/05/double-anti-spy-professional-review-and-giveaway/</link>
		<comments>http://www.ghacks.net/2009/11/05/double-anti-spy-professional-review-and-giveaway/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 09:09:04 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[anti-spyware]]></category>
		<category><![CDATA[avanquest]]></category>
		<category><![CDATA[double anti-spy professional]]></category>
		<category><![CDATA[Double Anti-Spy Professional Review]]></category>
		<category><![CDATA[giveaway]]></category>
		<category><![CDATA[offers]]></category>
		<category><![CDATA[security-software]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=18128</guid>
		<description><![CDATA[The anti-spyware niche and the security software niche in general are crowded with lots of companies competing with their software programs for market share. It is difficulty to get a foothold in that market even with a good product as other factors than the product&#8217;s effectiveness play a role in the market. Double Anti-Spy Professional [...]]]></description>
			<content:encoded><![CDATA[<p>The anti-spyware niche and the security software niche in general are crowded with lots of companies competing with their software programs for market share. It is difficulty to get a foothold in that market even with a good product as other factors than the product&#8217;s effectiveness play a role in the market. Double Anti-Spy Professional is an anti-spyware software for the Windows operating system. It&#8217;s main feature that sets it apart from other anti-spyware programs is the use of two spyware engines to scan and protect the computer system. Experienced users might know this concept for example from the online virus scanner Virustotal or the security software Hitman Pro which also utilize multiple engines to achieve better results. The main reason for multiple engines is a better hit ratio as no single detection engine will catch 100% of malicious software.</p>
<p><span id="more-18128"></span>The focus of Double Anti-Spy Professional is a complete spyware protection of computer systems running the Microsoft Windows operating system which includes protection against spyware and adware but also against other forms of malware including backdoors, computer bots and trojans.</p>
<p>The installation of the anti-spyware software and the interface of the program have been designed with ease of use in mind. The program will always start up with the status report window which will display relevant information like the date and time of the last scan, the freshness of the definition files or the results of the last scan. The four buttons on the left side are used to switch between sections of the software.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/11/double-anti_spy_professional_review-500x362.jpg" alt="double-anti spy professional review" title="double anti-spy professional review" width="500" height="362" class="alignnone size-medium wp-image-18129" /></p>
<p>Double Anti-Spy Professional can perform three types of scans: A quick scan that will only scan important locations, a full scan to scan all files and locations and a custom scan that the user can define individually. A full system scan is recommended after installation and updating the definitions to find all traces of spyware that might be located on the computer system.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/11/double_anti-spy_professional-500x362.jpg" alt="double anti-spy professional" title="double anti-spy professional" width="500" height="362" class="alignnone size-medium wp-image-18130" /></p>
<p>The anti-spyware software protects the computer system from spyware that tries to attack the PC. It does so by actively monitoring the system for suspicious files. The depth and level of protection can be configured in the Active Defense section of the program.</p>
<p>Here it is possible to configure the active defense and email defense settings to block and quarantine files and software before it can become a threat. Email defense works with several popular desktop email clients including Microsoft Outlook, Windows Mail and Mozilla Thunderbird.</p>
<p>The very same menu can also be used to schedule scans and add programs and files to a whitelist or blacklist.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/11/anti-spyware_software-500x362.jpg" alt="anti-spyware software" title="anti-spyware software" width="500" height="362" class="alignnone size-medium wp-image-18131" /></p>
<p>The fourth and final tab Settings can be used to configure the different scans that Double Anti-Spy Professional can perform, set the update check interval, configure a proxy server and scan optimizer or disable Windows Explorer automatically if it is running on the system to avoid compatibility problems.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/11/spyware_protection-500x362.jpg" alt="spyware protection" title="spyware protection" width="500" height="362" class="alignnone size-medium wp-image-18132" /></p>
<p>Now, how good is the anti-spyware software? Avanquest show test results conducted by AV-Test on their homepage which tested Double Anti-Spyware Pro against PC Tools Spyware Doctor and Webroot Spy Sweeper. Other tests have not been published yet and it is not even possible to find the AV-Test results anywhere on the Internet. But what about the two engines that the security software is using? According to users on some web forums the program is using the engines of Outpost AntiSpyware + VIPRE (CounterSpy) which both did receive good reviews and recommendations. </p>
<p><strong>Update:</strong> The software is using the following engines: Double Anti-Spy includes Sunbelt&#8217;s VIPRE (Engine A) + Outpost AntiSpyware combined with Virus Buster SDK (Engine B)</p>
<p><strong>Verdict:</strong></p>
<p>Double Anti-Spy Professional utilizes two scanning engines from respected companies to protect the computer against spyware which makes it more effective. Resource usage was a bit high on a Windows 7 test system if the window of the program was active (about 80 Megabytes). The program itself is compatible with Windows XP and 32-bit or 64-bit editions of Windows Vista and Windows 7. More <a href="http://doubleantispy.com/home.aspx">information</a> are available at the Double Anti-Spy Professional homepage.</p>
<p><strong>Giveaway:</strong></p>
<p>We have ten download copies and licenses for Double Anti-Spy Professional. Just leave a comment below for a chance to win a copy. Every comment in the next 24 hours will take part in the draw and the winners will be emailed. The email will contain the download link, license key and instructions. </p>

	Tags: <a href="http://www.ghacks.net/tag/anti-spyware/" title="anti-spyware" rel="tag">anti-spyware</a>, <a href="http://www.ghacks.net/tag/avanquest/" title="avanquest" rel="tag">avanquest</a>, <a href="http://www.ghacks.net/tag/double-anti-spy-professional/" title="double anti-spy professional" rel="tag">double anti-spy professional</a>, <a href="http://www.ghacks.net/tag/double-anti-spy-professional-review/" title="Double Anti-Spy Professional Review" rel="tag">Double Anti-Spy Professional Review</a>, <a href="http://www.ghacks.net/tag/giveaway/" title="giveaway" rel="tag">giveaway</a>, <a href="http://www.ghacks.net/tag/offers/" title="offers" rel="tag">offers</a>, <a href="http://www.ghacks.net/tag/security-software/" title="security-software" rel="tag">security-software</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/05/29/windows-defender/" title="Windows Defender (May 29, 2009)">Windows Defender</a> (11)</li>
	<li><a href="http://www.ghacks.net/2009/10/20/winx-dvd-author-giveaway/" title="WinX DVD Author Giveaway (October 20, 2009)">WinX DVD Author Giveaway</a> (53)</li>
	<li><a href="http://www.ghacks.net/2009/03/20/windows-registry-watcher/" title="Windows Registry Watcher (March 20, 2009)">Windows Registry Watcher</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/11/09/windows-7-firewall-control/" title="Windows 7 Firewall Control (November 9, 2009)">Windows 7 Firewall Control</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/08/29/use-usb-flash-drives-to-lock-windows/" title="Use USB Flash Drives To Lock Windows (August 29, 2009)">Use USB Flash Drives To Lock Windows</a> (13)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/11/05/double-anti-spy-professional-review-and-giveaway/feed/</wfw:commentRss>
		<slash:comments>66</slash:comments>
		</item>
		<item>
		<title>Free Web Proxy Checker</title>
		<link>http://www.ghacks.net/2009/11/04/free-web-proxy-checker/</link>
		<comments>http://www.ghacks.net/2009/11/04/free-web-proxy-checker/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 20:53:17 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[free web proxy]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[proxy server]]></category>
		<category><![CDATA[web proxy]]></category>
		<category><![CDATA[web proxy checker]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=18124</guid>
		<description><![CDATA[A problem with most proxy servers and web proxies is that many tend to stop working after a while. The majority of web proxy servers are rather short lived with only a minority of popular ones that make it past the first six months of their existence. There are many reasons for this with the [...]]]></description>
			<content:encoded><![CDATA[<p>A problem with most proxy servers and web proxies is that many tend to stop working after a while. The majority of <a href="http://www.ghacks.net/2006/08/04/free-web-proxy-list/">web proxy</a> servers are rather short lived with only a minority of popular ones that make it past the first six months of their existence. There are many reasons for this with the most prominent ones being shut down by the hosting company or by the webmaster who is not able to monetize the server properly to keep up with the increasing bandwidth demand.</p>
<p><span id="more-18124"></span>The web proxy checker is a lightweight tool for the Windows operating system that can check various proxy servers. The types that it can check are:</p>
<ul>
<li>SOCKS4</li>
<li>SOCKS5</li>
<li>HTTP</li>
<li>HTTPS</li>
</ul>
<p>The user who wants to check proxies can either load them from a text file or paste urls that point to proxies in the interface directly. The free web proxy checker will then parse the urls or text documents line by line and check the proxy servers against the rules configured by the user.</p>
<p>It is possible to check the proxy server against a url (the default is the Gmail url) or a host name and port with a ping always being performed in the beginning to sort out bad proxies immediately that do not respond positively.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/11/free_web_proxy_checker-500x404.jpg" alt="free web proxy checker" title="free web proxy checker" width="500" height="404" class="alignnone size-medium wp-image-18125" /></p>
<p>The web proxy checker comes with extensive options from selecting random user agents, connection settings, detecting a proxy server&#8217;s country of origin or running a distribution web server to logging options and statistics. Some of the options are for advanced users only but users with little to no knowledge should be able to start their first proxy check in under five minutes with the default configuration.</p>
<p>Web Proxy Checker is <a href="http://www.optinsoft.com/listmanager/wpc.htm">available</a> for download at the developer&#8217;s website. It is compatible with most versions of the Microsoft Windows operating system including Windows 7.</p>

	Tags: <a href="http://www.ghacks.net/tag/free-web-proxy/" title="free web proxy" rel="tag">free web proxy</a>, <a href="http://www.ghacks.net/tag/proxy/" title="proxy" rel="tag">proxy</a>, <a href="http://www.ghacks.net/tag/proxy-server/" title="proxy server" rel="tag">proxy server</a>, <a href="http://www.ghacks.net/tag/web-proxy/" title="web proxy" rel="tag">web proxy</a>, <a href="http://www.ghacks.net/tag/web-proxy-checker/" title="web proxy checker" rel="tag">web proxy checker</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/04/15/proxy-server-usage-to-extend-jailtime-in-the-us/" title="Proxy Server Usage To Extend Jailtime In The US (April 15, 2009)">Proxy Server Usage To Extend Jailtime In The US</a> (8)</li>
	<li><a href="http://www.ghacks.net/2008/09/29/web-proxy-server-list/" title="Web Proxy Server List (September 29, 2008)">Web Proxy Server List</a> (59)</li>
	<li><a href="http://www.ghacks.net/2006/01/15/web-proxy-list-january-2006/" title="Web Proxy List January 2006 (January 15, 2006)">Web Proxy List January 2006</a> (94)</li>
	<li><a href="http://www.ghacks.net/2006/08/04/free-web-proxy-list/" title="Web Proxy (August 4, 2006)">Web Proxy</a> (187)</li>
	<li><a href="http://www.ghacks.net/2006/01/18/surfing-anonymously/" title="Surfing Anonymously (January 18, 2006)">Surfing Anonymously</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/11/04/free-web-proxy-checker/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Starting services at boot in Linux</title>
		<link>http://www.ghacks.net/2009/11/04/starting-services-at-boot-in-linux/</link>
		<comments>http://www.ghacks.net/2009/11/04/starting-services-at-boot-in-linux/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 17:25:40 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[boot services]]></category>
		<category><![CDATA[init]]></category>
		<category><![CDATA[linux boot]]></category>
		<category><![CDATA[rc.local]]></category>
		<category><![CDATA[runlevels]]></category>
		<category><![CDATA[sysV]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=18116</guid>
		<description><![CDATA[There are plenty of times when you may want to add a new service to start when your Linux machine boots. Or you may want to stop a service from starting upon boot. And, like nearly every aspect of Linux, there are many ways to deal with this scenario. And different distributions handle this in [...]]]></description>
			<content:encoded><![CDATA[<p>There are plenty of times when you may want to add a new service to start when your Linux machine boots. Or you may want to stop a service from starting upon boot. And, like nearly every aspect of Linux, there are many ways to deal with this scenario. And different distributions handle this in different ways. So what is the best way for you to manage this task?</p>
<p>Because different distributions handle this task differently, we will examine how Fedora (and friends) handle the task and how Ubuntu (and friends) handle the task. As well we will also examine a neutral method that can always work in a pinch. All three methods will be command line, so stretch out those fingers and get ready to type.</p>
<p><span id="more-18116"></span><strong>Fedora (and friends)</strong></p>
<p>The Fedora distribution uses the <em>chkconfig</em> command to update and query system run-level information for system services. The usage of this command is:</p>
<p><em>chkconfig OPTIONS SERVICE ON/OF</em></p>
<p>Where:</p>
<ul>
<li><span style="background-color: #ffffff">OPTIONS are the various options the command offers.</span></li>
<li><span style="background-color: #ffffff">SERVICE is the service you want to add at startup.</span></li>
<li><span style="background-color: #ffffff">ON/OFF is either on or off &#8211; depending on if you want the s<span style="background-color: #ffffff">ervice to start or not.</span></span></li>
</ul>
<p><span style="background-color: #ffffff">The confusion with the <em>chkconfig </em>command generally boils down to runlevel. The typical Linux runlevels are:</span></p>
<ul>
<li><span style="background-color: #ffffff">0 &#8211; Halt</span></li>
<li><span style="background-color: #ffffff">1 &#8211; Single user mode</span></li>
<li><span style="background-color: #ffffff">2 &#8211; Multi user mode</span></li>
<li><span style="background-color: #ffffff">3 &#8211; Multi user mode with networking</span></li>
<li><span style="background-color: #ffffff">4 &#8211; Not used</span></li>
<li><span style="background-color: #ffffff">5 &#8211; X11</span></li>
<li><span style="background-color: #ffffff">6 &#8211; Reboot</span></li>
</ul>
<p><span style="background-color: #ffffff">So with <em>chkconfig </em>you can also define at which point the service starts. So let&#8217;s say you want Apache to start at boot and you want it to start for levels 3, 4, and 5. For this you would issue the command (as the root user):</span></p>
<p><span style="background-color: #ffffff"><em>chkconfig &#8211;level 345 httpd on</em></span></p>
<p><span style="background-color: #ffffff">Now, if you don&#8217;t want Apache to run at boot you could issue the command:</span></p>
<p><span style="background-color: #ffffff"><em>chkconfig httpd off</em></span></p>
<p><span style="background-color: #ffffff">If you want to know what services are running at boot you can issue the command:</span></p>
<p><span style="background-color: #ffffff"><em>chkconfig &#8211;list</em></span></p>
<p><span style="background-color: #ffffff">The above command will list out all services that are starting at boot time.</span></p>
<p><span style="background-color: #ffffff"><strong>Ubuntu (and friends)</strong></span></p>
<p><span style="background-color: #ffffff">Ubuntu (and friends) takes a totally different route to the same destination. Instead of using <em>chkconfig </em>Ubuntu uses the <em>update-rc.d</em> command. This command makes things pretty simple. The command structure is:</span></p>
<p><em>update-rc.d SERVICE OPTIONS</em></p>
<p>Where OPTIONS are available options and SERVICE is the service you want to start.</p>
<p>With <em>update-rc.d</em> there is an option that makes it simple: <em>defaults.</em> So to add sshd to the start up process, you would issue the command:</p>
<p><em>sudo update-rc.d sshd defaults</em></p>
<p>To remove the same service from start up you would issue the following command:</p>
<p><em>sudo update-rc.d sshd remove</em></p>
<p>Now let&#8217;s take a look at a fail safe, nearly-universal method</p>
<p><strong>rc.local</strong></p>
<p>There is another means of getting a service to start. I recommend using either of the two above before you try this means. The <strong>rc.local</strong> file is a file that is executed at the end of the multiuser runlevel. By default, this script does nothing, but you can add to it so that it does.</p>
<p>Say you want Apache to start at boot up, and you want to do so from <strong>rc.local</strong>. You can do this by adding one of the following lines at the end of your <strong>/etc/rc.local</strong> file.</p>
<p>Fedora:</p>
<p><em>/etc/init.d/rc.d/httpd star</em>t</p>
<p>Ubuntu:</p>
<p><em>/etc/init.d/apache2 start</em></p>
<p>Save that file and you should be good to go. If you change your mind and do not want that service to start at boot, just remove the line you added.</p>
<p><strong>Final thoughts</strong></p>
<p>The above should allow you get that service that needs to start at boot working correctly. Make sure, however, you use the distribution-prescribed method before you use the <strong>rc.local</strong> method.</p>

	Tags: <a href="http://www.ghacks.net/tag/boot-services/" title="boot services" rel="tag">boot services</a>, <a href="http://www.ghacks.net/tag/init/" title="init" rel="tag">init</a>, <a href="http://www.ghacks.net/tag/linux-boot/" title="linux boot" rel="tag">linux boot</a>, <a href="http://www.ghacks.net/tag/rclocal/" title="rc.local" rel="tag">rc.local</a>, <a href="http://www.ghacks.net/tag/runlevels/" title="runlevels" rel="tag">runlevels</a>, <a href="http://www.ghacks.net/tag/sysv/" title="sysV" rel="tag">sysV</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/04/04/get-to-know-linux-the-etcinitd-directory/" title="Get To Know Linux: The /etc/init.d Directory (April 4, 2009)">Get To Know Linux: The /etc/init.d Directory</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/11/04/starting-services-at-boot-in-linux/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Add Flickr Access To Windows Explorer</title>
		<link>http://www.ghacks.net/2009/11/04/add-flickr-access-to-windows-explorer/</link>
		<comments>http://www.ghacks.net/2009/11/04/add-flickr-access-to-windows-explorer/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 13:17:10 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[flickr drive]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[photo hosting]]></category>
		<category><![CDATA[windows software]]></category>
		<category><![CDATA[windows-explorer]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=18103</guid>
		<description><![CDATA[Just a few days ago we reviewed the Windows Explorer plugin Windows Live Skydrive Explorer which allowed Windows Live users to access their Skydrive files in Windows Explorer. The plugin made it more comfortable to work with the files that were hosted at Microsoft&#8217;s online storage service. 
Flickr Drive Shell is a similar plugin for [...]]]></description>
			<content:encoded><![CDATA[<p>Just a few days ago we reviewed the Windows Explorer plugin <a href="http://www.ghacks.net/2009/10/29/windows-live-skydrive-explorer/">Windows Live Skydrive Explorer</a> which allowed Windows Live users to access their Skydrive files in Windows Explorer. The plugin made it more comfortable to work with the files that were hosted at Microsoft&#8217;s online storage service. </p>
<p>Flickr Drive Shell is a similar plugin for Windows Explorer which can display the photos hosted at the Flickr photo hosting service. The program will display a new Flickr Drive icon in the My Computer window in Windows Explorer. The service needs to be authorized which is done by entering the username in the popup window that is being displayed after clicking on the icon for the first time. This will lead to the Flickr website where the user needs to login to authorize the desktop application.</p>
<p><span id="more-18103"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/11/windows_explorer_flickr-500x279.jpg" alt="windows explorer flickr" title="windows explorer flickr" width="500" height="279" class="alignnone size-medium wp-image-18104" /></p>
<p>Flickr Drive will work like any other drive after the authorization. It provides access to the private photos of the user and access to the two public folders Today&#8217;s hot tags and Today&#8217;s hot photos. The photos are displayed as thumbnail images in Windows Explorer with options to interact with the photos that are displayed. This includes copying, printing and viewing photos, moving them or even editing them in the default Windows image editor.</p>
<p>Photos can be easily copied to the associated Flickr user account which can then be accessed from the Flickr website normally. This is actually a very comfortable way of adding files to Flickr. Flickr Drive Shell is <a href="http://www.viksoe.dk/code/flickrdrive.htm">available</a> as an executable and source at the developer&#8217;s website. The program is compatible with Windows Vista and Windows 7. (via <a href="http://techie-buzz.com/featured/browse-upload-flickr-images-from-windows-explorer.html?utm_source=subscriber&#038;utm_medium=rss&#038;utm_campaign=rss">Techie-Buzz</a>)</p>

	Tags: <a href="http://www.ghacks.net/tag/flickr/" title="flickr" rel="tag">flickr</a>, <a href="http://www.ghacks.net/tag/flickr-drive/" title="flickr drive" rel="tag">flickr drive</a>, <a href="http://www.ghacks.net/tag/open-source/" title="Open Source" rel="tag">Open Source</a>, <a href="http://www.ghacks.net/tag/photo-hosting/" title="photo hosting" rel="tag">photo hosting</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a>, <a href="http://www.ghacks.net/tag/windows-explorer/" title="windows-explorer" rel="tag">windows-explorer</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/11/22/windows-tabbed-browsing/" title="Windows Tabbed Browsing (November 22, 2008)">Windows Tabbed Browsing</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/10/21/xkcd-comic-wallpaper-changer/" title="Xkcd Comic Wallpaper Changer (October 21, 2009)">Xkcd Comic Wallpaper Changer</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/07/03/wireless-network-scanner-inssider/" title="Wireless Network Scanner inSSIDer (July 3, 2009)">Wireless Network Scanner inSSIDer</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/05/05/windows-run-aliases/" title="Windows Run Aliases (May 5, 2009)">Windows Run Aliases</a> (8)</li>
	<li><a href="http://www.ghacks.net/2009/05/12/windows-management-super-maximize-windows/" title="Windows Management: Super Maximize Windows (May 12, 2009)">Windows Management: Super Maximize Windows</a> (9)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/11/04/add-flickr-access-to-windows-explorer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Connect to your Samba server from Linux</title>
		<link>http://www.ghacks.net/2009/11/04/connect-to-your-samba-server-from-linux/</link>
		<comments>http://www.ghacks.net/2009/11/04/connect-to-your-samba-server-from-linux/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 23:03:42 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Tutorials Advanced]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[samba]]></category>
		<category><![CDATA[samba shares]]></category>
		<category><![CDATA[smb.conf]]></category>
		<category><![CDATA[smbclient]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=18072</guid>
		<description><![CDATA[I have written a few articles on Samba here on Ghacks. And most people know how to connect to Samba shares via Windows. Generally speaking (when all is set up correctly) it&#8217;s just a matter of opening up Explorer and entering \\ADDRESS_OF_SAMBA_SERVER\SHARENAME to get to your Samba shares. But what about in Linux? How do [...]]]></description>
			<content:encoded><![CDATA[<p>I have written a few articles on Samba here on Ghacks. And most people know how to connect to Samba shares via Windows. Generally speaking (when all is set up correctly) it&#8217;s just a matter of opening up Explorer and entering \\ADDRESS_OF_SAMBA_SERVER\SHARENAME to get to your Samba shares. But what about in Linux? How do you go about connecting to Samba shares with the same operating system that is running the Samba server?</p>
<p>One would think that an easy task. It actually is, once you know how it is done.  And in this article I am going to show you two different ways of making the connection to your Samba server. You will need to have a working knowledge of how the Samba server is set up as well as a username/password configured on the Samba server. There are also a few steps to take on the desktop for one certain method of connection.</p>
<p>The two methods I will describe are: Using GNOME&#8217;s Connect To Server dialog and the command line. The latter will be used to show you how to set up auto mounting for Samba.</p>
<p><span id="more-18072"></span></p>
<p><strong>The graphical method</strong></p>
<div id="attachment_18074" class="wp-caption alignleft" style="width: 190px"><a rel="attachment wp-att-18074" href="http://www.ghacks.net/2009/11/04/connect-to-your-samba-server-from-linux/connect_to_server/"><img class="size-thumbnail wp-image-18074 " src="http://www.ghacks.net/wp-content/uploads/2009/11/connect_to_server-300x300.png" alt="Figure 1" width="180" height="180" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>If you take a look at the GNOME Places menu you will see an entry labeled &#8220;Connect to server&#8230;&#8221;. This is what you want to use in order to connect to your Samba server. When you click on that a new window will open. From the Service type drop-down select &#8220;Windows share&#8221; (see Figure 1).</p>
<p>When you select that entry some of the configuration options will change. As you can see (in Figure 1), I have entered the necessary options to connect to a Samba server on my internal network. You will want to replace the information so it reflects your needs. The only tricky bit of information might be the Folder entry. If you are connecting to the root directory on the share you will not need to enter anything there. Say, for instance, you share is <strong>/media/samba/user<em>. </em><span style="font-weight: normal">If you want to connect to that directory leave the Folder entry blank. Say, however, you want to connect directly to a sub-folder within that share &#8211; you can enter that folder here. This, of course, isn&#8217;t needed because you can always traverse the sub-directories with simple navigation. <span style="background-color: #ffffff"><strong><span style="font-weight: normal">You can also choose to add a bookmark instantly, from in this window. </span></strong></span></span></strong></p>
<p><strong><span style="font-weight: normal"><span style="background-color: #ffffff"><strong><span style="font-weight: normal"> </span></strong></span></span></strong></p>
<p><strong><strong> </strong></strong></p>
<p><strong><strong> </strong></strong></p>
<div id="attachment_18075" class="wp-caption alignright" style="width: 190px"><a rel="attachment wp-att-18075" href="http://www.ghacks.net/2009/11/04/connect-to-your-samba-server-from-linux/connect_to_server_password/"><img class="size-thumbnail wp-image-18075 " src="http://www.ghacks.net/wp-content/uploads/2009/11/connect_to_server_password-300x300.png" alt="Figure 2" width="180" height="180" /></a><p class="wp-caption-text">Figure 2</p></div>
<p>Once you have all of the information entered click Connect and you will be greeted with a new window that requires you to enter a password. Also, if you do not supply a Domain name in the previous window, you will be required to enter it here.</p>
<p>You can also set this up to remember your password either until you logout or until, well, forever. Once you have entered the password/domain click the Connect button and a new Nautilus window will open inside of your Samba Share.</p>
<p><strong>Using the command line</strong></p>
<p>Now we&#8217;re going to use the command line to accomplish a similar goal. The biggest difference is that we are going to actually mount the Samba share into another directory, very much the same way we would mount a second hard drive.</p>
<p>There are a few pieces to put together before we actually take care of the mounting. First let&#8217;s create a directory that the Samba share will be mounted to. So from the terminal window issue the following command:</p>
<p><em>sudo mkdir /media/samba</em></p>
<p>Now let&#8217;s make sure our users can read/write to this directory with the command:</p>
<p><em>sudo chmod -R u+rw /media/samba</em></p>
<p>Okay now let&#8217;s make sure we can see the Samba shares from the command line. We&#8217;ll do that with the <em>smbclient </em>command like so:</p>
<p><em>smbclient -L //SAMBA_SERVER_ADDRESS</em></p>
<p>Where <em>SAMBA_SERVER_ADDRESS</em> is the actual IP address of the Samba server.</p>
<div id="attachment_18089" class="wp-caption alignleft" style="width: 190px"><a rel="attachment wp-att-18089" href="http://www.ghacks.net/2009/11/04/connect-to-your-samba-server-from-linux/smbclient/"><img class="size-thumbnail wp-image-18089 " src="http://www.ghacks.net/wp-content/uploads/2009/11/smbclient-300x300.png" alt="Figure 3" width="180" height="180" /></a><p class="wp-caption-text">Figure 3</p></div>
<p>You will be prompted for your username and password. If you get an error it could be that the usernames don&#8217;t match on each end. If that&#8217;s the case you could add the <em>-U </em>switch to the command like so:</p>
<p><em>smbclient &#8211;user=jlwallen -L  //SAMBA_SERVER_ADDRESS</em></p>
<p>You should see output similar to that shown in Figure 3.</p>
<p>Now it&#8217;s time to try to mount the Samba share to the <strong>/media/samba</strong> directory. To do this issue the command:</p>
<p><em>sudo mount -t cifs //SAMBA_SERVER_ADDRESS/SHARE -o username=USERNAME /media/samba/</em></p>
<p>Where:</p>
<ul>
<li><span style="background-color: #ffffff">SAMBA_SERVER_ADDRESS is the IP address of the Samba server.</span></li>
<li><span style="background-color: #ffffff">SHARE is the share name.</span></li>
<li><span style="background-color: #ffffff">USERNAME is the username to connect with.</span></li>
</ul>
<p>If that works you can now make this an automated mount by adding the following line to your <strong>/etc/fstab</strong> file:</p>
<p><code>//SAMBA_SERVER_ADDRESS/SHARE     /media/samba    cifs  credentials=/etc/samba/user.cred 0 0 </code></p>
<p>Where SAMBA_SERVER_ADDRESS is the IP address of the Samba server and SHARE is the share name.</p>
<p>Notice the user.cred file. This is one last thing we need to create. With your text editor create this file and place into it:</p>
<p><em>username=USER</em></p>
<p><em>password=PASSWORD</em></p>
<p>Where USER is the username to log in with and PASSWORD is the password to use for authentication. The final step is the give this new file the proper permissions with the command:</p>
<p>sudo chmod 600 /etc/samba/user.cred</p>
<p>You can ensure this works by issuing the command <em>mount -a</em> which should mount your Samba share.</p>
<p><strong>Final thoughts</strong></p>
<p>You should now have an auto-mounting Samba share &#8211; or the ability to easily connect your GNOME desktop to a Samba share. Samba is a very powerful tool that not only can share files with Windows machines, but with Linux machines as well.</p>

	Tags: <a href="http://www.ghacks.net/tag/gnome/" title="GNOME" rel="tag">GNOME</a>, <a href="http://www.ghacks.net/tag/samba/" title="samba" rel="tag">samba</a>, <a href="http://www.ghacks.net/tag/samba-shares/" title="samba shares" rel="tag">samba shares</a>, <a href="http://www.ghacks.net/tag/smbconf/" title="smb.conf" rel="tag">smb.conf</a>, <a href="http://www.ghacks.net/tag/smbclient/" title="smbclient" rel="tag">smbclient</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/09/04/set-up-your-new-ubuntu-server-as-a-samba-server/" title="Set up your new Ubuntu Server as a Samba Server (September 4, 2009)">Set up your new Ubuntu Server as a Samba Server</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/02/06/get-to-know-linux-understanding-smbconf/" title="Get To Know Linux: Understanding smb.conf (February 6, 2009)">Get To Know Linux: Understanding smb.conf</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/04/19/auto-mounting-a-samba-share-in-linux/" title="Auto mounting a Samba share in Linux (April 19, 2009)">Auto mounting a Samba share in Linux</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/04/03/simple-gnome-note-taking-with-tomboy/" title="Simple GNOME Note Taking with Tomboy (April 3, 2009)">Simple GNOME Note Taking with Tomboy</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/02/15/quick-archiving-in-gnome/" title="Quick Archiving in GNOME (February 15, 2009)">Quick Archiving in GNOME</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/11/04/connect-to-your-samba-server-from-linux/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Desktop Client For Google Translate</title>
		<link>http://www.ghacks.net/2009/11/03/desktop-client-for-google-translate/</link>
		<comments>http://www.ghacks.net/2009/11/03/desktop-client-for-google-translate/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 17:55:43 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[client for google translate]]></category>
		<category><![CDATA[google translate]]></category>
		<category><![CDATA[translate text]]></category>
		<category><![CDATA[translation software]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=18066</guid>
		<description><![CDATA[The Google Translate Api allows web and software developers to implement the translation service into their own products and websites. One of the latest desktop programs to take advantage of the Google Translate service is an application called Client For Google Translate. This translation software basically provides the means to translate text in nearly every [...]]]></description>
			<content:encoded><![CDATA[<p>The Google Translate Api allows web and software developers to implement the translation service into their own products and websites. One of the latest desktop programs to take advantage of the Google Translate service is an application called Client For Google Translate. This translation software basically provides the means to translate text in nearly every application that is launched in the operating system. It works out of the box in web browsers but is not restricted to them.</p>
<p>A few settings need to be configured after installation,especially the language the text should be translated to. The software is configured to automatically detect the language of the text that the user wants to translate. This text can be selected with the mouse. A small G icon will appear next to the text. If that icon is pressed the area is expanded automatically and the translation displayed. </p>
<p><span id="more-18066"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/11/google_translate-500x110.jpg" alt="google translate" title="google translate" width="500" height="110" class="alignnone size-medium wp-image-18067" /></p>
<p>Several controls are displayed below the translated text including options to copy the text to the Windows clipboard or to select the languages manually for the translation which comes in handy if the translation service detected the wrong language.</p>
<p>The very same principle can be used in other applications with one difference. The application needs to be added to the Client For Google Translate before the translate options become available there as well. This is done by bringing the application window to the front, right-clicking the system tray icon of Client for Google Translate and selecting to enable the feature in the application.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/11/translate_software.jpg" alt="translate software" title="translate software" width="232" height="353" class="alignnone size-full wp-image-18068" /></p>
<p>From then on it is possible to translate text in the selected software program as well. The software client can also be used to translate text directly by copying it into the interface.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/11/client_google_translate-500x377.jpg" alt="client google translate" title="client google translate" width="500" height="377" class="alignnone size-medium wp-image-18069" /></p>
<p><a href="http://translateclient.com/">Client For</a> Google Translate is a software program for the Windows operating system. It is compatible with most versions including <a href="http://windows7news.com/">Windows 7</a>, Windows Vista and Windows XP. A commercial pro version is available as well which adds Wikipedia articles and dictionaries as new features.</p>

	Tags: <a href="http://www.ghacks.net/tag/client-for-google-translate/" title="client for google translate" rel="tag">client for google translate</a>, <a href="http://www.ghacks.net/tag/google-translate/" title="google translate" rel="tag">google translate</a>, <a href="http://www.ghacks.net/tag/translate-text/" title="translate text" rel="tag">translate text</a>, <a href="http://www.ghacks.net/tag/translation-software/" title="translation software" rel="tag">translation software</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/04/09/language-translation-software/" title="Language Translation Software (April 9, 2009)">Language Translation Software</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/06/08/google-translate-software-client/" title="Google Translate Software Client (June 8, 2009)">Google Translate Software Client</a> (9)</li>
	<li><a href="http://www.ghacks.net/2009/09/04/google-dictionary-translate-and-definition-software-dictionary-net/" title="Google Dictionary, Translate And Definition Software Dictionary.net (September 4, 2009)">Google Dictionary, Translate And Definition Software Dictionary.net</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/10/21/zonescreen-finally-gets-64-bit-update/" title="ZoneScreen Finally Gets 64-bit Update (October 21, 2008)">ZoneScreen Finally Gets 64-bit Update</a> (6)</li>
	<li><a href="http://www.ghacks.net/2009/10/07/zc-dvd-creator-platinum-free-full-version/" title="ZC DVD Creator Platinum [Free Full Version] (October 7, 2009)">ZC DVD Creator Platinum [Free Full Version]</a> (16)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/11/03/desktop-client-for-google-translate/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>CD DVD Data Recovery Software</title>
		<link>http://www.ghacks.net/2009/11/03/cd-dvd-data-recovery-software/</link>
		<comments>http://www.ghacks.net/2009/11/03/cd-dvd-data-recovery-software/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 16:58:15 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[cd data recovery]]></category>
		<category><![CDATA[data recovery software]]></category>
		<category><![CDATA[data-recovery]]></category>
		<category><![CDATA[dataminer]]></category>
		<category><![CDATA[dvd data recovery]]></category>
		<category><![CDATA[portable software]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=18063</guid>
		<description><![CDATA[Data on CDs and DVDs can become unreadable like data on hard drives and other storage devices. And basically the same set of data recovery programs are available for attempting to restore the data on those optical discs. The reasons why data on CD or DVD discs become unreadable are usually different from the reasons [...]]]></description>
			<content:encoded><![CDATA[<p>Data on CDs and DVDs can become unreadable like data on hard drives and other storage devices. And basically the same set of data recovery programs are available for attempting to restore the data on those optical discs. The reasons why data on CD or DVD discs become unreadable are usually different from the reasons why hard drives and other storage devices fail. The main reasons are scratches on the disc and other problems with the physical structure of the disc.</p>
<p>DataMiner is a portable software program for the Windows operating system that can be used to recover data from optical media such as CD or DVD. The program will analyse the data on the disc using heuristic detection algorithms. The analysis of the data on the disc is highly influenced by the type of disc, the data and the type of error that is encountered when trying to access the data.</p>
<p><span id="more-18063"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/11/data_recovery-500x312.jpg" alt="data recovery" title="data recovery" width="500" height="312" class="alignnone size-medium wp-image-18064" /></p>
<p>Dataminer will analyze the whole disc, a process that can be terminated at any point. The files that have been found up to this point are then displayed in the interface. The display is basic as it will only list the file name (if it was discovered), the size, type and offset of the file on the disc.</p>
<p>It is possible to extract selected files or files of a certain file extension to a local storage device. Other options include a basic search to find a specific file name and saving project related information to continue working on the project at a later time. the CD and DVD data recovery software can also create and load images of physical discs which is obviously the safer way to go as it is then possible to analyze the disc image instead of the disc itself which will reduce the chance to further damage the disc.</p>
<p>The data recovery software is available at the <a href="http://greenfish.extra.hu/downloads.php">Greenfish</a> website. It is compatible with most versions of the Microsoft Windows operating system including <a href="http://windows7news.com/">Windows 7</a>, Windows Vista and Windows XP.</p>

	Tags: <a href="http://www.ghacks.net/tag/cd-data-recovery/" title="cd data recovery" rel="tag">cd data recovery</a>, <a href="http://www.ghacks.net/tag/data-recovery-software/" title="data recovery software" rel="tag">data recovery software</a>, <a href="http://www.ghacks.net/tag/data-recovery/" title="data-recovery" rel="tag">data-recovery</a>, <a href="http://www.ghacks.net/tag/dataminer/" title="dataminer" rel="tag">dataminer</a>, <a href="http://www.ghacks.net/tag/dvd-data-recovery/" title="dvd data recovery" rel="tag">dvd data recovery</a>, <a href="http://www.ghacks.net/tag/portable-software/" title="portable software" rel="tag">portable software</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/02/20/recover-deleted-files-3/" title="Recover Deleted Files With DiskDigger (February 20, 2009)">Recover Deleted Files With DiskDigger</a> (6)</li>
	<li><a href="http://www.ghacks.net/2009/01/19/forensic-data-recovery-software/" title="Forensic Data Recovery Software (January 19, 2009)">Forensic Data Recovery Software</a> (7)</li>
	<li><a href="http://www.ghacks.net/2008/10/06/dvd-data-recovery-software/" title="DVD Data Recovery Software (October 6, 2008)">DVD Data Recovery Software</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/10/15/data-recovery-tools-encopy/" title="Data Recovery Tools: Encopy (October 15, 2008)">Data Recovery Tools: Encopy</a> (0)</li>
	<li><a href="http://www.ghacks.net/2009/04/04/cd-data-recovery-tools-overview/" title="CD Data Recovery Tools Overview (April 4, 2009)">CD Data Recovery Tools Overview</a> (7)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/11/03/cd-dvd-data-recovery-software/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Convert Photos To PDF</title>
		<link>http://www.ghacks.net/2009/11/03/convert-photos-to-pdf/</link>
		<comments>http://www.ghacks.net/2009/11/03/convert-photos-to-pdf/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 13:09:21 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[photo to pdf]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=18047</guid>
		<description><![CDATA[Converting multiple photos into single pdf documents has several advantages. A single file can be stored and managed more comfortable and it&#8217;s also easier to distribute them without running into the problem of missing photos in the process. One interesting use would be for instance to convert photos that have been taken on the last [...]]]></description>
			<content:encoded><![CDATA[<p>Converting multiple photos into single pdf documents has several advantages. A single file can be stored and managed more comfortable and it&#8217;s also easier to distribute them without running into the problem of missing photos in the process. One interesting use would be for instance to convert photos that have been taken on the last holiday into one pdf document to send the document to friends and relatives.</p>
<p>Zilla JPG To PDF Converter is a software program for the Windows operating system that has been designed for this exact purpose. It can be used to convert multiple photos into a single pdf document. The process itself has been streamlined for ease of use. It actually takes less than a minute to configure the program to turn selected photos into a pdf document. The time it takes to create the pdf document itself depends largely on the amount and quality of the selected photos and the processing power of the computer system.</p>
<p><span id="more-18047"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/11/photos_to_pdf-500x363.jpg" alt="photos to pdf" title="photos to pdf" width="500" height="363" class="alignnone size-medium wp-image-18048" /></p>
<p>Only two steps are mandatory and a few additional ones option. The mandatory steps are to select photos or folders containing photos that should be included int the pdf document and to initiate the conversion by pressing the convert to pdf now button.</p>
<p>Optional steps include selecting a document title, author, creation date, subject, keywords, the output path and the compression quality.</p>
<p>The result is a pdf document that is made up of all the photos that have been selected during the selection process.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/11/photo_pdf-500x295.jpg" alt="photo pdf" title="photo pdf" width="500" height="295" class="alignnone size-medium wp-image-18049" /></p>
<p>Zilla JPG To PDF Converter is an easy to use program that can create pdf documents showing selected photos in no time. The developer could improve it further by allowing layouts added to the pages that can contain text or other objects. An option to select several photos from one folder simultaneously is also missing as it is only possible to either select one photo or a folder full of photos in the application.</p>
<p>The software program is available at the developer&#8217;s website. It is <a href="http://www.pdfzilla.com/zilla_jpg_to_pdf_converter.html">there</a> available for most Microsoft Windows operating systems including Windows XP, Vista and <a href="http://windows7news.com/">Windows 7</a>.</p>

	Tags: <a href="http://www.ghacks.net/tag/images/" title="images" rel="tag">images</a>, <a href="http://www.ghacks.net/tag/pdf/" title="pdf" rel="tag">pdf</a>, <a href="http://www.ghacks.net/tag/photo-to-pdf/" title="photo to pdf" rel="tag">photo to pdf</a>, <a href="http://www.ghacks.net/tag/photos/" title="photos" rel="tag">photos</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/10/23/xnview-add-ons-and-format-plugins/" title="XnView Add-ons and Format Plugins (October 23, 2008)">XnView Add-ons and Format Plugins</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/09/17/turn-photo-sequences-into-time-lapse-movies/" title="Turn Photo Sequences Into Time-Lapse Movies (September 17, 2009)">Turn Photo Sequences Into Time-Lapse Movies</a> (42)</li>
	<li><a href="http://www.ghacks.net/2008/07/27/turn-images-into-ascii-art/" title="Turn Images Into Ascii Art (July 27, 2008)">Turn Images Into Ascii Art</a> (0)</li>
	<li><a href="http://www.ghacks.net/2008/05/22/search-folders-for-duplicate-images/" title="Search folders for duplicate images (May 22, 2008)">Search folders for duplicate images</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/05/20/remove-backgrounds-from-photos-using-fotoflexer/" title="Remove backgrounds from photos using FotoFlexer (May 20, 2008)">Remove backgrounds from photos using FotoFlexer</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/11/03/convert-photos-to-pdf/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>
