<?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>Tue, 21 Feb 2012 07:41:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>ssh automatic login without password not working</title>
		<link>http://www.tips5.com/ssh-automatic-login-without-password-not-working</link>
		<comments>http://www.tips5.com/ssh-automatic-login-without-password-not-working#comments</comments>
		<pubDate>Tue, 21 Feb 2012 05:53:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.tips5.com/?p=640</guid>
		<description><![CDATA[If you just setup your ssh rsa key to enable  ssh automatic login without password,but it doesn't work,normally it's caused by a wrong group permission of your .ssh directory or it's parent directory.So just follow below steps to get it out.

1.Check your .ssh directory permission,if it's not 700,please use <a title="chmod command examples" href="http://www.linuxexamples.com/linux-chmod-examples/" target="_blank">chmod command</a> to change it to 700

2.Check the parent directory of .ssh,if it's 770 even 777,pls change it to 750 at least

3.If above 2 steps still can not fix your issue,you can try to copy authorized_keys to authorized_keys2

&#160;

Thinking:If other users have the permission to access your ssh key files ,then they could copy it to their own directory then they can ssh to the server automatically without password using your account.

Reference:<a title="linux ssh automatic login without password prompt" href="http://www.linuxexamples.com/linux-ssh-automatic-login-without-password-prompt/"> ssh automatic login without password prompt</a>]]></description>
		<wfw:commentRss>http://www.tips5.com/ssh-automatic-login-without-password-not-working/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>fatal: open database /etc/postfix/aliases.db: No such file or directory</title>
		<link>http://www.tips5.com/fatal-open-database-etcpostfixaliases-db-no-such-file-or-directory</link>
		<comments>http://www.tips5.com/fatal-open-database-etcpostfixaliases-db-no-such-file-or-directory#comments</comments>
		<pubDate>Tue, 21 Feb 2012 02:41:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.tips5.com/?p=644</guid>
		<description><![CDATA[Today I found one of my server can't send mail successfully ,and I try to restart postfix service but get below error from /etc/log/maillog
<blockquote>fatal: open database /etc/postfix/aliases.db: No such file or directory</blockquote>
&#160;

Then I just checked /etc/postfix directory,there is no aliases and aliases.db file,so I did the below steps,everything works well then:
<blockquote>service postfix stop

ln -s /etc/aliases /etc/postfix/aliases

newaliases

service postfix start</blockquote>
Note:if you only missed the aliases.db file,so you need not to create the link from /etc/aliases to /etc/postfix/aliases]]></description>
		<wfw:commentRss>http://www.tips5.com/fatal-open-database-etcpostfixaliases-db-no-such-file-or-directory/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wp-syntax character &#8220;&#8221; map issue</title>
		<link>http://www.tips5.com/wp-syntax-character-map-issue</link>
		<comments>http://www.tips5.com/wp-syntax-character-map-issue#comments</comments>
		<pubDate>Sun, 05 Feb 2012 13:07:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.tips5.com/?p=634</guid>
		<description><![CDATA[I'm using wordpress with plugin wp-syntax but I found some wp-syntax can't map some special character correctly.

Eg. "&#60;" is showed as "&#38;lt;" and "&#62;" is showed as "&#38;gt;"

After sear on the web,I found we can fix this issue via below method:

1.Find your wp-syntax.php file and open it

2.Fine line
<pre lang="php">$geshi = new GeSHi($code, $language);</pre>
and replace it with
<pre lang="php">$geshi = new GeSHi(htmlspecialchars_decode($code), $language);</pre>
Note:This method only works if your web server with php 5.1 or higher was installed

Below code is for testing purpose:
<pre lang="bash">-----&#62;
&#60;-----</pre>]]></description>
		<wfw:commentRss>http://www.tips5.com/wp-syntax-character-map-issue/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>create bootable usb from iso in windows</title>
		<link>http://www.tips5.com/create-bootable-usb-from-iso-in-windows</link>
		<comments>http://www.tips5.com/create-bootable-usb-from-iso-in-windows#comments</comments>
		<pubDate>Sat, 01 Oct 2011 02:58:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.tips5.com/?p=624</guid>
		<description><![CDATA[This guide will show you how to create a windows bootable usb drive using free software WintoFlash which support xp vista and windows 7,you can select to create this bootable usb from your installation CD/DVD or iso image file.

<strong>Requirements to create bootable usb from iso in windows</strong>
<ul>
	<li>1.4G+ usb drive (2G will be ok for windows xp)</li>
	<li>2.windows installation iso file</li>
	<li>3.Software can mount iso as virtual drive(eg:Daemon tools) or unzip iso file(eg:<a title="7-zip" href="http://www.7-zip.org/" target="_blank">7-zip</a> )</li>
</ul>
<strong>Steps to create windows bootable usb</strong>

1.Insert your usb drive to your computer and <strong>backup useful data from usb to a safe place</strong> because below step will format your usb drive

2.Download the latest WintoFlash from <a title="http://wintoflash.com/download/en/" href="http://wintoflash.com/download/en/" target="_blank">http://wintoflash.com/download/en/</a>

3.Use 7-zip to extract your windows installation iso file or use Daemon Tool to mount it as a virtual drive

4.Open program Wintoflash (run as administrator if you are using Vista or 7) and f0llow then instructions to create your bootable usb from iso.

<a href="http://www.tips5.com/create-bootable-usb-from-iso-in-windows/wintoflash1" rel="attachment wp-att-628"><img class="aligncenter size-medium wp-image-628" title="wintoflash1" src="http://www.tips5.com/wp-content/uploads/2011/09/wintoflash1-500x337.png" alt="" width="500" height="337" /></a>

<a href="http://www.tips5.com/create-bootable-usb-from-iso-in-windows/wintoflash2" rel="attachment wp-att-629"><img class="aligncenter size-medium wp-image-629" title="wintoflash2" src="http://www.tips5.com/wp-content/uploads/2011/09/wintoflash2-500x337.png" alt="" width="500" height="337" /></a>
5.Done and now you can reboot your computer and setup BIOS to boot from this bootable usb to install your new OS]]></description>
		<wfw:commentRss>http://www.tips5.com/create-bootable-usb-from-iso-in-windows/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Change wallpaper in windows 7 starter</title>
		<link>http://www.tips5.com/change-wallpaper-in-windows-7-starter</link>
		<comments>http://www.tips5.com/change-wallpaper-in-windows-7-starter#comments</comments>
		<pubDate>Sun, 25 Sep 2011 10:23:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.tips5.com/?p=612</guid>
		<description><![CDATA[By default ,Windows 7 does not include the function to let user change wallpaper or background,normally we can use 3-rd party applications or tweak registry to change wallpaper in windows 7starter
<strong>Method 1:To change wallpaper / desktop background using 3-rd party tools in windows 7 Starter</strong>
<p title="Oceanis Change Background Windows 7">You can download <a title="Personalization Panel" href="http://www.softpedia.com/get/Tweak/System-Tweak/Personalization-Panel.shtml" target="_blank">Personalization Panel</a> to change your desktop wallpaper in windows 7 starter,you can refer below link with screenshots.</p>
<p title="Oceanis Change Background Windows 7"><strong><a title="Personalize windows 7 starter  / Home basic" href="http://windows7-tutorial.com/personalize-windows-7-starter-home-basic/">Personalize windows 7 starter / Home basic</a>
</strong></p>
<strong>Method 2:To change wallpaper / desktop background by tweaking your registry in windows 7 starter</strong>

Please refer below post :

<strong><a title="Windows 7 starter change wallpaper" href="http://www.windows7home.net/windows-7-starter-change-wallpaper-background/" target="_blank">Windows 7 starter change wallpaper</a></strong>

&#160;]]></description>
		<wfw:commentRss>http://www.tips5.com/change-wallpaper-in-windows-7-starter/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>windows 7 disable hibernation</title>
		<link>http://www.tips5.com/windows-7-disable-hibernation</link>
		<comments>http://www.tips5.com/windows-7-disable-hibernation#comments</comments>
		<pubDate>Sat, 17 Sep 2011 13:57:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.tips5.com/?p=601</guid>
		<description><![CDATA[On a laptop of windows 7, Hibernation is enabled by default to save power so that the battery can last longer,if you do not need this feature,please follow below steps to <a title="enable or disable hibernate in windows 7" href="http://www.windows7home.net/windows-7-enable-or-disable-hibernate/" target="_blank">enable or disable hibernate in windows 7</a>.

1.Click <strong>Start</strong> , type <strong>cmd</strong> in the search box then press Enter to open a <strong>Command Prompt</strong>

2.Type in the following command and press Enter to disable Hibernation feature in windows 7.

Note:1.This will also remove your hibernation file <em>hiberfil.sys</em> which locates under C:\

2.To turn of hibernation ,just use command <em>powercfg -h on</em>
<pre lang="text">powercfg -h off</pre>
<a href="http://www.tips5.com/windows-7-disable-hibernation/powercfghoff" rel="attachment wp-att-603"><img class="aligncenter size-full wp-image-603" title="powercfghoff" src="http://www.tips5.com/wp-content/uploads/2011/09/powercfghoff.png" alt="" width="477" height="251" /></a>

3.To keep hibernation feature enabled but turn off hibernation in you power plan,pls

a)Go to <strong>Control Panel</strong>(Small icons view),open <a title="Change Power Options in windows 7" href="http://www.windows7home.net/windows-7-change-power-plan-options/" target="_blank">Power Options</a> then open <strong>Advanced Power settings</strong>

b)Expand to<strong> Sleep</strong>-- Hibernate after to set the value to 0 (zero) to turn off hibernation in windows 7

<a href="http://www.tips5.com/windows-7-disable-hibernation/hibernatenever" rel="attachment wp-att-604"><img class="aligncenter size-medium wp-image-604" title="hibernatenever" src="http://www.tips5.com/wp-content/uploads/2011/09/hibernatenever-335x360.png" alt="" width="335" height="360" /></a>

c)Click <strong>OK</strong> to save change]]></description>
		<wfw:commentRss>http://www.tips5.com/windows-7-disable-hibernation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix copy / paste issue between vnc and windows</title>
		<link>http://www.tips5.com/fix-copy-post-issues-between-vnc-and-windows</link>
		<comments>http://www.tips5.com/fix-copy-post-issues-between-vnc-and-windows#comments</comments>
		<pubDate>Wed, 14 Sep 2011 05:16:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.tips5.com/?p=570</guid>
		<description><![CDATA[If you experience <strong>copy / paste</strong> issues between your vnc and windows,please see below checklist to troubleshoot.

1.Make sure you enable <strong>copy / paste</strong> feature in your vnc viewer options.(<strong>Send clipboard changes to server </strong>and<strong> <strong>Accept clipboard changes from server</strong></strong>)

<a href="http://www.tips5.com/fix-copy-post-issues-between-vnc-and-windows/winvncviewer4_inputs" rel="attachment wp-att-571"><img class="aligncenter size-full wp-image-571" title="winvncviewer4_inputs" src="http://www.tips5.com/wp-content/uploads/2011/09/winvncviewer4_inputs.gif" alt="" width="352" height="357" /></a>

2.Make sure your have run process <strong>vncconfig</strong> on your linux /unix server .If not,just run command "vncconfig -nowin &#38;" ,also I suggest to put this command to your <a title="xstartup" href="http://www.tips5.com/xstartup-example-for-both-linux-and-solaris" target="_blank">xstartup</a> files
<pre lang="bash">vncconfig nowin &#038;  </pre>
3.If you only cannot <strong>copy / paste</strong> in gvim or other GNU tools,you need to replace "vncconfig nowin &#38;" with "vncconfig -poll 1000 nowin&#38;" (Seems this is a bug of <a title="Realvnc" href="http://www.realvnc.com" target="_blank">Realvnc</a>)
<pre lang="bash">vncconfig -poll 1000 -nowin &#038;  </pre>
4.If you can copy / paste between vnc and your windows at the beginning,but cannot after a while,you need to close your vncviewer,then re-connect again.]]></description>
		<wfw:commentRss>http://www.tips5.com/fix-copy-post-issues-between-vnc-and-windows/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Show system files in windows 7</title>
		<link>http://www.tips5.com/show-system-files-in-windows-7</link>
		<comments>http://www.tips5.com/show-system-files-in-windows-7#comments</comments>
		<pubDate>Mon, 12 Sep 2011 11:35:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.tips5.com/?p=561</guid>
		<description><![CDATA[A system file is any file on your computer that's essential for running Windows. System files are usually found in the Windows folder or the Program Files folder

System files are hidden by default. It's best to keep system files hidden to avoid accidentally modifying or deleting them. If you need to view your system files.

1.Launch <a title="Customize Folder Options" href="http://www.windows7home.net/windows-7-customize-folder-options/" target="_blank">Folder Options</a> window from Windows Explorer (In top left pane,click <strong>Organize</strong> then<strong> Folder and Search Options</strong> )

2.In Folder Options window,go to<strong> View</strong> tab,under <strong>Advanced settings</strong>,clear the check box of<em> Hide protected operating system files </em>(Click Yes on the prompt warning window)

<a href="http://www.tips5.com/show-system-files-in-windows-7/showsystemfiles" rel="attachment wp-att-562"><img class="aligncenter size-medium wp-image-562" title="showsystemfiles" src="http://www.tips5.com/wp-content/uploads/2011/09/showsystemfiles-296x360.png" alt="" width="296" height="360" /></a>

3.Click <strong>Apply</strong> then <strong>OK</strong> .(Please hide the system protected files and folders again after you finish your job).

Tip:Use the same way you can <a title="show hidden files and folders in windows 7" href="http://www.windows7home.net/show-hidden-files-and-folders-in-windows-7/" target="_blank">show hidden files and folders in windows 7</a> (Clear the  check box of <strong><em>show hidden files ,folders and drives</em></strong>)]]></description>
		<wfw:commentRss>http://www.tips5.com/show-system-files-in-windows-7/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>windows 7 desktop icons missing / disappear</title>
		<link>http://www.tips5.com/windows-7-desktop-icons-missing-disappear</link>
		<comments>http://www.tips5.com/windows-7-desktop-icons-missing-disappear#comments</comments>
		<pubDate>Fri, 09 Sep 2011 23:24:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.tips5.com/?p=542</guid>
		<description><![CDATA[If you found all the icons disappeared from you desktop,you must hided them by mistake.

To restore the missing desktop icons ,just right-click your desktop,go to <strong>view</strong> then check <strong>show desktop icons</strong>

<strong><a href="http://www.tips5.com/windows-7-desktop-icons-missing-disappear/showdesktopicons" rel="attachment wp-att-543"><img class="aligncenter size-full wp-image-543" title="showdesktopicons" src="http://www.tips5.com/wp-content/uploads/2011/09/showdesktopicons.png" alt="" width="412" height="243" /></a></strong>

The same way,you can restore your missing gadgets by checking<em> show desktop gadgets</em>

Tip:You also can right-click an empty area on the desktop then go to <strong>view</strong> to <a title="Change network location type in Windows 7" href="http://www.windows7home.net/windows-7-change-desktop-icon-size/" target="_blank">change desktop icon size </a>in windows 7]]></description>
		<wfw:commentRss>http://www.tips5.com/windows-7-desktop-icons-missing-disappear/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable or disable built-in administrator account in Windows 7</title>
		<link>http://www.tips5.com/enable-or-disable-built-in-administrator-account-in-windows-7</link>
		<comments>http://www.tips5.com/enable-or-disable-built-in-administrator-account-in-windows-7#comments</comments>
		<pubDate>Thu, 01 Sep 2011 13:11:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.tips5.com/?p=526</guid>
		<description><![CDATA[Note:To enable or disable the built-bin administrator account in windows 7,you must already get the administrators privilege.
1.Right-click <strong>My Computer</strong> and click <strong>Manage</strong>

<strong><a rel="attachment wp-att-527" href="http://www.tips5.com/enable-or-disable-built-in-administrator-account-in-windows-7/mycomputermanage"><img class="aligncenter size-full wp-image-527" title="mycomputermanage" src="http://www.tips5.com/wp-content/uploads/2011/09/mycomputermanage.png" alt="" width="408" height="251" /></a>
</strong>

2.In the left pane,browse to <strong>Local Users and Groups / Users </strong>

 <a rel="attachment wp-att-533" href="http://www.tips5.com/enable-or-disable-built-in-administrator-account-in-windows-7/manageruser"><img class="aligncenter size-medium wp-image-533" title="manageruser" src="http://www.tips5.com/wp-content/uploads/2011/09/manageruser-500x345.png" alt="" width="500" height="345" /></a>

3.In the right pane of <strong>Users </strong>,double click <strong>Administrator </strong>,check or clear the check box of  "<strong>Account is disabled</strong>" to disable or enable administrator account in windows 7.

 <a rel="attachment wp-att-534" href="http://www.tips5.com/enable-or-disable-built-in-administrator-account-in-windows-7/accountisdisabled"><img class="aligncenter size-full wp-image-534" title="accountisdisabled" src="http://www.tips5.com/wp-content/uploads/2011/09/accountisdisabled.png" alt="" width="378" height="354" /></a>

Tip:1.You also can use command line or Local Security Policy Editor the enable or disable administrator account in windows 7,refer below post
<h3><a title="enable or disable administrator account in windows 7" href="http://www.windows7home.net/how-to-enable-or-disable-administrator-account-in-windows-7/" target="_blank">Enable or disable administrator account in windows 7</a></h3>
2.If you want to only hide administrator account from logon screen ,you can refer
<h3><a title="Hide user account from welcome screen in windows 7" href="http://www.windows7home.net/hide-user-account-from-welcome-screen-in-windows-7/" target="_blank">Hide user account from welcome screen in windows 7</a></h3>]]></description>
		<wfw:commentRss>http://www.tips5.com/enable-or-disable-built-in-administrator-account-in-windows-7/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

