<?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>Tips5</title>
	<atom:link href="http://www.tips5.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tips5.com</link>
	<description>Tips about Clearcase Unix Linux/Ubuntu and Others</description>
	<lastBuildDate>Wed, 10 Mar 2010 07:06:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to remove blank empty lines in unix/linux</title>
		<link>http://www.tips5.com/how-to-remove-blank-empty-lines-in-unixlinux</link>
		<comments>http://www.tips5.com/how-to-remove-blank-empty-lines-in-unixlinux#comments</comments>
		<pubDate>Wed, 10 Mar 2010 07:05:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[blank lines]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://www.tips5.com/?p=513</guid>
		<description><![CDATA[I found 6 ways can do it,if you know others ,pls let us know.
Please see below code for detail.

bash-2.05a$ cat test.txt
aaaaaaa
&#160;
bbbbbb
&#160;
cccccc
bash-2.05a$ grep '.' test.txt
aaaaaaa
bbbbbb
cccccc
bash-2.05a$ grep -v '^$' test.txt
aaaaaaa
bbbbbb
cccccc
bash-2.05a$ sed '/^$/d' test.txt
aaaaaaa
bbbbbb
cccccc
bash-2.05a$ sed -n '/^$/!p'  test.txt
aaaaaaa
bbbbbb
cccccc
bash-2.05a$ awk '/./' test.txt
aaaaaaa
bbbbbb
cccccc
bash-2.05a$ awk NF test.txt
aaaaaaa
bbbbbb
cccccc
bash-2.05a$

]]></description>
		<wfw:commentRss>http://www.tips5.com/how-to-remove-blank-empty-lines-in-unixlinux/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove email account from T-Mobile G1 Google Phone</title>
		<link>http://www.tips5.com/how-to-remove-email-account-from-t-mobile-g1-google-phone</link>
		<comments>http://www.tips5.com/how-to-remove-email-account-from-t-mobile-g1-google-phone#comments</comments>
		<pubDate>Mon, 27 Jul 2009 09:19:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://www.tips5.com/?p=509</guid>
		<description><![CDATA[If you don&#8217;t need the email account in your T-mobile G1 phone,you can remove it easily follow the following steps
1. On the Home screen, press the  Application button.
2. Touch Email and go your  Inbox
3. Then press Menu and select Accounts
4. Tap and hold the account which you want to remove.
5. Select Remove account.
6. Select OK. [...]]]></description>
		<wfw:commentRss>http://www.tips5.com/how-to-remove-email-account-from-t-mobile-g1-google-phone/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to fix keyboard mapping issue of Gnome / Vnc in ubuntu</title>
		<link>http://www.tips5.com/how-to-fix-keyboard-mapping-issue-of-gnome-vnc-in-ubuntu</link>
		<comments>http://www.tips5.com/how-to-fix-keyboard-mapping-issue-of-gnome-vnc-in-ubuntu#comments</comments>
		<pubDate>Fri, 19 Jun 2009 02:46:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vnc]]></category>

		<guid isPermaLink="false">http://www.tips5.com/?p=504</guid>
		<description><![CDATA[Yesterday I just intalled an ubuntu 9.04 Server for my co-work.After installed VNC on this server I found the keyboard was messed up while I am connecting this server via vnc client from Windows.After search from internet I found there are 2 good solutions to fix this isssue.
1.In the terminal of this server ,type the [...]]]></description>
		<wfw:commentRss>http://www.tips5.com/how-to-fix-keyboard-mapping-issue-of-gnome-vnc-in-ubuntu/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to relocate user profile folder to other drive in windows 7</title>
		<link>http://www.tips5.com/how-to-relocate-user-profile-folder-to-other-drive-in-windows-7</link>
		<comments>http://www.tips5.com/how-to-relocate-user-profile-folder-to-other-drive-in-windows-7#comments</comments>
		<pubDate>Wed, 20 May 2009 08:37:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.tips5.com/?p=500</guid>
		<description><![CDATA[Bydefault,windows 7/vista put all system data and user data on the same partition,normally it’s drive C.Under this condition we must backup our user data every time we re-install our windows 7/vista.From windows vista ,Microsoft supply us a tool mklink which can create a symbolic link under windows 7 or vista just as the command ln [...]]]></description>
		<wfw:commentRss>http://www.tips5.com/how-to-relocate-user-profile-folder-to-other-drive-in-windows-7/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>How to show the tab bar when you start firefox</title>
		<link>http://www.tips5.com/how-to-show-the-tab-bar-when-you-start-firefox</link>
		<comments>http://www.tips5.com/how-to-show-the-tab-bar-when-you-start-firefox#comments</comments>
		<pubDate>Thu, 16 Apr 2009 13:21:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://www.tips5.com/?p=496</guid>
		<description><![CDATA[Today I found my firefox do not show the tab bar by default when I start the firefox.In fact it&#8217;s very easy to enable this.
To let firefox show the tab bar for you,just go to Tools&#8212;Options:

Then select Always show the tab bar,After click OK,you will find Firefox show your the tab bar.

]]></description>
		<wfw:commentRss>http://www.tips5.com/how-to-show-the-tab-bar-when-you-start-firefox/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To install graphics drivers on Ubuntu</title>
		<link>http://www.tips5.com/to-install-graphics-drivers-on-ubuntu</link>
		<comments>http://www.tips5.com/to-install-graphics-drivers-on-ubuntu#comments</comments>
		<pubDate>Fri, 10 Apr 2009 16:14:38 +0000</pubDate>
		<dc:creator>jmk</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.tips5.com/?p=478</guid>
		<description><![CDATA[If you do not know whether graphics drivers been installed or not,type following in a terminal window ,and it will tell you

and to find out the name of your graphics card,type code:

1.TO install graphics drivers
If it is Nvidia type:

For ATI card :

press enter to install
At last restart your computer
2.Another way,go to System&#8211;&#62;Administration&#8211;&#62;Hardware Drivers(or Restricted Drivers [...]]]></description>
		<wfw:commentRss>http://www.tips5.com/to-install-graphics-drivers-on-ubuntu/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>3D Desktop switch on Ubuntu</title>
		<link>http://www.tips5.com/3d-desktop-switch-on-ubuntu</link>
		<comments>http://www.tips5.com/3d-desktop-switch-on-ubuntu#comments</comments>
		<pubDate>Fri, 10 Apr 2009 15:54:44 +0000</pubDate>
		<dc:creator>jmk</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.tips5.com/?p=468</guid>
		<description><![CDATA[First,you need to install &#8220;3ddesktop&#8221; by typing the following in a terminal window:

press enter
then you can type 3ddesk ,press enter to run this after the installation
You will see:

And use the up and down or right and left arrow keys to change desktop,press enter to select that desktop
Tips:
You must make sure you have installed graphics drivers [...]]]></description>
		<wfw:commentRss>http://www.tips5.com/3d-desktop-switch-on-ubuntu/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use single click instead of double click in Ubuntu</title>
		<link>http://www.tips5.com/how-to-use-single-click-instead-of-double-clicking-in-ubuntu</link>
		<comments>http://www.tips5.com/how-to-use-single-click-instead-of-double-clicking-in-ubuntu#comments</comments>
		<pubDate>Mon, 06 Apr 2009 14:18:21 +0000</pubDate>
		<dc:creator>jmk</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.tips5.com/?p=446</guid>
		<description><![CDATA[For single click,first open up the file browser . Open up trash,or start as shown in figure .

Then go to Edit&#8211;&#62;Preferences

Open the &#8220;Behaviour&#8221; tab in the next window,then set to single click

]]></description>
		<wfw:commentRss>http://www.tips5.com/how-to-use-single-click-instead-of-double-clicking-in-ubuntu/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to play mkv files in windows xp or vista</title>
		<link>http://www.tips5.com/how-to-play-mkv-files-in-windows</link>
		<comments>http://www.tips5.com/how-to-play-mkv-files-in-windows#comments</comments>
		<pubDate>Wed, 01 Apr 2009 13:53:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.tips5.com/?p=435</guid>
		<description><![CDATA[The MKV file isn&#8217;t the regular video and audio compression format. The MKV is an open source container format. It is a general-purpose audio and video container and a contending format to the more popular AVI and MP4 formats. Below will give you 2 methods on how to play mkv files in windows.
The first way [...]]]></description>
		<wfw:commentRss>http://www.tips5.com/how-to-play-mkv-files-in-windows/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to know your computer&#8217;s uptime in Windows xp/vista/7</title>
		<link>http://www.tips5.com/how-to-know-your-computers-uptime-in-windows-xpvista7</link>
		<comments>http://www.tips5.com/how-to-know-your-computers-uptime-in-windows-xpvista7#comments</comments>
		<pubDate>Wed, 01 Apr 2009 13:08:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.tips5.com/?p=429</guid>
		<description><![CDATA[As you know,we can use command &#8220;uptime&#8221; to show your computers uptime in linux/unix.Also we may want to know the uptime of our computers in Windows ,but there is not the uptime command in windows.
Fortunately,windows also give us related commands to show the uptime of the computer.You can find the uptime in the output of [...]]]></description>
		<wfw:commentRss>http://www.tips5.com/how-to-know-your-computers-uptime-in-windows-xpvista7/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
