<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" version="2.0">

<channel>
	<title>Lucid Tips</title>
	
	<link>http://www.lucidtips.com</link>
	<description>Easily understood tips that make your computing experience easier</description>
	<lastBuildDate>Mon, 15 Jun 2009 14:43:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/LucidTips" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="lucidtips" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">LucidTips</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Secure Browsing using SSH</title>
		<link>http://www.lucidtips.com/2009/06/13/secure-browsing-using-ssh/</link>
		<comments>http://www.lucidtips.com/2009/06/13/secure-browsing-using-ssh/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 19:14:51 +0000</pubDate>
		<dc:creator>lucidTipster</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[openssh]]></category>
		<category><![CDATA[putty]]></category>
		<category><![CDATA[secure browsing]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.lucidtips.com/?p=308</guid>
		<description><![CDATA[It seems like these days wherever you are (coffee shop, airport, burger joint) you can find a wireless hotspot allowing you free access to roam the Internet without much of a problem. However when surfing using these networks the data is send in plain text and is not safe. Using SSH and SOCKS proxy you [...]]]></description>
			<content:encoded><![CDATA[<p>It seems like these days wherever you are (coffee shop, airport, burger joint) you can find a wireless hotspot allowing you free access to roam the Internet without much of a problem. However when surfing using these networks the data is send in plain text and is not safe. Using SSH and SOCKS proxy you can easily encrypt all your web browsing traffic and redirect through your home network (or some other trusted computer).</p>
<p>This howto is targeted for Windows (quick Linux instructions are included towards bottom of this post) and leverages the SSH setup described in my earlier post <a title="Securing Windows Remote Desktop with OpenSSH" href="http://www.lucidtips.com/2008/03/15/securing-windows-remote-desktop-with-openssh" target="_blank">Securing Windows Remote Desktop with OpenSSH</a>. All the changes are on the Client machine. No changes are required on the machine running SSH server.</p>
<h2>Modify Putty configuration on Client</h2>
<ol>
<li>Open PuTTY</li>
<li>In the Saved Sessions list click on the name you created during <a title="Securing Windows Remote Desktop with OpenSSH" href="http://www.lucidtips.com/2008/03/15/securing-windows-remote-desktop-with-openssh/" target="_blank">Securing Windows Remote Desktop with OpenSSH</a></li>
<li>Click Load</li>
<li>In the left pane click on + next to connection</li>
<li>Click on + next to SSH</li>
<li>Click on Tunnels</li>
<li>In the Source port field enter 9090 (Note: In PuTTY the source port field looks small but it will still allow you to enter details)</li>
<li>Leave the Destination field empty</li>
<li>Select Dynamic radio button</li>
<li>Click Add (see <a href="http://picasaweb.google.com/lh/photo/jcfT163ytlVq0JuWzvkuuA?feat=directlink" target="_blank">screenshot</a>)</li>
<li>Click on Session in the left pane</li>
<li>Click Save button (Do not click Load again &#8211; it discard the tunnel changes you made)</li>
</ol>
<h2>Connect using PuTTY</h2>
<ol>
<li>Open PuTTY (if not already open)</li>
<li>In the Saved Sessions list click on the name you created during Securing Windows Remote Desktop with OpenSSH</li>
<li>Click Load</li>
<li>Click Open</li>
<li>The first time you connect you will see a security alert. Click Yes. (see <a href="http://picasaweb.google.com/lucidtips/SecuringWindowsRemoteDesktopWithOpenSSH/photo#5177940934475730850" target="_blank">screenshot</a>)</li>
<li>You will be prompted for username/password</li>
<li>You should be successfully connected to Computer 1 (i.e SSH server) via SSH. (see <a href="http://picasaweb.google.com/lucidtips/SecuringWindowsRemoteDesktopWithOpenSSH/photo#5177945804968644546" target="_blank">screenshot</a>)</li>
</ol>
<h2>Configure Browser proxy</h2>
<ol>
<li>Open FireFox Options (Tools-&gt;Options)</li>
<li>Click Advanced</li>
<li>Select Network tab and click on Settings</li>
<li>Select Manual Proxy configuration</li>
<li>Under SOCKS Host enter localhost and port 9090 (this has to match the port you entered in your Putty configuration)</li>
<li>Select SOCKS v5</li>
<li>Click OK (see <a href="http://picasaweb.google.com/lh/photo/g0-SsTDWY6SNklrZt4dqbg?feat=directlink" target="_blank">screenshot</a>)</li>
</ol>
<p>You can now browse the Internet via a secure SSH connection. To verify go to <a href="http://www.whatismyip.com/" target="_blank">http://www.whatismyip.com/</a> and you should see the external IP address of your home/trusted network. The are some handy FireFox Add-ons to make your life easier.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/125" target="_blank">SwitchProxy Tool</a> &#8211; lets you manage and switch between multiple proxy configurations quickly and easily  (see <a href="http://mozmonkey.com/switchproxy/" target="_blank">screenshot and usage instructions</a>).</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/1731" target="_blank">Live IP Address</a> &#8211; displays your external IP address in Firefox&#8217;s status bar. With one quick glance you can verify you are secure browsing (see <a href="https://addons.mozilla.org/en-US/firefox/images/p/19198/1205957007" target="_blank">screenshot</a>).</p>
<h3>Updated on 06/15/2009 &#8211; DNS Resolution</h3>
<p>As a reader has correctly commented below using the above technique the DNS resolution still happens at the local network and not on your trusted network. This can be altered by changing the FireFox configuration.</p>
<ol>
<li>Open FireFox</li>
<li>In the address field enter about:config</li>
<li>If this is the first time you are accessing FireFox configuration you will see a waring page. Click &#8220;I&#8217;ll be careful, I promise!&#8221; (see <a href="http://picasaweb.google.com/lh/photo/GXpmLPYEdKL5xx5CJPm0YQ?feat=directlink" target="_blank">screenshot</a>)</li>
<li>A page displaying list of all FireFox configuration values is displayed.</li>
<li>Type &#8216;dns&#8217; (without quotes) in the filter field</li>
<li>Right click on network.proxy.socks_remote_dns and select Toggle (see <a href="http://picasaweb.google.com/lh/photo/LVOTYDbTfZOMzONByz46Eg?feat=directlink" target="_blank">screenshot</a>).</li>
<li>The Status column of the configuration page should now show user set for network.proxy.socks_remote_dns</li>
<li>Close the FireFox window</li>
</ol>
<p>The DNS resolution step is optional but is recommended if you are browsing to certain sites that you do not want to be listed on the DNS log of the untrusted network.</p>
<h1>Quick Linux (Ubuntu) instructions</h1>
<p>To install SSH server open terminal window and type the following command</p>
<pre>sudo apt-get install openssh-server</pre>
<p>Check if firewall is active</p>
<pre>sudo ufw status</pre>
<p>If active allow SSH traffic</p>
<pre>sudo ufw allow ssh</pre>
<p>Follow the instructions <a title="Securing Windows Remote Desktop with OpenSSH" href="http://www.lucidtips.com/2008/03/15/securing-windows-remote-desktop-with-openssh/" target="_blank">here</a> to Setup Port Forwarding on your router.</p>
<p>To connect to the SSH server for secure browsing use the command</p>
<pre><code>ssh -D 9090 username@ip-address-of-ssh-server</code></pre>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/LucidTips?a=IerlTgd4DBQ:N4BrAeOsW7Q:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/LucidTips?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=IerlTgd4DBQ:N4BrAeOsW7Q:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=IerlTgd4DBQ:N4BrAeOsW7Q:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=IerlTgd4DBQ:N4BrAeOsW7Q:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=IerlTgd4DBQ:N4BrAeOsW7Q:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=IerlTgd4DBQ:N4BrAeOsW7Q:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=IerlTgd4DBQ:N4BrAeOsW7Q:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.lucidtips.com/2009/06/13/secure-browsing-using-ssh/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Monitor CPU and hard drive temperatures on Ubuntu Linux</title>
		<link>http://www.lucidtips.com/2009/06/06/monitor-cpu-and-hard-drive-temperatures-on-ubuntu-linux/</link>
		<comments>http://www.lucidtips.com/2009/06/06/monitor-cpu-and-hard-drive-temperatures-on-ubuntu-linux/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 20:10:08 +0000</pubDate>
		<dc:creator>lucidTipster</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[computertemp]]></category>
		<category><![CDATA[cpu]]></category>
		<category><![CDATA[hard drive]]></category>
		<category><![CDATA[hddtemp]]></category>
		<category><![CDATA[lm-sensors]]></category>
		<category><![CDATA[monitor]]></category>
		<category><![CDATA[sensors-applet]]></category>
		<category><![CDATA[sensors-detect]]></category>
		<category><![CDATA[temperature]]></category>
		<category><![CDATA[thermal zone]]></category>

		<guid isPermaLink="false">http://www.lucidtips.com/?p=286</guid>
		<description><![CDATA[Most new computers support ACPI which stands for Advanced Configuration and Power Interface. ACPI provides for many functions besides power management, such as thermal management and plug-and-play events. If the fan on your PC is always on this could mean the CPU and hard drive are running hot and this could cause permanant damage to [...]]]></description>
			<content:encoded><![CDATA[<p>Most new computers support ACPI which stands for Advanced Configuration and Power Interface. ACPI provides for many functions besides power management, such as thermal management and plug-and-play events. If the fan on your PC is always on this could mean the CPU and hard drive are running hot and this could cause permanant damage to your PC. There are some command line and GUI based utilities that can be used to monitor the CPU and hard drive temperatures.</p>
<p><strong><span style="text-decoration: underline;">Disclaimer</span></strong>: These steps have worked for me and have been tested on Compaq nc6000 running Ubuntu 9.04 (Jaunty Jackalope). YMMV. I am not responsible for loss of data or damage to computers.</p>
<h1>Installing the required packages</h1>
<p>The following packages need to be installed</p>
<p><strong>lm-sensors</strong> &#8211; a hardware health monitoring package for Linux. It allows you to access information from temperature, voltage, and fan speed sensors. It works with most newer systems</p>
<p><strong>hddtemp</strong> &#8211; monitors and reports the temperature of PATA, SATA or SCSI hard drives by reading Self-Monitoring Analysis and Reporting Technology (S.M.A.R.T.) information on drives that support this feature</p>
<p><strong>sensors-applet</strong> &#8211; an applet for the GNOME panel that displays readings from hardware sensors, including temperatures, fan speeds and voltage readings</p>
<p><strong>computertemp</strong> &#8211; little applet for the GNOME desktop that shows the temperature of your CPU and disks in the panel.</p>
<p>Both <strong>sensors-applet</strong> and <strong>computertemp</strong> are applets that can be added to GNOME panel &#8211; you do not need both. Which one to use is your personal preference.</p>
<p>Open terminal window and type the following command</p>
<pre>sudo apt-get install lm-sensors hddtemp sensors-applet computertemp</pre>
<p>Before we can monitor the temperatures we need to configure the sensors. <strong>sensors-detect</strong> command helps determine which kernel modules need to be loaded to use lm_sensors most effectively.</p>
<p>Open terminal window and type the following command</p>
<pre>sudo sensors-detect</pre>
<p>You will be asked a few questions. It is generally safe and recommended to accept the default answers to all questions except the last one &#8211; the default is NO. You need to answer yes so that the required entries are made in /etc/modules file. Next step is to load the new modules into the kernel</p>
<pre>sudo /etc/init.d/module-init-tools</pre>
<p>Now that you have everything in place you can monitor the CPU and hard drive temperatures either from the command line or add an applet to the GNOME panel.</p>
<h1>Command line options</h1>
<p>Open terminal window and type the following command(s)</p>
<pre>sensors</pre>
<p><a href="http://www.lucidtips.com/wordpress/wp-content/uploads/2009/06/monitor-cpu-and-hard-drive-temperatures-on-ubuntu-linux-1.png"><img class="alignnone size-medium wp-image-291" title="sensors output on nc6000" src="http://www.lucidtips.com/wordpress/wp-content/uploads/2009/06/monitor-cpu-and-hard-drive-temperatures-on-ubuntu-linux-1-300x218.png" alt="sensors output on nc6000" width="300" height="218" /></a></p>
<pre>cat /proc/acpi/thermal_zone/*/temperature</pre>
<p>Depending on your hardware, you may have more than one sensor. On Compaq nc6000 the output was</p>
<p><a href="http://www.lucidtips.com/wordpress/wp-content/uploads/2009/06/monitor-cpu-and-hard-drive-temperatures-on-ubuntu-linux-2.png"><img class="alignnone size-medium wp-image-292" title="cat /proc/acpi/thermal_zone/*/temperature" src="http://www.lucidtips.com/wordpress/wp-content/uploads/2009/06/monitor-cpu-and-hard-drive-temperatures-on-ubuntu-linux-2-300x72.png" alt="cat /proc/acpi/thermal_zone/*/temperature" width="300" height="72" /></a></p>
<pre>sudo hddtemp /dev/sda</pre>
<p>On Compaq nc6000 the output was</p>
<p><a href="http://www.lucidtips.com/wordpress/wp-content/uploads/2009/06/monitor-cpu-and-hard-drive-temperatures-on-ubuntu-linux-3.png"><img class="alignnone size-medium wp-image-293" title="sudo hddtemp /dev/sda" src="http://www.lucidtips.com/wordpress/wp-content/uploads/2009/06/monitor-cpu-and-hard-drive-temperatures-on-ubuntu-linux-3-300x98.png" alt="sudo hddtemp /dev/sda" width="300" height="98" /></a></p>
<h1>Using sensors applet</h1>
<p>Add sensors applet to the panel</p>
<ol>
<li>Right click on the top or bottom panel</li>
<li>Click Add to Panel</li>
<li>Scroll down and select Hardware Sensors Monitor</li>
<li>Click Add</li>
<li>Click Close</li>
</ol>
<p><a href="http://www.lucidtips.com/wordpress/wp-content/uploads/2009/06/monitor-cpu-and-hard-drive-temperatures-on-ubuntu-linux-4.png"><img class="alignnone size-medium wp-image-294" title="adding sensors-applet to panel" src="http://www.lucidtips.com/wordpress/wp-content/uploads/2009/06/monitor-cpu-and-hard-drive-temperatures-on-ubuntu-linux-4-300x262.png" alt="adding sensors-applet to panel" width="300" height="262" /></a></p>
<p>By default sensors applet does not display hard drive temperature. To add it.</p>
<ol>
<li>Right click on the applet and select preferences</li>
<li>Select Sensors tab</li>
<li>Expand hddtemp</li>
<li>Check the box in Enabled</li>
<li>Click Close</li>
</ol>
<p><a href="http://www.lucidtips.com/wordpress/wp-content/uploads/2009/06/monitor-cpu-and-hard-drive-temperatures-on-ubuntu-linux-5.png"><img class="alignnone size-medium wp-image-295" title="configure sensors-applet to display hard drive temperature" src="http://www.lucidtips.com/wordpress/wp-content/uploads/2009/06/monitor-cpu-and-hard-drive-temperatures-on-ubuntu-linux-5-300x248.png" alt="configure sensors-applet to display hard drive temperature" width="300" height="248" /></a></p>
<p>You should now see the CPU and hard drive temperatures in your panel</p>
<p><a href="http://www.lucidtips.com/wordpress/wp-content/uploads/2009/06/monitor-cpu-and-hard-drive-temperatures-on-ubuntu-linux-6.png"><img class="alignnone size-medium wp-image-296" title="sensors-applet" src="http://www.lucidtips.com/wordpress/wp-content/uploads/2009/06/monitor-cpu-and-hard-drive-temperatures-on-ubuntu-linux-6-300x12.png" alt="sensors-applet" width="300" height="12" /></a></p>
<h1>Using computertemp applet</h1>
<ol>
<li>Right click on the top or bottom panel</li>
<li>Click Add to Panel</li>
<li>Scroll down and select Computer Temperature Monitor</li>
<li>Click Add</li>
<li>Click Close</li>
</ol>
<p><a href="http://www.lucidtips.com/wordpress/wp-content/uploads/2009/06/monitor-cpu-and-hard-drive-temperatures-on-ubuntu-linux-7.png"><img class="alignnone size-medium wp-image-297" title="adding computertemp applet to panel" src="http://www.lucidtips.com/wordpress/wp-content/uploads/2009/06/monitor-cpu-and-hard-drive-temperatures-on-ubuntu-linux-7-300x262.png" alt="adding computertemp applet to panel" width="300" height="262" /></a></p>
<p>To display hard drive temperature you need to add another copy of the computertemp applet.</p>
<ol>
<li>Repeat the steps above and add the computertemp applet to the panel</li>
<li>Right the newly added computertemp applet and select preferences</li>
<li>Select HDDTEMP as the sensor to monitor</li>
<li>Select /dev/sda as the Thermal Zone</li>
<li>Click Close</li>
</ol>
<p><a href="http://www.lucidtips.com/wordpress/wp-content/uploads/2009/06/monitor-cpu-and-hard-drive-temperatures-on-ubuntu-linux-8.png"><img class="alignnone size-medium wp-image-298" title="configure computertemp to display hard drive temperature" src="http://www.lucidtips.com/wordpress/wp-content/uploads/2009/06/monitor-cpu-and-hard-drive-temperatures-on-ubuntu-linux-8-300x283.png" alt="configure computertemp to display hard drive temperature" width="300" height="283" /></a></p>
<p>You should now see the CPU and hard drive temperatures in your panel</p>
<p><a href="http://www.lucidtips.com/wordpress/wp-content/uploads/2009/06/monitor-cpu-and-hard-drive-temperatures-on-ubuntu-linux-9.png"><img class="alignnone size-full wp-image-299" title="cpu temperature using computertemp applet" src="http://www.lucidtips.com/wordpress/wp-content/uploads/2009/06/monitor-cpu-and-hard-drive-temperatures-on-ubuntu-linux-9.png" alt="cpu temperature using computertemp applet" width="164" height="100" /></a></p>
<p><a href="http://www.lucidtips.com/wordpress/wp-content/uploads/2009/06/monitor-cpu-and-hard-drive-temperatures-on-ubuntu-linux-10.png"><img class="alignnone size-full wp-image-300" title="hard drive temperature using computertemp applet" src="http://www.lucidtips.com/wordpress/wp-content/uploads/2009/06/monitor-cpu-and-hard-drive-temperatures-on-ubuntu-linux-10.png" alt="hard drive temperature using computertemp applet" width="247" height="87" /></a></p>
<p>Good luck!!!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/LucidTips?a=6QYnir9rxWc:e_qgpC2wQBE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/LucidTips?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=6QYnir9rxWc:e_qgpC2wQBE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=6QYnir9rxWc:e_qgpC2wQBE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=6QYnir9rxWc:e_qgpC2wQBE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=6QYnir9rxWc:e_qgpC2wQBE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=6QYnir9rxWc:e_qgpC2wQBE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=6QYnir9rxWc:e_qgpC2wQBE:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.lucidtips.com/2009/06/06/monitor-cpu-and-hard-drive-temperatures-on-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>VirtualBox – virtualization alternative to VMWare</title>
		<link>http://www.lucidtips.com/2009/05/30/virtualbox-virtualization-alternative-to-vmware/</link>
		<comments>http://www.lucidtips.com/2009/05/30/virtualbox-virtualization-alternative-to-vmware/#comments</comments>
		<pubDate>Sun, 31 May 2009 00:21:24 +0000</pubDate>
		<dc:creator>lucidTipster</dc:creator>
				<category><![CDATA[freeware]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[virtual machine]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[virtualization]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.lucidtips.com/?p=278</guid>
		<description><![CDATA[My post on Installing VMWare Server (and Windows XP) on Ubuntu gets a lot of hits. There is another open source virtualization software from Sun that I really like &#8211; VirtualBox. I personally prefer VirtualBox over VMWare. Installation is a breeze in comparison to VMWare. Binaries are available for a variety of Linux distributions in [...]]]></description>
			<content:encoded><![CDATA[<p>My post on <a title="Installing VMWare Server (and Windows XP) on Ubuntu" href="http://www.lucidtips.com/2009/01/20/installing-vmware-server-and-windows-xp-on-ubuntu/" target="_blank">Installing VMWare Server (and Windows XP) on Ubuntu</a> gets a lot of hits. There is another open source virtualization software from Sun that I really like &#8211; <a href="http://www.virtualbox.org" target="_blank">VirtualBox</a>. I personally prefer VirtualBox over VMWare. Installation is a breeze in comparison to VMWare. <a href="http://www.virtualbox.org/wiki/Downloads" target="_blank">Binaries</a> are available for a variety of Linux distributions in addition to Windows, OS X, Solaris and openSolaris hosts.</p>
<p><strong><span style="text-decoration: underline;">Disclaimer</span></strong>: These steps have worked for me and have been tested on Compaq nc6000 running Ubuntu 9.04 (Jaunty Jackalope). YMMV. I am not responsible for loss of data or damage to computers.</p>
<h2>Installation:</h2>
<p>Install Dynamic Kernel Module Support (dkms) Framework</p>
<p>Although this step is optional it is recommended to install the dkms package it will ensure that VirtualBox host kernel modules are properly updated if the Linux kernel version changes.</p>
<pre>sudo apt-get install dkms</pre>
<p>Next edit /etc/apt/sources.list file and add the following line</p>
<pre>deb http://download.virtualbox.org/virtualbox/debian jaunty non-free</pre>
<p>Before we proceed with the VirtualBox installation we need to add Sun&#8217;s public key for apt-secure</p>
<pre>wget -q http://download.virtualbox.org/virtualbox/debian/sun_vbox.asc -O- | sudo apt-key add -</pre>
<p>Retrieve new lists of packages</p>
<pre>sudo apt-get update</pre>
<p>We are now ready to install VirtualBox</p>
<pre>apt-get install virtualbox-2.2</pre>
<p>After the installation comples you can start VirtualBox by clicking Start-&gt;System Tools-&gt;Sun VirtualBox or press Alt-F2 and run the command VirtualBox.</p>
<p><a href="https://help.ubuntu.com/community/VirtualBox" target="_blank">Ubuntu Community Documentation</a> has good information on VirtualBox. Refer to <a href="https://help.ubuntu.com/community/VirtualBox/FirstVM" target="_blank">FirstVM</a> section for detailed instructions on creating guest operating systems.</p>
<p>Good luck!!!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/LucidTips?a=h8RsqrCpw3g:bmsdUc0H4JQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/LucidTips?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=h8RsqrCpw3g:bmsdUc0H4JQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=h8RsqrCpw3g:bmsdUc0H4JQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=h8RsqrCpw3g:bmsdUc0H4JQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=h8RsqrCpw3g:bmsdUc0H4JQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=h8RsqrCpw3g:bmsdUc0H4JQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=h8RsqrCpw3g:bmsdUc0H4JQ:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.lucidtips.com/2009/05/30/virtualbox-virtualization-alternative-to-vmware/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Bluetooth USB Adapter that works on Linux</title>
		<link>http://www.lucidtips.com/2009/05/23/bluetooth-usb-adapter-that-works-on-linux/</link>
		<comments>http://www.lucidtips.com/2009/05/23/bluetooth-usb-adapter-that-works-on-linux/#comments</comments>
		<pubDate>Sat, 23 May 2009 22:53:34 +0000</pubDate>
		<dc:creator>lucidTipster</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[bitpim]]></category>
		<category><![CDATA[bluetooth]]></category>
		<category><![CDATA[iogear]]></category>
		<category><![CDATA[micro]]></category>
		<category><![CDATA[sync]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.lucidtips.com/?p=271</guid>
		<description><![CDATA[I run Ubuntu 9.04 Jaunty Jackalope on Compaq NC6000 and one of the features I was missing was Bluetooth. I was hence limited to using USB cable to sync my phone with my laptop using BitPim (see post on Lifehacker). There are many Bluetooth adapters available but I wanted something that was small and discreet [...]]]></description>
			<content:encoded><![CDATA[<p>I run Ubuntu 9.04 Jaunty Jackalope on Compaq NC6000 and one of the features I was missing was Bluetooth. I was hence limited to using USB cable to sync my phone with my laptop using BitPim (<a href="http://lifehacker.com/400440/back-up-and-sync-your-cell-phone-with-bitpim" target="_blank">see post on Lifehacker</a>). There are many Bluetooth adapters available but I wanted something that was small and discreet that I could keep plugged in all the time and not have to worry about it breaking when I carry the laptop around.</p>
<p>Today I got myself <a href="http://www.iogear.com/product/GBU421/" target="_blank">IOGEAR Bluetooth 2.0 USB Micro Adapter</a>. On Ubuntu Jaunty it works without any drivers. All you need to do is plug it in and the Bluetooth Manager indicator shows up. I was able to connect my phone in less than a minute. What I like about this device is that it is truly micro and does not block the other USB port on NC6000.</p>
<p><a href="http://www.lucidtips.com/wordpress/wp-content/uploads/2009/05/bluetooth_ubuntu.png"><img class="size-full wp-image-272 alignnone" title="Bluetooth Manager on Ubuntu while using IOGEAR Bluetooth 2.0 USB Micro Adapter" src="http://www.lucidtips.com/wordpress/wp-content/uploads/2009/05/bluetooth_ubuntu.png" alt="Bluetooth Manager on Ubuntu while using IOGEAR Bluetooth 2.0 USB Micro Adapter" width="319" height="179" /></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/LucidTips?a=Umw23LuZYRA:aoJVrouGRj8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/LucidTips?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=Umw23LuZYRA:aoJVrouGRj8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=Umw23LuZYRA:aoJVrouGRj8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=Umw23LuZYRA:aoJVrouGRj8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=Umw23LuZYRA:aoJVrouGRj8:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=Umw23LuZYRA:aoJVrouGRj8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=Umw23LuZYRA:aoJVrouGRj8:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.lucidtips.com/2009/05/23/bluetooth-usb-adapter-that-works-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HotMail enables POP3</title>
		<link>http://www.lucidtips.com/2009/02/17/hotmail-enables-pop3/</link>
		<comments>http://www.lucidtips.com/2009/02/17/hotmail-enables-pop3/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 20:11:22 +0000</pubDate>
		<dc:creator>lucidTipster</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[evolution]]></category>
		<category><![CDATA[hotmail]]></category>
		<category><![CDATA[outlook]]></category>
		<category><![CDATA[pop3]]></category>
		<category><![CDATA[thunderbird]]></category>

		<guid isPermaLink="false">http://www.lucidtips.com/?p=264</guid>
		<description><![CDATA[As per Windows Live blog entry HotMail is now available via POP3 to users in United Kingdom, Canada, Australia, France, Japan, Spain, Germany, Italy, and the Netherlands. POP3 will be enabled for other countries later on. Using POP3 allows you to access HotMail via your favorite email client like Outlook, Thunderbird or Evolution. POP3 also [...]]]></description>
			<content:encoded><![CDATA[<p>As per <a href="http://windowslivewire.spaces.live.com/blog/cns!2F7EB29B42641D59!32413.entry" target="_blank">Windows Live blog entry</a> HotMail is now available via POP3 to users in United Kingdom, Canada, Australia, France, Japan, Spain, Germany,  Italy, and the Netherlands. POP3 will be enabled for other countries later on.</p>
<p>Using POP3 allows you to access HotMail via your favorite email client like Outlook, Thunderbird or Evolution. POP3 also makes it easier to access HotMail via your Phone/PDA.</p>
<p>Below are the configuration values to access HotMail using POP3</p>
<p><strong>POP server</strong>: pop3.live.com (Port 995)<br />
<strong>POP SSL required</strong>?  Yes<br />
<strong>User name</strong>: Your Windows Live ID, for example  yourname@hotmail.com<br />
<strong>Password</strong>: The password you usually use to sign in  to Hotmail or Windows Live<br />
<strong>SMTP server</strong>: smtp.live.com (Port 25)<br />
<strong>Authentication required?</strong> Yes (this matches your POP username and  password)<br />
<strong>TLS/SSL required?</strong> Yes</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/LucidTips?a=7zuAOr5RNkU:eDaluHTaGlc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/LucidTips?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=7zuAOr5RNkU:eDaluHTaGlc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=7zuAOr5RNkU:eDaluHTaGlc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=7zuAOr5RNkU:eDaluHTaGlc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=7zuAOr5RNkU:eDaluHTaGlc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=7zuAOr5RNkU:eDaluHTaGlc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=7zuAOr5RNkU:eDaluHTaGlc:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.lucidtips.com/2009/02/17/hotmail-enables-pop3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configure Proxy for Amarok on GNOME</title>
		<link>http://www.lucidtips.com/2009/02/07/configure-proxy-for-amarok-on-gnome/</link>
		<comments>http://www.lucidtips.com/2009/02/07/configure-proxy-for-amarok-on-gnome/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 17:54:50 +0000</pubDate>
		<dc:creator>lucidTipster</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[amarok]]></category>
		<category><![CDATA[cover art]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[lyrics]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.lucidtips.com/?p=255</guid>
		<description><![CDATA[Amarok is an excellent music player that uses some core KDE components (like KDElibs) and can be installed independent of KDE on Ubuntu. One issue with this however is that it does not read the system wide proxy settings from GNOME.  The proxy settings under &#8220;Settings -&#62; Configure Amarok -&#62; Configure engine&#8221; only work for [...]]]></description>
			<content:encoded><![CDATA[<p>Amarok is an excellent music player that uses some core KDE components (like KDElibs) and can be installed independent of KDE on Ubuntu. One issue with this however is that it does not read the system wide proxy settings from GNOME.  The proxy settings under &#8220;Settings -&gt; Configure Amarok -&gt; Configure engine&#8221; only work for Streaming and hence if you are behind the firewall you cannot access the lyrics service or fetch cover art from the internet. This is easy to fix.</p>
<p>To set the proxy for Amarok</p>
<p>Edit the <strong>$HOME/.kde/share/config/kioslaverc</strong> file and add the following entries</p>
<pre>[Proxy Settings][$i]
ProxyType=1
httpProxy=http://username:password@proxyserver:port/
httpsProxy=http://username:password@proxyserver:port/
ftpProxy=http://username:password@proxyserver:port/</pre>
<p>Save the file and restart Amarok and you should be able to access the lyrics service and fetch cover art from the internet.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/LucidTips?a=2TgDP2LSu9o:7gH_T8ChouE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/LucidTips?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=2TgDP2LSu9o:7gH_T8ChouE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=2TgDP2LSu9o:7gH_T8ChouE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=2TgDP2LSu9o:7gH_T8ChouE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=2TgDP2LSu9o:7gH_T8ChouE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=2TgDP2LSu9o:7gH_T8ChouE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=2TgDP2LSu9o:7gH_T8ChouE:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.lucidtips.com/2009/02/07/configure-proxy-for-amarok-on-gnome/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing VMWare Server (and Windows XP) on Ubuntu</title>
		<link>http://www.lucidtips.com/2009/01/20/installing-vmware-server-and-windows-xp-on-ubuntu/</link>
		<comments>http://www.lucidtips.com/2009/01/20/installing-vmware-server-and-windows-xp-on-ubuntu/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 06:40:09 +0000</pubDate>
		<dc:creator>lucidTipster</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[configure]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[virtual machine]]></category>
		<category><![CDATA[virtualization]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[vmware server]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.lucidtips.com/?p=210</guid>
		<description><![CDATA[Virtualization allows running of multiple operating systems and multiple applications on the same computer at the same time. This can be very handy if you are doing software development and need to test your application on multiple platforms or are doing a lot of R&#38;D and get tired of reloading the operating system and software. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Virtualization" target="_blank">Virtualization</a> allows running of multiple operating systems and multiple applications on the same computer at the same time. This can be very handy if you are doing software development and need to test your application on multiple platforms or are doing a lot of R&amp;D and get tired of reloading the operating system and software. Virtualization is also helpful if you need to run Linux and Windows (or different flavor/version of Linux) at the same time and dual boot just does not cut it. <a href="http://www.vmware.com/products/server/" target="_blank">VMWare Server</a> from <a href="http://www.vmware.com/" target="_blank">VMWare</a> is great virtualization software and is provided as freeware. It allows you to create snapshot of the state of any particular virtual machine and revert to it easily.</p>
<p>Update 05/30/2009: Also see <a href="http://www.lucidtips.com/2009/05/30/virtualbox-virtualization-alternative-to-vmware/" target="_blank">VirtualBox &#8211; virtualization alternative to VMWare</a></p>
<p><strong><span style="text-decoration: underline;">Disclaimer</span></strong>: These steps have worked for me and have been tested on Compaq nc6000 running Ubuntu 8.10 (Intrepid Ibex). YMMV. I am not responsible for loss of data or damage to computers.</p>
<p>All the screenshots for this howto can be accessed <a href="http://picasaweb.google.com/lucidtips/InstallingVMWareServerAndWindowsXPOnUbuntu?feat=directlink" target="_blank">here</a>.</p>
<h2>Install required dependencies</h2>
<p>Open terminal window and type the following command</p>
<pre>sudo apt-get install linux-headers-`uname -r` build-essential xinetd gcc-3.4</pre>
<h2>Create required directories</h2>
<p>In this guide I am using $HOME/Downloads as the base directory. You can choose any directory of your choice. Open terminal prompt and type the following command</p>
<pre>mkdir $HOME/Downloads</pre>
<h2>Download VMWare Server</h2>
<p><a href="https://www.vmware.com/freedownload/p/download.php?product=server20&amp;a=DOWNLOAD_FILE&amp;baseurl=http://download2.vmware.com/software/server/&amp;filename=VMware-server-2.0.0-122956.i386.tar.gz" target="_blank">Download VMware Server 2 for Linux Operating Systems TAR image</a> and save it in $HOME/Downloads.</p>
<p>If you already have a VMWare account login with the account. If not complete the registration process. Please make sure you use a valid email address because you will receive VMWare server activation instructions including the serial number via email.</p>
<h2>Installing and Configuring VMWare Server</h2>
<ol>
<li>Unpack the downloaded archive. Open the terminal window (if not already open) and type the following command
<pre>cd $HOME/Downloads
tar -zxvf VMware-server-2.0.0-122956.i386.tar.gz</pre>
</li>
<li>Now change to the installation directory
<pre>cd vmware-server-distrib</pre>
</li>
<li>Run the installation script
<pre>sudo ./vmware-install.pl</pre>
</li>
<li>The installation script will prompt for the directory locations for binary files, initialization scripts, daemon files, library files, manual files, and documentation files. Unless you have a custom installation of Ubuntu accept the default responses.</li>
<li>A message indicating successful installation of VMWare Server for Linux will be displayed.</li>
<li>When prompted to run /usr/bin/vmware-config.pl choose yes.<br />
Note: As per VMWare server documentation configuration with vmware-config.pl is required in the following circumstances:</p>
<ul>
<li>When you install VMware Server for the first time.</li>
<li>When you upgrade your version of VMware Server.</li>
<li>When you upgrade your host operating system kernel. (It is not necessary to reinstall VMware Server after you upgrade your kernel.)</li>
<li>To reconfigure the networking options for VMware Server. For example, to add or remove a virtual network.</li>
</ul>
</li>
<li>The configuration script will attempt to stop the Virtual Machines and VMWare management services. Failed message will be displayed. This is normal. Ignore the failures.</li>
<li>Read and accept the End User License Agreement.</li>
<li>The configuration script will now prompt for information. Unless you have a custom installation of Ubuntu accept the default responses.</li>
<li>When prompted &#8220;Do you want networking for your virtual machines?&#8221; type yes.</li>
<li>VMWare Server provides three choices for networking &#8211; Bridged, NAT and HostOnly. This howto installs all three. Before proceeding I strongly recommend reading Networking Basics on page 212 of <a href="http://www.vmware.com/pdf/vmserver2.pdf" target="_blank">VMWare Server User&#8217;s Guide</a>.</li>
<li>By default configuration script creates a &#8220;Bridged&#8221; network</li>
<li>If you have  multiple ethernet network interfaces available (wired and wireless) you will be prompted to choose the network interface to bridge for virtual machines. If you wish to bridge the other ethernet network interface answer yes to the &#8220;Do you wish to configure another bridged network?&#8221; prompt.</li>
<li>Answer yes to &#8220;Do you want to be able to use NAT networking in your virtual machines?&#8221; and accept the default responses.</li>
<li>Answer yes to &#8220;Do you want to be able to use host-only networking in your virtual machines?&#8221;</li>
<li>Accept default ports for remote, http and https connections (If you are already using those ports change the port number when prompted).</li>
<li>Answer yes to &#8220;Would you like to specify a different administrator?&#8221;</li>
<li>You will be prompted to enter the user for VMWare administrator. Enter the user you are currently logged in as. (Tip: To find the user open terminal window and run the command whoami)</li>
<li>You will be prompted to enter the 20-character serial number. You should have received this via email when you download the TAR image.</li>
<li>Almost done. Accept default responses for the rest of the prompts.</li>
<li>You should see message indicating starting of VMware services, VMware management services and VMware autostart virtual machines.</li>
<li>Successful completion of VMWare Server for Linux message will be displayed and you will be returned to the terminal prompt.</li>
<li>Type exit to close the terminal window.</li>
</ol>
<h2>Creating a new Virtual Machine</h2>
<ol>
<li>VMWare Server interface is web based and can be accessed by going to <a href="http://127.0.0.1:8222" target="_blank">http://127.0.0.1:8222</a>. (see <a href="http://picasaweb.google.com/lh/photo/FwJ6RrkU1t7a7l4gW6xYlw?feat=directlink" target="_blank">screenshot</a>)</li>
<li>To login use the VMWare administrator you created in step 18 above</li>
<li>Once you are successfully logged in the host workspace screen is displayed (see <a href="http://picasaweb.google.com/lh/photo/dlX2aitFnGKE6G5uCvVXzQ?feat=directlink" target="_blank">screenshot</a>)</li>
<li>To create a new Virtual Machine click on &#8220;Create Virtual Machine&#8221; link</li>
<li>Create Virtual Machine wizard window will open.</li>
<li>On the &#8220;Name and Location&#8221; page change the name to &#8220;Windows_XP_PRO&#8221; and select &#8220;standard&#8221; datastore. The standard datastore is created when you install VMWare. Click Next.  (see <a href="http://picasaweb.google.com/lh/photo/W03KxP5ejdhrKJGovuOzzg?feat=directlink" target="_blank">screenshot</a>)</li>
<li>On the &#8220;Guest Operating System&#8221; page select &#8220;Windows operating system&#8221; and change the version to &#8220;Windows XP Professional (32-bit)&#8221;. Click Next. (see <a href="http://picasaweb.google.com/lh/photo/8pang_JrYGnRMc9n6Se0EA?feat=directlink" target="_blank">screenshot</a>)</li>
<li>On the &#8220;Memoy and Processors&#8221; change the memory size and CPU count if required. The default settings work OK. Click Next. (see <a href="http://picasaweb.google.com/lh/photo/gI-99zw8DSrq2-R6VRQ_wg?feat=directlink" target="_blank">screenshot</a>)</li>
<li>On the &#8220;Hard Disk&#8221; page select &#8220;Create a New Virtual Disk&#8221;. Click Next. (see <a href="http://picasaweb.google.com/lh/photo/0TZgfJIL-4JaToQqysBkiw?feat=directlink" target="_blank">screenshot</a>)</li>
<li>On the &#8220;Hard Disk Properties&#8221; page change the capacity and location if required. Click Next. (see <a href="http://picasaweb.google.com/lh/photo/rT1X6zD_es1dRsWAxbWLFw?feat=directlink" target="_blank">screenshot</a>)</li>
<li>On the &#8220;Network Adapter&#8221; page select &#8220;Add a Network Adapter&#8221; and click Next. (see <a href="http://picasaweb.google.com/lh/photo/UuAvJ_yzTYonOIHu2Wqq5A?feat=directlink" target="_blank">screenshot</a>)</li>
<li>On the &#8220;Network Adapter Properties&#8221; page select network connection type (please see Networking Basics on page 212 of <a href="http://www.vmware.com/pdf/vmserver2.pdf" target="_blank">VMWare Server User&#8217;s Guide</a>) and check Yes. Click Next. (see <a href="http://picasaweb.google.com/lh/photo/USA8rW-siynGPNzdCLdN8A?feat=directlink">screenshot</a>)</li>
<li>On the &#8220;CD/DVD Drive&#8221; page select &#8220;Use a Physical Drive&#8221; and click Next. (see <a href="http://picasaweb.google.com/lh/photo/fdaRXM7gZum5sBHyRM5wkA?feat=directlink" target="_blank">screenshot</a>)</li>
<li>On the &#8220;CD/DVD Drive Properties&#8221; page select the Host CD/DVD Drive and click Next. (see <a href="http://picasaweb.google.com/lh/photo/s0pVmQqENKEcNAbb21xsQQ?feat=directlink" target="_blank">screenshot</a>)</li>
<li>On the &#8220;Floppy Drive&#8221; page the option &#8220;Use a Physical Drive&#8221; will be disabled if your machine does not have a Floppy Drive. If you do not wish to use Floppy Drive on the Virtual Machine select &#8220;Don&#8217;t Add a Floppy Drive&#8221;. Click Next. (see <a href="http://picasaweb.google.com/lh/photo/5Bd-mEPx4gKKD_8IoxFBSw?feat=directlink" target="_blank">screenshot</a>)</li>
<li>On the &#8220;USB Controller&#8221; page select &#8220;Add a USB Controller&#8221; and click Next.  (see <a href="http://picasaweb.google.com/lh/photo/14nu2AU5pKenpaz_5PUCZg?feat=directlink" target="_blank">screenshot</a>)</li>
<li>On the &#8220;Ready to Complete&#8221; page review your selection. Click Finish. (see <a href="http://picasaweb.google.com/lh/photo/kOQxKniVP15VVbuJ4-c5NQ?feat=directlink" target="_blank">screenshot</a>)</li>
<li>You will be returned to host workspace screen and the new virtual machine will be listed under the Inventory.</li>
</ol>
<h2>Installing Operating System on the new Virtual Machine</h2>
<ol>
<li>Click on Windows_XP_Pro from the inventory list</li>
<li>Click on the Console tab of the virtual machine. (see <a href="http://picasaweb.google.com/lh/photo/ZbbE4FWsIeAsMT4WInvw6g?feat=directlink" target="_blank">screenshot</a>)</li>
<li>To use the console you need VMWare Remote Console Plug-in.</li>
<li>Click the Install plug-in link</li>
<li>Firefox might prevent installation of the software. Click the Allow button. (see <a href="http://picasaweb.google.com/lh/photo/ZbbE4FWsIeAsMT4WInvw6g?feat=directlink" target="_blank">screenshot</a>)</li>
<li>Firefox Software Installation screen will appear. Click Install Now. (see <a href="http://picasaweb.google.com/lh/photo/L6xAlOiJY9XOfurSf4FWNQ?feat=directlink" target="_blank">screenshot</a>)</li>
<li>After successful installation of the plug-in you will be prompted to restart Firefox. Click Restart Firefox.</li>
<li>Open the VMWare Server interface going to <a href="http://127.0.0.1:8222" target="_blank">http://127.0.0.1:8222</a></li>
<li>Login with the correct username / password.</li>
<li>Once you are successfully logged in the host workspace screen is displayed</li>
<li>Insert the Windows XP installation CD in the CD/DVD drive of your PC.</li>
<li>Click on the Console tab of the virtual machine. (see <a href="http://picasaweb.google.com/lh/photo/kWHU2H20GDD1QA4tHu8mcQ?feat=directlink" target="_blank">screenshot</a>)</li>
<li>Click Virtual Machine from the top navigation and then select Power On/Resume (The green Play button on the top navigation can also be used to Power On the virtual machine) (see <a href="http://picasaweb.google.com/lh/photo/2WJ79STJVVAW198d324Tsg?feat=directlink" target="_blank">screenshot</a>)</li>
<li>Click anywhere within the console tab to open it in a new window. (see <a href="http://picasaweb.google.com/lh/photo/KyYq0L_HHhaemIlAfjwSSw?feat=directlink">screenshot</a>)</li>
<li>The new Virtual Machine will boot from the CD and the Windows XP installation screen will be visible. (see <a href="http://picasaweb.google.com/lh/photo/8ygTwk115TYgv87yiRJPCA?feat=directlink" target="_blank">screenshot</a>)</li>
<li>Proceed with installing Windows XP as you would on a stand alone PC. (Please remember to run Windows Update to install all the latest updates)</li>
<li>You can now remove the Windows XP installation CD in the CD/DVD drive of your PC</li>
</ol>
<h2>Installing VMWare Tools</h2>
<p>VMWare Tools is a set of utilities that help management of the virtual machine and also enhances performance. It is strongly recommended installing VMWare Tools</p>
<ol>
<li>In VMWare Infrastructure Web Access window select Windows XP from the inventory list.</li>
<li>Power On the Virtual Machine if required</li>
<li>Click on &#8220;Install VMWare Tools&#8221; link</li>
<li>VMWare Tools installation dialog box will appear. Click Install (see <a href="http://picasaweb.google.com/lh/photo/J1Xlw1bHB1An0TQ6BY4sNQ?feat=directlink" target="_blank">screenshot</a>)</li>
<li>Click on the Console tab of the virtual machine and then click anywhere to open the console in new window.</li>
<li>VMWare Tools installation wizard will be visible. Click Next. (see <a href="http://picasaweb.google.com/lh/photo/DWHV-XuapvLeQIbwtlEYMQ?feat=directlink" target="_blank">screenshot</a>)</li>
<li>Select Typical and click Next (see <a href="http://picasaweb.google.com/lh/photo/YWtZ3lZg3nNtP3BJo9ONfg?feat=directlink" target="_blank">screenshot</a>)</li>
<li>Click Install. (see <a href="http://picasaweb.google.com/lh/photo/pAlnV7jH5VTMQWN9LfEBmA?feat=directlink" target="_blank">screenshot</a>)</li>
<li>Click Finish (see <a href="http://picasaweb.google.com/lh/photo/5yAyfT5F5fksGZCj2ZL7kQ?feat=directlink" target="_blank">screenshot</a>)</li>
<li>Click Yes to restart (see <a href="http://picasaweb.google.com/lh/photo/RO6MBjtNaaP1F_A27QmWyw?feat=directlink" target="_blank">screenshot</a>)</li>
</ol>
<h2>Shutting down Virtual Machine</h2>
<ol>
<li>In VMWare Infrastructure Web Access window select Windows XP from the inventory list</li>
<li>Click Virtual Machine from the top navigation and then select Power Off/  (The red Stop button on the top navigation can also be used to Power On the virtual machine) (see <a href="http://picasaweb.google.com/lh/photo/nZqHZRPwBu3fokRmrfP1GA?feat=directlink" target="_blank">screenshot</a>)</li>
</ol>
<p>You also may shutdown by selecting Start-&gt;Turn Off Computer</p>
<h2>Licensing</h2>
<p>Installation of Windows under a virtual machine requires a license as well. Microsoft has a <a href="http://www.microsoft.com/licensing/highlights/virtualization.mspx" target="_blank">virtualization license plan</a> whereby customers can pay license fees for the number of processors the software will run on in virtual mode.</p>
<h2>Final Thoughts</h2>
<p>I find virtualization very helpful and run multiple Virtual Machines. VMWare Server supports a range of Windows and Linux host operating systems. Please refer to page 25-26 of the of <a href="http://www.vmware.com/pdf/vmserver2.pdf" target="_blank">VMWare Server User&#8217;s Guide</a>. Follow the instructions above to create a new Virtual Machine and select the operating system of your choice.</p>
<p>Good luck on your VMWare journey.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/LucidTips?a=zVXya89BzI8:QwUOQ5wWM2g:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/LucidTips?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=zVXya89BzI8:QwUOQ5wWM2g:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=zVXya89BzI8:QwUOQ5wWM2g:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=zVXya89BzI8:QwUOQ5wWM2g:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=zVXya89BzI8:QwUOQ5wWM2g:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=zVXya89BzI8:QwUOQ5wWM2g:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=zVXya89BzI8:QwUOQ5wWM2g:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.lucidtips.com/2009/01/20/installing-vmware-server-and-windows-xp-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Send hostname to DHCP server on Ubuntu/XUbuntu</title>
		<link>http://www.lucidtips.com/2008/11/17/send-hostname-to-dhcp-server-on-ubuntuxubuntu/</link>
		<comments>http://www.lucidtips.com/2008/11/17/send-hostname-to-dhcp-server-on-ubuntuxubuntu/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 05:43:18 +0000</pubDate>
		<dc:creator>lucidTipster</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[dhcp]]></category>
		<category><![CDATA[hostname]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[xubuntu]]></category>

		<guid isPermaLink="false">http://www.lucidtips.com/?p=203</guid>
		<description><![CDATA[Default installation of Ubuntu and XUbuntu do not send the hostname to the DHCP server and this prevents other machines on the network from looking up your machine by using the FQDN (Fully Qualified Domain Name). This is easy to fix with a few tweaks to the DHCP configuration file. Disclaimer: These steps have worked [...]]]></description>
			<content:encoded><![CDATA[<p>Default installation of Ubuntu and XUbuntu do not send the hostname to the DHCP server and this prevents other machines on the network from looking up your machine by using the FQDN (Fully Qualified Domain Name). This is easy to fix with a few tweaks to the DHCP configuration file.</p>
<p><strong><span style="text-decoration: underline;">Disclaimer</span></strong>: These steps have worked for me and have been tested on Compaq Evo N610c running Ubuntu 8.04 LTS (Hardy Heron) and Compaq Armada M300 running XUbuntu 8.04 LTS (Hardy Heron). YMMV. I am not responsible for loss of data or damage to computers.</p>
<p>1. Open Terminal Window<br />
2. If you already know your hostname skip to step 4<br />
3. To find your hostname run the following command</p>
<pre>hostname</pre>
<p>4. Make a copy of the existing dhclient configuration file</p>
<pre>sudo cp /etc/dhcp3/dhclient.conf /etc/dhcp3/dhclient.original</pre>
<p>5. Edit the dhclient configuration file</p>
<pre>sudo vi /etc/dhcp3/dhclient.conf</pre>
<p>6. Search for the line send host-name (On XUbuntu it is missing completely and you will need to add it in)<br />
7. Uncomment the line and replace &lt;hostname&gt; with the hostname identified in step 3. The line should look similar to (don&#8217;t leave out the semi-colon at the end)</p>
<pre>send host-name "ubuntu-laptop";</pre>
<p>8. Save the file and exit gedit<br />
9. Restart networking</p>
<pre>sudo /etc/init.d/networking restart</pre>
<p>That&#8217;s it &#8230; test if other machines on the network can now look up your machine by using the FQDN. If you notice something wrong you can always restore the original dhclient configuration file.</p>
<p>The above instructions should work for KUbuntu too although I have not validate it myself.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/LucidTips?a=Vjf2XpEgsb0:9CDOnJGrQ6k:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/LucidTips?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=Vjf2XpEgsb0:9CDOnJGrQ6k:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=Vjf2XpEgsb0:9CDOnJGrQ6k:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=Vjf2XpEgsb0:9CDOnJGrQ6k:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=Vjf2XpEgsb0:9CDOnJGrQ6k:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=Vjf2XpEgsb0:9CDOnJGrQ6k:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=Vjf2XpEgsb0:9CDOnJGrQ6k:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.lucidtips.com/2008/11/17/send-hostname-to-dhcp-server-on-ubuntuxubuntu/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Ubuntu 8.10 (Intrepid Ibex) on Compaq Evo N610c</title>
		<link>http://www.lucidtips.com/2008/11/10/ubuntu-810-intrepid-ibex-on-compaq-evo-n610c/</link>
		<comments>http://www.lucidtips.com/2008/11/10/ubuntu-810-intrepid-ibex-on-compaq-evo-n610c/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 05:59:56 +0000</pubDate>
		<dc:creator>lucidTipster</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[compaq]]></category>
		<category><![CDATA[evo]]></category>
		<category><![CDATA[Ibex]]></category>
		<category><![CDATA[intrepid]]></category>
		<category><![CDATA[n610c]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[w200]]></category>

		<guid isPermaLink="false">http://www.lucidtips.com/?p=175</guid>
		<description><![CDATA[Ubuntu 8.10 (Intrepid Ibex) was officially released on Oct-31. Since I had tested Ubuntu 8.04 LTS on Compaq Evo N610c I was eager to give Ubuntu 8.10 a spin on the same laptop. I did a fresh install and the installation is very smooth. A seven step wizard guides you through the install process and [...]]]></description>
			<content:encoded><![CDATA[<p>Ubuntu 8.10 (Intrepid Ibex) was officially released on Oct-31. Since I had tested<a href="http://www.lucidtips.com/2008/04/26/ubuntu-804-lts-hardy-heron-on-compaq-evo-n610c/" target="_blank"> Ubuntu 8.04 LTS on Compaq Evo N610c</a> I was eager to give Ubuntu 8.10 a spin on the same laptop. I did a fresh install and the installation is very smooth. A seven step wizard guides you through the install process and you are up and running very quick on Evo N610c.</p>
<p>Ubuntu 8.10 core includes GNOME 2.24 desktop which introduces 2 major enhancements &#8211; Nautilus file manager now has tabbed support and the File Roller archive manager adds support for ALZ, RZIP, CAB, TAR and 7Z archive types.</p>
<div id="attachment_186" class="wp-caption alignnone" style="width: 310px"><a href="http://www.lucidtips.com/wordpress/wp-content/uploads/2008/11/ubuntu-810-intrepid-ibex-on-compaq-evo-n610c_file-browser.png" target="_blank"><img class="size-medium wp-image-186" title="File Browser on Ubuntu 8.10 Intrepid Ibex" src="http://www.lucidtips.com/wordpress/wp-content/uploads/2008/11/ubuntu-810-intrepid-ibex-on-compaq-evo-n610c_file-browser-300x216.png" alt="File Browser has tabbed support on Ubuntu 8.10 Interpid Ibex" width="300" height="216" /></a><p class="wp-caption-text">File Browser has tabbed support on Ubuntu 8.10 Intrepid Ibex</p></div>
<p>Intrepid Ibex includes X.Org 7.4 which is the latest stable and this version addresses the resolution issue with ATI Mobility Radeon 7500. You can now adjust the resolution without making manual changes to xorg.conf file. Extra Visual Effects are also supported.</p>
<table border="0" width="100%">
<tbody>
<tr>
<td width="50%">
<p><div id="attachment_187" class="wp-caption alignnone" style="width: 160px"><a href="http://www.lucidtips.com/wordpress/wp-content/uploads/2008/11/ubuntu-810-intrepid-ibex-on-compaq-evo-n610c_screen-resolution.png" target="_blank"><img class="size-thumbnail wp-image-187" title="Screen resolution on Ubuntu 8.10 Intrepid Ibex" src="http://www.lucidtips.com/wordpress/wp-content/uploads/2008/11/ubuntu-810-intrepid-ibex-on-compaq-evo-n610c_screen-resolution-150x150.png" alt="Ubuntu 8.10 has support for ATI Mobility Radeon 7500" width="150" height="150" /></a><p class="wp-caption-text">Ubuntu 8.10 has support for ATI Mobility Radeon 7500</p></div></td>
<td width="50%">
<p><div id="attachment_189" class="wp-caption alignnone" style="width: 160px"><a href="http://www.lucidtips.com/wordpress/wp-content/uploads/2008/11/ubuntu-810-intrepid-ibex-on-compaq-evo-n610c_appearance-preferences.png" target="_blank"><img class="size-thumbnail wp-image-189" title="Appearance Preferences on Ubuntu 8.10" src="http://www.lucidtips.com/wordpress/wp-content/uploads/2008/11/ubuntu-810-intrepid-ibex-on-compaq-evo-n610c_appearance-preferences-150x150.png" alt="Extra Visual Effects are also supported" width="150" height="150" /></a><p class="wp-caption-text">Extra Visual Effects are also supported</p></div></td>
</tr>
</tbody>
</table>
<p>Ubuntu 8.10 adds Guest session functionality. You can now create a temporary password-less user account. This  temporary account cannot permanently store data and also cannot access any regular user&#8217;s data.</p>
<div id="attachment_190" class="wp-caption alignnone" style="width: 127px"><a href="http://www.lucidtips.com/wordpress/wp-content/uploads/2008/11/ubuntu-810-intrepid-ibex-on-compaq-evo-n610c_guest-session.png"><img class="size-medium wp-image-190" title="Ubuntu 8.10 introduces Guest Session functionality" src="http://www.lucidtips.com/wordpress/wp-content/uploads/2008/11/ubuntu-810-intrepid-ibex-on-compaq-evo-n610c_guest-session.png" alt="Guest Session creates a password-less user" width="117" height="212" /></a><p class="wp-caption-text">Guest Session creates a password-less user</p></div>
<p>With Ubuntu 8.10 you can create a USB Startup Disk. You have been able to do this with earlier versions too but it is now much easier.</p>
<div id="attachment_192" class="wp-caption alignnone" style="width: 268px"><a href="http://www.lucidtips.com/wordpress/wp-content/uploads/2008/11/ubuntu-810-intrepid-ibex-on-compaq-evo-n610c_make-usb-startup-disk.png" target="_blank"><img class="size-medium wp-image-192" title="Make USB Startup Disk on Ubuntu 8.10 Intrepid Ibex" src="http://www.lucidtips.com/wordpress/wp-content/uploads/2008/11/ubuntu-810-intrepid-ibex-on-compaq-evo-n610c_make-usb-startup-disk-258x300.png" alt="Ubuntu 8.10 lets you make a USB Startup Disk" width="258" height="300" /></a><p class="wp-caption-text">Ubuntu 8.10 lets you make a USB Startup Disk</p></div>
<p>Specific to Ubuntu 8.10 on Evo N610c you no longer see the ugly ACPI error messages during boot up. ACPI works much better &#8211; the sleep and hibernate functions work correctly. The fan is not on constantly and only kicks in when required.</p>
<p>Ubuntu 8.10 includes the latest 2.6.27-7-generic kernel and the rev 1300 of orinoco drivers for Compaq Wireless LAN MultiPort W200 doe not build correctly. I had to play around quite a bit to get W200 to work and a special patch is required. To help other users I have updated  <a href="https://help.ubuntu.com/community/WifiDocs/Device/CompaqW200" target="_blank">WifiDocs/Device/CompaqW200 &#8211; Community Ubuntu Documentation</a>. A patched version of the driver is available <a href="http://www.lucidtips.com/wordpress/wp-content/uploads/2008/11/compaqw200_2627-7-generictar.gz" target="_blank">here</a> for your convenience.</p>
<p>One disappointment I had with Ubuntu 8.10 is that it includes OpenOffice 2.4.1 instead of the latest 3.0 version. However <a href="http://news.softpedia.com/news/How-To-Install-OpenOffice-org-3-0-in-Ubuntu-8-10-96449.shtml" target="_blank">upgrading to OpenOffice 3.0 on Ubuntu 8.10</a> is easy.</p>
<p>Overall Ubuntu 8.10 Intrepid Ibex runs much better on Compaq Evo N610c as compared to Ubuntu 8.04 Hardy Heron. If you enjoy Ubuntu and own a Evo N610c give Intrepid Ibex a try.</p>
<p>Good luck!!!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/LucidTips?a=rmySvVQvXqg:AuAuvlLeT4g:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/LucidTips?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=rmySvVQvXqg:AuAuvlLeT4g:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=rmySvVQvXqg:AuAuvlLeT4g:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=rmySvVQvXqg:AuAuvlLeT4g:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=rmySvVQvXqg:AuAuvlLeT4g:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=rmySvVQvXqg:AuAuvlLeT4g:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=rmySvVQvXqg:AuAuvlLeT4g:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.lucidtips.com/2008/11/10/ubuntu-810-intrepid-ibex-on-compaq-evo-n610c/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ubuntu 8.10 (Intrepid Ibex) officially released</title>
		<link>http://www.lucidtips.com/2008/10/30/ubuntu-810-intrepid-ibex-officially-release/</link>
		<comments>http://www.lucidtips.com/2008/10/30/ubuntu-810-intrepid-ibex-officially-release/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 16:43:21 +0000</pubDate>
		<dc:creator>lucidTipster</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[Ibex]]></category>
		<category><![CDATA[intrepid]]></category>
		<category><![CDATA[kubuntu]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[xubuntu]]></category>

		<guid isPermaLink="false">http://www.lucidtips.com/?p=168</guid>
		<description><![CDATA[The latest version of Ubuntu is officially available for download. Code named Intrepid Ibex this release includes the latest version of the Kernel, Gnome desktop environment and Xorg etc. It also brings some good features like the ability to install Ubuntu on a USB drive, Guest Sessions. Intrepid Ibex releases of Kubuntu &#8211; Ubuntu with the [...]]]></description>
			<content:encoded><![CDATA[<p>The latest version of Ubuntu is officially available for <a href="http://www.ubuntu.com/getubuntu/download" target="_blank">download</a>. Code named Intrepid Ibex this release includes the latest version of the Kernel, Gnome desktop environment and Xorg etc. It also brings some good features like the ability to install Ubuntu on a USB drive, Guest Sessions.</p>
<p>Intrepid Ibex releases of <a href="http://www.kubuntu.org/" target="_blank">Kubuntu</a> &#8211; Ubuntu with the K Desktop Environment and <a href="http://www.xubuntu.org/" target="_blank">Xubuntu</a> &#8211; Ubuntu with the XFCE desktop environment are available for download too.</p>
<p>I am in the process of downloading the release and will post my experience soon.</p>
<table border="0">
<tbody>
<tr>
<td><script src="http://www.ubuntu.com/files/countdown/display.js" type="text/javascript"></script></td>
<td><a title="Learn more about Xubuntu..." href="http://xubuntu.org"><img src="http://xubuntu.org/xubuntu-static/intrepid-countdown/index.php" alt="Countdown to Xubuntu (xubuntu.org) 8.10, by Pasi Lallinaho" /></a></td>
</tr>
</tbody>
</table>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/LucidTips?a=X1c00XdqEaM:3UieejXvodU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/LucidTips?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=X1c00XdqEaM:3UieejXvodU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=X1c00XdqEaM:3UieejXvodU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=X1c00XdqEaM:3UieejXvodU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=X1c00XdqEaM:3UieejXvodU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LucidTips?a=X1c00XdqEaM:3UieejXvodU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/LucidTips?i=X1c00XdqEaM:3UieejXvodU:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.lucidtips.com/2008/10/30/ubuntu-810-intrepid-ibex-officially-release/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

