<?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>nazham.com &#187; Ubuntu</title>
	<atom:link href="http://nazham.com/category/linux/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://nazham.com</link>
	<description>Jarvis, sometimes you gotta run before you can walk.</description>
	<lastBuildDate>Tue, 01 Jun 2010 06:07:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Playing 1080p Video in Ubuntu Without Lag</title>
		<link>http://nazham.com/2010/04/24/playing-1080p-video-in-ubuntu-without-lag/</link>
		<comments>http://nazham.com/2010/04/24/playing-1080p-video-in-ubuntu-without-lag/#comments</comments>
		<pubDate>Sat, 24 Apr 2010 13:34:12 +0000</pubDate>
		<dc:creator>nazham</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[1080p]]></category>
		<category><![CDATA[Blue Ray]]></category>
		<category><![CDATA[HD]]></category>
		<category><![CDATA[Karmic Koala]]></category>
		<category><![CDATA[mkv]]></category>
		<category><![CDATA[mplayer]]></category>
		<category><![CDATA[Ubuntu 9.10]]></category>
		<category><![CDATA[VLC]]></category>

		<guid isPermaLink="false">http://nazham.com/?p=1048</guid>
		<description><![CDATA[Playing 1080p Video in Ubuntu Without Lag

Related posts:<ol><li><a href='http://nazham.com/2009/12/02/how-to-check-for-open-ports-in-ubuntu/' rel='bookmark' title='Permanent Link: How to Check for Open Ports in Ubuntu'>How to Check for Open Ports in Ubuntu</a> <small>There are various ways to view for open ports on...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I have not-so-bad specs for my laptop:<br />
- Dell XPS M1530<br />
- Intel Code 2 Duo CPU 2.40GHz<br />
- 4GB RAM<br />
- Running Ubuntu Karmic Koala 9.10</p>
<p>I have no problem running 720p .mkv HD video files. No lagging, no dropped frames whatsover. However, when running 1080p .mkv files, especially those big sizes full-HD Blue Ray medias, I have:<br />
- Lagging,<br />
- Dropped frames,<br />
- 100% CPU utilizations.</p>
<p>It doesn&#8217;t matter if I&#8217;m using VLC, or Totem Movie Player, it will always have those problem above. From what I&#8217;ve read, this is probably due to FFMpeg codecs for H.264 decoding.</p>
<p>However, I have a solution, found from <a href="http://ubuntuforums.org/showthread.php?t=1037625">http://ubuntuforums.org/showthread.php?t=1037625</a></p>
<p>Below are the steps:<br />
1. Install mplayer:<br />
<code>sudo apt-get install mplayer-nogui</code></p>
<p>2. Run your 1080p .mkv files with it:<br />
<code>mplayer -vo vdpau -vc ffh264vdpau /path/to/the/mkv/file</code></p>
<p>Now the HD movies playing in my Ubuntu laptop are smooth as it can be.<br />
Try it out. Cheers.</p>
<iframe id="basic_facebook_social_plugins_likebutton" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fnazham.com%2F2010%2F04%2F24%2Fplaying-1080p-video-in-ubuntu-without-lag%2F&amp;layout=standard&amp;show_faces=true&amp;width=&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:px; height:px"></iframe>

<br />Related posts:<ol><li><a href='http://nazham.com/2009/12/02/how-to-check-for-open-ports-in-ubuntu/' rel='bookmark' title='Permanent Link: How to Check for Open Ports in Ubuntu'>How to Check for Open Ports in Ubuntu</a> <small>There are various ways to view for open ports on...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://nazham.com/2010/04/24/playing-1080p-video-in-ubuntu-without-lag/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Check for Open Ports in Ubuntu</title>
		<link>http://nazham.com/2009/12/02/how-to-check-for-open-ports-in-ubuntu/</link>
		<comments>http://nazham.com/2009/12/02/how-to-check-for-open-ports-in-ubuntu/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 14:29:04 +0000</pubDate>
		<dc:creator>nazham</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://nazham.com/?p=1025</guid>
		<description><![CDATA[There are various ways to view for open ports on your local Ubuntu/Linux machine. However, I particularly prefer two methods/command below, since it is simple, and without any third-party application.


No related posts.]]></description>
			<content:encoded><![CDATA[<p>There are various ways to view for open ports on your local Ubuntu/Linux machine. However, I particularly prefer two methods/command below, since it is simple, and without any third-party application.</p>
<p>Open your command prompt, and type:<br />
<code>netstat -an | grep "LISTEN "</code></p>
<p>Or, another method:<br />
<code>sudo netstat --tcp --udp --listening --program</code></p>
<p>It will list all ports that your machine are listening to. The latter method will even shows the program name associated to it.</p>
<p>Enjoy.</p>
<iframe id="basic_facebook_social_plugins_likebutton" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fnazham.com%2F2009%2F12%2F02%2Fhow-to-check-for-open-ports-in-ubuntu%2F&amp;layout=standard&amp;show_faces=true&amp;width=&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:px; height:px"></iframe>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://nazham.com/2009/12/02/how-to-check-for-open-ports-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Enhance Your Linux Desktop with Conky</title>
		<link>http://nazham.com/2009/07/26/how-to-enhance-your-linux-desktop-with-conky/</link>
		<comments>http://nazham.com/2009/07/26/how-to-enhance-your-linux-desktop-with-conky/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 15:35:29 +0000</pubDate>
		<dc:creator>nazham</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://nazham.com/?p=1000</guid>
		<description><![CDATA[I have been using Conky as my desktop monitoring widgets for quite some time now. Before this, I&#8217;ve been using few applications like screenlets and gdesklets, but there&#8217;s a lot of drawbacks on these applications. Among them were limited customizations, it&#8217;s difficult to develop your own widgets, unable to find widgets you&#8217;re looking for, and [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>I have been using <strong>Conky</strong> as my desktop monitoring widgets for quite some time now. Before this, I&#8217;ve been using few applications like screenlets and gdesklets, but there&#8217;s a lot of drawbacks on these applications. Among them were limited customizations, it&#8217;s difficult to develop your own widgets, unable to find widgets you&#8217;re looking for, and if you do find them, they are too buggy to be used in the first place.</p>
<p>Then, I&#8217;ve found <a href="http://conky.sourceforge.net/">Conky</a>. I&#8217;ll never turn back.</p>
<p>This is the best system monitor I have ever experienced. It is highly customizable, all you have to do is modify the Conky config file. There&#8217;s a lot of widgets/variables to use, such as system monitoring tools (CPU, RAM, SWAP, Hard Drive, etc), batteries capacity, networking, and more. And best of all, it is very, very easy to create your own widgets. If you know any programming language such as Python, Perl, or even a simple Shell Scripts, then you&#8217;re off to create your own.</p>
<p><span id="more-1000"></span><br />
Installing Conky are easy as executing command below in the terminal:<br />
<code>$ sudo apt-get install conky</code></p>
<p>Next, create your Conky config file. Here is <a href="http://nazham.com/download/conky.conf.txt" target="_blank">my config file</a> I&#8217;m currently using.</p>
<p>Then, execute command below to run Conky. Put it in your startup so that it will be running each time you boot-up your computer:<br />
<code>$ conky -c &lt;path_to_my_conky_config&gt;.conf</code></p>
<p>Below are what my desktop currently looks like with Conky:</p>
<div id="attachment_1007" class="wp-caption aligncenter" style="width: 310px"><a href="http://nazham.com/wp-content/uploads/2009/07/conky-desktop.png"><img class="size-medium wp-image-1007" title="Conky Desktop" src="http://nazham.com/wp-content/uploads/2009/07/conky-desktop-300x187.png" alt="Conky Desktop" width="300" height="187" /></a><p class="wp-caption-text">Conky Desktop</p></div>
<p>In there I&#8217;ve created my own GMail notifier, Google Reader notifier and local TV guide, all using Python. You will find more ideas, screen shots and scripts to use with Conky on <a href="http://ubuntuforums.org/showthread.php?t=281865" target="_blank">Ubuntu Forum</a>.</p>
<p>Cheers.</p>
<iframe id="basic_facebook_social_plugins_likebutton" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fnazham.com%2F2009%2F07%2F26%2Fhow-to-enhance-your-linux-desktop-with-conky%2F&amp;layout=standard&amp;show_faces=true&amp;width=&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:px; height:px"></iframe>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://nazham.com/2009/07/26/how-to-enhance-your-linux-desktop-with-conky/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How To Share Media Between Xbox 360 and Linux</title>
		<link>http://nazham.com/2009/03/09/how-to-share-media-between-xbox-360-and-linux/</link>
		<comments>http://nazham.com/2009/03/09/how-to-share-media-between-xbox-360-and-linux/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 20:02:48 +0000</pubDate>
		<dc:creator>nazham</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ubuntu 8.10]]></category>
		<category><![CDATA[Xbox 360]]></category>

		<guid isPermaLink="false">http://nazham.com/?p=849</guid>
		<description><![CDATA[I&#8217;ve got a little project going on in the past few days. I have a reasonable amount of media; movies, mp3&#8217;s and family pictures in my Linux desktop, Ubuntu 8.10. Would it be nice if I could stream all the movies and music directly from the Linux machine to my Xbox 360? This is a [...]

Related posts:<ol><li><a href='http://nazham.com/2009/12/02/how-to-check-for-open-ports-in-ubuntu/' rel='bookmark' title='Permanent Link: How to Check for Open Ports in Ubuntu'>How to Check for Open Ports in Ubuntu</a> <small>There are various ways to view for open ports on...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve got a little project going on in the past few days. I have a reasonable amount of media; movies, mp3&#8217;s and family pictures in my Linux desktop, Ubuntu 8.10. Would it be nice if I could stream all the movies and music directly from the Linux machine to my Xbox 360? This is a very easy feat in <strong>Windows</strong>, where we could simply use the <strong>Windows Media Share</strong> option in <strong>Windows Media Player 11</strong>. But, what about Linux?</p>
<p>Xbox-Linux box media sharing could be achieved by using GeeXbox <a href="http://ushare.geexbox.org/" target="_blank">uShare</a>. GeeXboX uShare is a free UPnP A/V &amp; DLNA Media Server for Linux. Installation and configuration explained after the jump below:</p>
<p><span id="more-849"></span><br />
<strong>Installation and Configuration</strong></p>
<p>1. Install uShare by using command:<br />
<code>sudo apt-get install ushare</code></p>
<p>2. Edit the uShare configuration file:<br />
<code>sudo gedit /etc/ushare.conf</code></p>
<p>Example of the uShare config file:</p>
<pre># /etc/ushare.conf
# uShare UPnP Friendly Name (default is 'uShare').
USHARE_NAME=uShare

# Interface to listen to (default is eth0).
# Ex : USHARE_IFACE=eth1
USHARE_IFACE=eth0

# Port to listen to
USHARE_PORT=49153

# Port to listen for Telnet connections
USHARE_TELNET_PORT=

# Directories to be shared (space or CSV list).
# Ex: USHARE_DIR=/dir1,/dir2
USHARE_DIR=/home/myusername/mymediafolder

# Use to override what happens when iconv fails to parse a file name.
USHARE_OVERRIDE_ICONV_ERR=yes

# Enable Web interface (yes/no)
ENABLE_WEB=yes

# Enable Telnet control interface (yes/no)
ENABLE_TELNET=no

# Use XboX 360 compatibility mode (yes/no)
ENABLE_XBOX=yes

# Use DLNA profile (yes/no)
# This is needed for PlayStation3 to work (among other devices)
ENABLE_DLNA=no</pre>
<p>&#8220;USHARE_NAME&#8221; is the display name of your share.<br />
&#8220;USHARE_IFACE&#8221; is the network interface uShare should listen to.<br />
&#8220;USHARE_PORT&#8221; this is the port the uShare server listens on. Make sure this is set to 49153.<br />
&#8220;USHARE_DIR&#8221; is the full path of the folder with your media.<br />
&#8220;ENABLE_WEB&#8221; to turns on the web interface. Make sure this is set to &#8216;yes&#8217;.<br />
&#8220;ENABLE_XBOX&#8221; is what enables Xbox 360 compatibility. Make sure it’s set to &#8216;yes&#8217;.</p>
<p>3. After finished editing the configuration file, save the file.</p>
<p>4. Edit the following file by issuing command below:<br />
<code>sudo gedit /etc/init.d/ushare</code></p>
<p>Find the following lines:</p>
<pre>start-stop-daemon --start --quiet --background --oknodo \
--make-pidfile --pidfile $PIDFILE \
--exec $DAEMON -- $USHARE_OPTIONS</pre>
<p>And change them to:</p>
<pre>start-stop-daemon --start --quiet --background --oknodo \
--make-pidfile --pidfile $PIDFILE \
--exec $DAEMON -- $USHARE_OPTIONS --xbox</pre>
<p>5. Restart uShare<br />
<code>sudo /etc/init.d/ushare stop</code><br />
<code>sudo /etc/init.d/ushare start</code></p>
<p>That&#8217;s pretty much it!</p>
<p>If you have a firewall running, open the firewall connection to your Xbox ip address.</p>
<p>The web interface is available at:<br />
http://your.servers.ip.address:49153/web/ushare.html</p>
<p><strong>Xbox 360 Settings</strong></p>
<p>For your Xbox 360 configuration, make sure they are able to connect to your home network. Just set the networking options in the &#8220;Settings&#8221; blade. You can set the networking options to be automatic, or manual by the simplest settings of the ip address, subnet mask and gateway.</p>
<p><strong>Viewing Your Media</strong></p>
<p>Go to the &#8220;Media&#8221; blade on your Xbox 360 Dashboard. Open your media (Music, Video or Picture). The uShare (or any other name you&#8217;ve given in the uShare config) should be available on the selection source.</p>
<p><a href="http://nazham.com/wp-content/uploads/2009/03/ushare1.jpg"><img class="size-medium wp-image-883 aligncenter" style="border: 0pt none;" title="uShare Xbox 360 Dashboard" src="http://nazham.com/wp-content/uploads/2009/03/ushare1-300x231.jpg" alt="uShare Xbox 360 Dashboard" width="300" height="231" /></a></p>
<p>Open your media in the uShare source. WMV files should not be any problem, but for AVI&#8217;s and any other types, the view-ability depends on the codecs installed on your Xbox.</p>
<p style="text-align: center;"><a href="http://nazham.com/wp-content/uploads/2009/03/ushare2.jpg"><img class="aligncenter size-medium wp-image-888" style="border: 0pt none;" title="uShare video" src="http://nazham.com/wp-content/uploads/2009/03/ushare2-300x194.jpg" alt="uShare video" width="300" height="194" /></a></p>
<p>Next project, wireless connectivity for the Xbox 360. <img src='http://nazham.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I currently have a 10 meter network cable running across the room from my Xbox to the router, which is ridiculous.</p>
<iframe id="basic_facebook_social_plugins_likebutton" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fnazham.com%2F2009%2F03%2F09%2Fhow-to-share-media-between-xbox-360-and-linux%2F&amp;layout=standard&amp;show_faces=true&amp;width=&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:px; height:px"></iframe>

<br />Related posts:<ol><li><a href='http://nazham.com/2009/12/02/how-to-check-for-open-ports-in-ubuntu/' rel='bookmark' title='Permanent Link: How to Check for Open Ports in Ubuntu'>How to Check for Open Ports in Ubuntu</a> <small>There are various ways to view for open ports on...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://nazham.com/2009/03/09/how-to-share-media-between-xbox-360-and-linux/feed/</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
		<item>
		<title>Twitux and gTwitter: Twitter Clients for Ubuntu Linux</title>
		<link>http://nazham.com/2008/12/30/twitux-and-gtwitter-twitter-clients-for-ubuntu-linux/</link>
		<comments>http://nazham.com/2008/12/30/twitux-and-gtwitter-twitter-clients-for-ubuntu-linux/#comments</comments>
		<pubDate>Mon, 29 Dec 2008 16:23:17 +0000</pubDate>
		<dc:creator>nazham</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Ubuntu 8.10]]></category>

		<guid isPermaLink="false">http://nazham.com/?p=711</guid>
		<description><![CDATA[Following my previous post nazham.com on Twitter, I&#8217;ve just beginning to get involved with Twitter.
Below are a couple of Twitter clients that I&#8217;ve used in Ubuntu:
Twitux
A Twitter client for GNOME.
Twitux is a lightweight client for the twitter messaging service, featuring time-line auto updating, a tray area icon and notification of new messages.

gTwitter
Client for tracking and [...]

Related posts:<ol><li><a href='http://nazham.com/2009/12/02/how-to-check-for-open-ports-in-ubuntu/' rel='bookmark' title='Permanent Link: How to Check for Open Ports in Ubuntu'>How to Check for Open Ports in Ubuntu</a> <small>There are various ways to view for open ports on...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Following my previous post <a href="http://nazham.com/2008/12/25/nazhamcom-on-twitter/" target="_blank">nazham.com on Twitter</a>, I&#8217;ve just beginning to get involved with <a href="http://twitter.com/nazham" target="_blank">Twitter</a>.<br />
Below are a couple of Twitter clients that I&#8217;ve used in Ubuntu:</p>
<p><a href="http://live.gnome.org/DanielMorales/Twitux" target="_blank"><strong>Twitux</strong></a><br />
A Twitter client for GNOME.<br />
Twitux is a lightweight client for the twitter messaging service, featuring time-line auto updating, a tray area icon and notification of new messages.</p>
<p><img class="alignnone size-full wp-image-716" title="twitux" src="http://nazham.com/wp-content/uploads/2008/12/twitux.jpg" alt="twitux" width="437" height="450" /></p>
<p><a href="http://code.google.com/p/gtwitter/" target="_blank"><strong>gTwitter</strong></a><br />
Client for tracking and posting to twitter.<br />
gTwitter is a client for posting and fetching updates to the twitter service.</p>
<p><img src="http://nazham.com/wp-content/uploads/2008/12/gtwitter.png" alt="gtwitter" title="gtwitter" width="371" height="410" class="alignnone size-full wp-image-723" /></p>
<p>Installation is available through Synaptic Package Manager. Just do a search for the application name, twitux or gtwitter.</p>
<iframe id="basic_facebook_social_plugins_likebutton" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fnazham.com%2F2008%2F12%2F30%2Ftwitux-and-gtwitter-twitter-clients-for-ubuntu-linux%2F&amp;layout=standard&amp;show_faces=true&amp;width=&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:px; height:px"></iframe>

<br />Related posts:<ol><li><a href='http://nazham.com/2009/12/02/how-to-check-for-open-ports-in-ubuntu/' rel='bookmark' title='Permanent Link: How to Check for Open Ports in Ubuntu'>How to Check for Open Ports in Ubuntu</a> <small>There are various ways to view for open ports on...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://nazham.com/2008/12/30/twitux-and-gtwitter-twitter-clients-for-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Installing Google Gadgets on Ubuntu 8.10</title>
		<link>http://nazham.com/2008/12/27/installing-google-gadgets-on-ubuntu-810/</link>
		<comments>http://nazham.com/2008/12/27/installing-google-gadgets-on-ubuntu-810/#comments</comments>
		<pubDate>Sat, 27 Dec 2008 14:38:36 +0000</pubDate>
		<dc:creator>nazham</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Intrepid Ibex]]></category>
		<category><![CDATA[Ubuntu 8.10]]></category>

		<guid isPermaLink="false">http://nazham.com/?p=703</guid>
		<description><![CDATA[Google Desktop gadgets are interactive mini-applications that can be placed anywhere on the user&#8217;s desktop to show new email, weather, photos, personalized news or other desired information. Google offers a gallery of pre-built gadgets for download on the official website.
To install Google Gadgets on Ubuntu 8.10:
1. Download the .deb package.
2. Install the package using the [...]

Related posts:<ol><li><a href='http://nazham.com/2009/12/02/how-to-check-for-open-ports-in-ubuntu/' rel='bookmark' title='Permanent Link: How to Check for Open Ports in Ubuntu'>How to Check for Open Ports in Ubuntu</a> <small>There are various ways to view for open ports on...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://desktop.google.com/plugins/" target="_blank">Google Desktop gadgets</a> are interactive mini-applications that can be placed anywhere on the user&#8217;s desktop to show new email, weather, photos, personalized news or other desired information. Google offers a gallery of pre-built gadgets for download on the official website.</p>
<p><strong>To install Google Gadgets on Ubuntu 8.10:</strong></p>
<p>1. Download the <a href="http://www.getdeb.net/release/3449" target="_blank">.deb package</a>.<br />
2. Install the package using the following command:<br />
<code>sudo dpkg -i google-gadgets_0.10.4-0~getdeb1_i386.deb</code></p>
<p>3. Run the apps using the command <code>ggl-gtk</code> or from the Applications menu.</p>
<p><strong>Autostart:</strong></p>
<p>1. Add a new entry at System -&gt; Preference -&gt; Sessions.<br />
2. The command entry would be <code>ggl-gtk</code></p>
<p>Enjoy.</p>
<p>Resource: <a href="http://www.ubuntugeek.com/howto-install-google-gadgets-in-ubuntu-810-intrepid-ibex.htm" target="_blank">Howto install Google Gadgets in ubuntu 8.10 (Intrepid Ibex)</a></p>
<iframe id="basic_facebook_social_plugins_likebutton" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fnazham.com%2F2008%2F12%2F27%2Finstalling-google-gadgets-on-ubuntu-810%2F&amp;layout=standard&amp;show_faces=true&amp;width=&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:px; height:px"></iframe>

<br />Related posts:<ol><li><a href='http://nazham.com/2009/12/02/how-to-check-for-open-ports-in-ubuntu/' rel='bookmark' title='Permanent Link: How to Check for Open Ports in Ubuntu'>How to Check for Open Ports in Ubuntu</a> <small>There are various ways to view for open ports on...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://nazham.com/2008/12/27/installing-google-gadgets-on-ubuntu-810/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delay Print Screen in Ubuntu</title>
		<link>http://nazham.com/2008/11/29/delay-print-screen-in-ubuntu/</link>
		<comments>http://nazham.com/2008/11/29/delay-print-screen-in-ubuntu/#comments</comments>
		<pubDate>Sat, 29 Nov 2008 12:06:56 +0000</pubDate>
		<dc:creator>nazham</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Gnome]]></category>

		<guid isPermaLink="false">http://nazham.com/?p=581</guid>
		<description><![CDATA[in Ubuntu, when there&#8217;s menu active or visible, pushing &#8216;Print Screen&#8217; won&#8217;t have any effect. It applies to taskbar, context menus, right-click and other menus. But I have a workaround on this one:
Simply let Gnome automatically take the screenshot, and delay the action.
In your terminal, type:
gnome-screenshot --delay=5
The number 5 represents the number of seconds before [...]

Related posts:<ol><li><a href='http://nazham.com/2009/12/02/how-to-check-for-open-ports-in-ubuntu/' rel='bookmark' title='Permanent Link: How to Check for Open Ports in Ubuntu'>How to Check for Open Ports in Ubuntu</a> <small>There are various ways to view for open ports on...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>in Ubuntu, when there&#8217;s menu active or visible, pushing &#8216;Print Screen&#8217; won&#8217;t have any effect. It applies to taskbar, context menus, right-click and other menus. But I have a workaround on this one:<br />
Simply let Gnome automatically take the screenshot, and delay the action.<br />
In your terminal, type:<br />
<code>gnome-screenshot --delay=5</code></p>
<p>The number 5 represents the number of seconds before Gnome automatically take the screenshot. After typing the command, go to the window or menu that you would like to take the screenshot of.</p>
<iframe id="basic_facebook_social_plugins_likebutton" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fnazham.com%2F2008%2F11%2F29%2Fdelay-print-screen-in-ubuntu%2F&amp;layout=standard&amp;show_faces=true&amp;width=&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:px; height:px"></iframe>

<br />Related posts:<ol><li><a href='http://nazham.com/2009/12/02/how-to-check-for-open-ports-in-ubuntu/' rel='bookmark' title='Permanent Link: How to Check for Open Ports in Ubuntu'>How to Check for Open Ports in Ubuntu</a> <small>There are various ways to view for open ports on...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://nazham.com/2008/11/29/delay-print-screen-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Easier VPN Setup with Ubuntu 8.10</title>
		<link>http://nazham.com/2008/11/06/easier-vpn-setup-with-ubuntu-810/</link>
		<comments>http://nazham.com/2008/11/06/easier-vpn-setup-with-ubuntu-810/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 14:20:36 +0000</pubDate>
		<dc:creator>nazham</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ubuntu 8.10]]></category>
		<category><![CDATA[VPN]]></category>
		<category><![CDATA[VPNC]]></category>

		<guid isPermaLink="false">http://nazham.com/?p=508</guid>
		<description><![CDATA[Quite a while ago I&#8217;ve posted a way to setup your VPN access using VPNC in Ubuntu 8.04 Hardy Heron. Now with Ubuntu 8.10 Interprid Ibex, things will become much more easier, by using the NetworkManager applet in Gnome.
When you have not yet installed any VPN manager, the &#8220;Add&#8221; button for VPN connections in the [...]

Related posts:<ol><li><a href='http://nazham.com/2009/12/02/how-to-check-for-open-ports-in-ubuntu/' rel='bookmark' title='Permanent Link: How to Check for Open Ports in Ubuntu'>How to Check for Open Ports in Ubuntu</a> <small>There are various ways to view for open ports on...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Quite a while ago I&#8217;ve posted a way to <a href="http://nazham.com/2008/09/10/vpn-connection-in-ubuntu-using-vpnc/" target="_self">setup your VPN access using VPNC</a> in Ubuntu 8.04 Hardy Heron. Now with Ubuntu 8.10 Interprid Ibex, things will become much more easier, by using the NetworkManager applet in Gnome.</p>
<p>When you have not yet installed any VPN manager, the &#8220;Add&#8221; button for VPN connections in the applet seems to be disabled. But thanks to a post in UbuntuForum <a href="http://ubuntuforums.org/showthread.php?t=965213" target="_blank">here</a>, I manage to enable the &#8220;Add&#8221; VPN connection button, and add my office&#8217;s VPN connection by a few simple clicks.</p>
<p>1. Go to Applications -&gt; Add/Remove.</p>
<p>2. From the Show dropdown &#8220;All available applications&#8221;, and then enter &#8220;vpn connection&#8221; into the search box.</p>
<p>3. Choose your choice of VPN manager. In my case it&#8217;s VPNC.<br />

<a href="http://nazham.com/wp-content/gallery/ubuntu810vpn/ubuntuvpn-addremove.png" title="" class="thickbox" rel="singlepic45" >
	<img class="ngg-singlepic" src="http://nazham.com/wp-content/plugins/nextgen-gallery/nggshow.php?pid=45&amp;width=320&amp;height=240&amp;mode=" alt="ubuntuvpn-addremove.png" title="ubuntuvpn-addremove.png" />
</a>
</p>
<p>4. Now you can add the VPN connection. The &#8220;Add&#8221; button is enabled now. Click on the NetworkManager applet -&gt; VPN Connections -&gt; Configure VPN&#8230;</p>
<p>5. Click on the VPN tab, click &#8220;Add&#8221; button<br />

<a href="http://nazham.com/wp-content/gallery/ubuntu810vpn/ubuntuvpn-add.png" title="" class="thickbox" rel="singlepic44" >
	<img class="ngg-singlepic" src="http://nazham.com/wp-content/plugins/nextgen-gallery/nggshow.php?pid=44&amp;width=320&amp;height=240&amp;mode=" alt="ubuntuvpn-add.png" title="ubuntuvpn-add.png" />
</a>
</p>
<p>6. Enter your VPN connection details (Gateway, user name, passwords, etc).<br />

<a href="http://nazham.com/wp-content/gallery/ubuntu810vpn/ubuntuvpn-add2.png" title="" class="thickbox" rel="singlepic43" >
	<img class="ngg-singlepic" src="http://nazham.com/wp-content/plugins/nextgen-gallery/nggshow.php?pid=43&amp;width=320&amp;height=240&amp;mode=" alt="ubuntuvpn-add2.png" title="ubuntuvpn-add2.png" />
</a>
</p>
<p>7. Click &#8220;OK&#8221;, and Voila!, your VPN connection is available for you at your NetworkManager applet, shown below:<br />

<a href="http://nazham.com/wp-content/gallery/ubuntu810vpn/ubuntuvpn-wifi.png" title="" class="thickbox" rel="singlepic42" >
	<img class="ngg-singlepic" src="http://nazham.com/wp-content/plugins/nextgen-gallery/nggshow.php?pid=42&amp;width=320&amp;height=240&amp;mode=" alt="ubuntuvpn-wifi.png" title="ubuntuvpn-wifi.png" />
</a>
</p>
<p>Enjoy.</p>
<iframe id="basic_facebook_social_plugins_likebutton" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fnazham.com%2F2008%2F11%2F06%2Feasier-vpn-setup-with-ubuntu-810%2F&amp;layout=standard&amp;show_faces=true&amp;width=&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:px; height:px"></iframe>

<br />Related posts:<ol><li><a href='http://nazham.com/2009/12/02/how-to-check-for-open-ports-in-ubuntu/' rel='bookmark' title='Permanent Link: How to Check for Open Ports in Ubuntu'>How to Check for Open Ports in Ubuntu</a> <small>There are various ways to view for open ports on...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://nazham.com/2008/11/06/easier-vpn-setup-with-ubuntu-810/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Ubuntu 8.10 on Dell XPS M1530</title>
		<link>http://nazham.com/2008/11/04/ubuntu-810-on-dell-xps-m1530/</link>
		<comments>http://nazham.com/2008/11/04/ubuntu-810-on-dell-xps-m1530/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 15:04:47 +0000</pubDate>
		<dc:creator>nazham</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Dell XPS M1530]]></category>
		<category><![CDATA[Intrepid Ibex]]></category>
		<category><![CDATA[Ubuntu 8.10]]></category>

		<guid isPermaLink="false">http://nazham.com/?p=476</guid>
		<description><![CDATA[Following my previous post, finally I got the new Ubuntu 8.10 Intrepid Ibex on my Dell XPS M1530 laptop. The verdict: Pure Awesomeness. The installation is very quick and simple (it just that it took me a while to write this post). Almost everything works out of the box. The driver support is better. The [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Following my <a href="http://nazham.com/2008/10/30/upgrading-to-ubuntu-810/" target="_self">previous post</a>, finally I got the new <a href="http://www.ubuntu.com/" target="_blank">Ubuntu 8.10 Intrepid Ibex</a> on my Dell XPS M1530 laptop. The verdict: Pure Awesomeness. The installation is very quick and simple (it just that it took me a while to write this post). Almost everything works out of the box. The driver support is better. The OS itself I feel more stable, hard as a rock. And of course, <a href="http://www.ubuntu.com/news/ubuntu-8.10-desktop" target="_blank">more features</a>. Sure, there is a few bumps, but nothing too serious.</p>

<a href="http://nazham.com/wp-content/gallery/ubuntu810installed/screenshot1.png" title="My shiny brand new desktop" class="thickbox" rel="singlepic35" >
	<img class="ngg-singlepic" src="http://nazham.com/wp-content/plugins/nextgen-gallery/nggshow.php?pid=35&amp;width=320&amp;height=240&amp;mode=" alt="Desktop" title="Desktop" />
</a>
<br />
(Above: My shiny brand new desktop <img src='http://nazham.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )<br />
<span id="more-476"></span><br />
<span style="text-decoration: underline;"><strong>Hardware</strong></span></p>
<p><strong>Wifi</strong>: Works right of the box. It has more features for you to configure your networking, such as wired connection, wireless, mobile broadband, VPN and DSL.  It automatically reconnects upon waking up after hibernation. I had some issues about the nm-applet keyring keeps on asking me for admin&#8217;s password after reboot, but the solution is very simple. I will have another post for this one later.</p>
<p><strong>Nvidia Graphic Card</strong>: Works like a charm! Better than Hardy, where I had a few problem installing the driver the first time.  The proprietary Nvidia accelerated graphics driver version 177 is very easy to install. All you have to do is activate it.<br />
NOTE: Please do system update (can be via Update Manager) before activating, otherwise it just doesn&#8217;t seem to install the driver.<br />

<a href="http://nazham.com/wp-content/gallery/ubuntu810installed/screenshot6.png" title="System Monitor and Nvidia Settings" class="thickbox" rel="singlepic36" >
	<img class="ngg-singlepic" src="http://nazham.com/wp-content/plugins/nextgen-gallery/nggshow.php?pid=36&amp;width=320&amp;height=240&amp;mode=" alt="System Monitor and Nvidia Settings" title="System Monitor and Nvidia Settings" />
</a>

<p><strong>Webcam</strong>: Works in Ekiga, but not in Cheese unless I select 176&#215;144 resolution.</p>
<p><strong>Trackpad/Touchpad</strong>: It&#8217;s working, but with BIOS A09, I had to change the /boot/grub/menu.lst like what I&#8217;ve mentioned in my post <a href="http://nazham.com/2008/10/08/getting-dell-xps-trackpad-to-work-on-ubuntu-hardy/" target="_self">here</a>.</p>
<p><strong>Sound and Mic</strong>: Working fine.<br />

<a href="http://nazham.com/wp-content/gallery/ubuntu810installed/screenshot2.png" title="Media player" class="thickbox" rel="singlepic40" >
	<img class="ngg-singlepic" src="http://nazham.com/wp-content/plugins/nextgen-gallery/nggshow.php?pid=40&amp;width=320&amp;height=240&amp;mode=" alt="Media player" title="Media player" />
</a>
<br />
(Above: The mp3 player in action)</p>
<p><strong>Bluetooth</strong>: No problem.</p>
<p><strong>Thumb print Reader</strong>: Never tested before.</p>
<p><strong>DVD Player, USB, Printer, HDMI, SD/MMC Card Reader</strong>: No in-depth test yet.</p>
<p><span style="text-decoration: underline;"><strong>Software</strong></span></p>
<p><strong>VLC</strong>: Works with brand new cool interface.<br />

<a href="http://nazham.com/wp-content/gallery/ubuntu810installed/screenshot5.png" title="VLC new interface" class="thickbox" rel="singlepic37" >
	<img class="ngg-singlepic" src="http://nazham.com/wp-content/plugins/nextgen-gallery/nggshow.php?pid=37&amp;width=320&amp;height=240&amp;mode=" alt="VLC new interface" title="VLC new interface" />
</a>
</p>
<p><strong>Nautilus</strong>: Comes with new tabbed interface.<br />

<a href="http://nazham.com/wp-content/gallery/ubuntu810installed/screenshot3.png" title="New tabbed Nautilus" class="thickbox" rel="singlepic39" >
	<img class="ngg-singlepic" src="http://nazham.com/wp-content/plugins/nextgen-gallery/nggshow.php?pid=39&amp;width=320&amp;height=240&amp;mode=" alt="New tabbed Nautilus" title="New tabbed Nautilus" />
</a>
</p>
<p><strong>VMWare 1.0.7</strong>: Need patches to successfully install it. Perhaps I will post more detailed information later, but for the time being, please refer to this <a href="http://ubuntuforums.org/showthread.php?t=966070" target="_blank">UbuntuForum</a>.</p>
<p><strong>New DarkRoom Theme</strong>: Beautiful looking theme, but it renders some text unreadable. Gonna wait for the fix.</p>
<p><strong>Screenlets 0.1.2</strong>: Works.<br />
<strong>Dropbox</strong>: Okay.<br />
<strong>Google Reader Notifier</strong>: Still notifying.<br />
<strong>VPNC</strong>: No problem.</p>
<p><span style="text-decoration: underline;"><strong>Conclusion</strong></span><br />

<a href="http://nazham.com/wp-content/gallery/ubuntu810installed/screenshot4.png" title="Firefox" class="thickbox" rel="singlepic38" >
	<img class="ngg-singlepic" src="http://nazham.com/wp-content/plugins/nextgen-gallery/nggshow.php?pid=38&amp;width=320&amp;height=240&amp;mode=" alt="Firefox" title="Firefox" />
</a>
<br />
Like previous release of Ubuntu, it never disappointed me. Looks like it&#8217;s here to stay! <img src='http://nazham.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<iframe id="basic_facebook_social_plugins_likebutton" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fnazham.com%2F2008%2F11%2F04%2Fubuntu-810-on-dell-xps-m1530%2F&amp;layout=standard&amp;show_faces=true&amp;width=&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:px; height:px"></iframe>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://nazham.com/2008/11/04/ubuntu-810-on-dell-xps-m1530/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Upgrading to Ubuntu 8.10</title>
		<link>http://nazham.com/2008/10/30/upgrading-to-ubuntu-810/</link>
		<comments>http://nazham.com/2008/10/30/upgrading-to-ubuntu-810/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 15:24:10 +0000</pubDate>
		<dc:creator>nazham</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Intrepid Ibex]]></category>

		<guid isPermaLink="false">http://nazham.com/?p=468</guid>
		<description><![CDATA[The long awaited Ubuntu 8.10 has been released! I&#8217;m upgrading it from my Hardy 8.04 to this new version Intrepid Ibex, 8.10, as I&#8217;m writing this post. I&#8217;m using the Network Upgrade for Ubuntu Desktops. The method is fairly easy, provided by the Ubuntu website.
1. Start System/Administration/Software Sources.
2. Click on the &#8220;Updates&#8221; tab and change [...]

Related posts:<ol><li><a href='http://nazham.com/2009/12/02/how-to-check-for-open-ports-in-ubuntu/' rel='bookmark' title='Permanent Link: How to Check for Open Ports in Ubuntu'>How to Check for Open Ports in Ubuntu</a> <small>There are various ways to view for open ports on...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The long awaited Ubuntu 8.10 has been released! I&#8217;m upgrading it from my Hardy 8.04 to this new version Intrepid Ibex, 8.10, as I&#8217;m writing this post. I&#8217;m using the <a href="http://www.ubuntu.com/getubuntu/upgrading" target="_blank">Network Upgrade for Ubuntu Desktops</a>. The method is fairly easy, provided by the Ubuntu website.</p>
<p>1. Start System/Administration/Software Sources.</p>
<p>2. Click on the &#8220;Updates&#8221; tab and change &#8220;Show new distribution release&#8221; to &#8220;Normal releases&#8221;.</p>
<p>3. Start System/Administration/Update Manager.</p>
<p>4. Click the Check button to check for new updates.</p>
<p>5. If there are any updates to install, use the Install Updates button to install them, and press Check again after that is complete.</p>
<p>6. A message will appear informing you of the availability of the new release.<br />
<img class="alignnone" title="Ubuntu Upgrade" src="http://nazham.com/wp-content/gallery/ubuntu810/update-manager-upgrade-810.png" alt="" width="477" height="160" /></p>
<p>7. Click Upgrade.</p>
<p>8. Follow the on-screen instructions.</p>
<p>I will give a simple review about the new Ubuntu Intrepid Ibex, 8.10 when I&#8217;m done upgrading it on my machine. Looking good so far <img src='http://nazham.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<iframe id="basic_facebook_social_plugins_likebutton" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fnazham.com%2F2008%2F10%2F30%2Fupgrading-to-ubuntu-810%2F&amp;layout=standard&amp;show_faces=true&amp;width=&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:px; height:px"></iframe>

<br />Related posts:<ol><li><a href='http://nazham.com/2009/12/02/how-to-check-for-open-ports-in-ubuntu/' rel='bookmark' title='Permanent Link: How to Check for Open Ports in Ubuntu'>How to Check for Open Ports in Ubuntu</a> <small>There are various ways to view for open ports on...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://nazham.com/2008/10/30/upgrading-to-ubuntu-810/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
