<?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>Kiss Note &#187; Tips Everyday</title>
	<atom:link href="http://kissnote.com/topics/tips-everyday/feed/" rel="self" type="application/rss+xml" />
	<link>http://kissnote.com</link>
	<description>Keep IT Simple and Stupid</description>
	<lastBuildDate>Mon, 17 May 2010 17:19:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to reset the root password on Linux</title>
		<link>http://kissnote.com/2010/05/17/how-to-reset-the-root-password-on-linux/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://kissnote.com/2010/05/17/how-to-reset-the-root-password-on-linux/#comments</comments>
		<pubDate>Mon, 17 May 2010 17:18:53 +0000</pubDate>
		<dc:creator>shengjie</dc:creator>
				<category><![CDATA[Tips Everyday]]></category>
		<category><![CDATA[linux tips]]></category>

		<guid isPermaLink="false">http://kissnote.com/?p=251</guid>
		<description><![CDATA[Today, i had a big hassle earlier on by accidentally changed my linux password policy and set the expiration for all the password a date before the current time That proves again Monday Morning is always not the most effective day during the week. LOL But i managed to reset the password following this video, [...]]]></description>
			<content:encoded><![CDATA[<p>Today, i had a big hassle earlier on by accidentally changed my linux password policy and set the expiration for all the password a date before the current time <img src='http://kissnote.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  That proves again Monday Morning is always not the most effective day during the week. LOL</p>
<p>But i managed to reset the password following this video, very good one.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/AkENYv7kEhg&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/AkENYv7kEhg&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Put it here in case you guys make the stupid mistake as i did today <img src='http://kissnote.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<a href="http://www.youtube.com/watch?v=AkENYv7kEhg&amp;feature=player_embedded"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://kissnote.com/2010/05/17/how-to-reset-the-root-password-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to mount remote windows drive to linux</title>
		<link>http://kissnote.com/2010/04/21/how-to-mount-remote-windows-drive-to-linux/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://kissnote.com/2010/04/21/how-to-mount-remote-windows-drive-to-linux/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 13:06:43 +0000</pubDate>
		<dc:creator>shengjie</dc:creator>
				<category><![CDATA[Tips Everyday]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mount]]></category>

		<guid isPermaLink="false">http://kissnote.com/?p=197</guid>
		<description><![CDATA[To remotely mount your windows driver to linux: eg. mount d drive, ﻿mount -t cifs -o username=${user},password=${password} //${IP}/d$ /mnt/windowsdriver t: file system tile (cifs or nfs, ntfs) o:options]]></description>
			<content:encoded><![CDATA[<p>To remotely mount your windows driver to linux:</p>
<p>eg. mount d drive,</p>
<p>﻿mount -t cifs -o username=${user},password=${password} //${IP}/d$ /mnt/windowsdriver</p>
<p>t: file system tile (cifs or nfs, ntfs)</p>
<p>o:options</p>
]]></content:encoded>
			<wfw:commentRss>http://kissnote.com/2010/04/21/how-to-mount-remote-windows-drive-to-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jar command</title>
		<link>http://kissnote.com/2009/06/29/jar-command/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://kissnote.com/2009/06/29/jar-command/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 15:05:21 +0000</pubDate>
		<dc:creator>shengjie</dc:creator>
				<category><![CDATA[Tips Everyday]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[jar]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://kissnote.com/?p=151</guid>
		<description><![CDATA[//create Jar file jar -cmf c:create f:file m:manifast eg. jar -cmf -C ./workspace/jar-test/classes myJarTest.jar *.class //Extract Jar file jar -xf x:extract f:file eg. jar -xf myJarTest.jar // update jar file jar -uf u: update eg. jar uf foo.jar foo.class //list jar file content as a table jar -tf t:table eg. jar -tf myJarTest.jar]]></description>
			<content:encoded><![CDATA[<p>//create Jar file</p>
<p><strong>jar -cmf </strong></p>
<p>c:create</p>
<p>f:file</p>
<p>m:manifast</p>
<p>eg. jar -cmf -C ./workspace/jar-test/classes myJarTest.jar *.class</p>
<p>//Extract Jar file</p>
<p><strong>jar -xf</strong></p>
<p>x:extract</p>
<p>f:file</p>
<p>eg. jar -xf myJarTest.jar</p>
<p>// update jar file</p>
<p><strong>jar -uf</strong></p>
<p>u: update<strong><br />
</strong></p>
<p>eg. jar uf foo.jar foo.class</p>
<p>//list jar file content as a table</p>
<p><strong>jar -tf</strong></p>
<p>t:table</p>
<p>eg. jar -tf myJarTest.jar</p>
]]></content:encoded>
			<wfw:commentRss>http://kissnote.com/2009/06/29/jar-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>如何结束占用端口的线程</title>
		<link>http://kissnote.com/2009/05/15/%e5%a6%82%e4%bd%95%e7%bb%93%e6%9d%9f%e5%8d%a0%e7%94%a8%e7%ab%af%e5%8f%a3%e7%9a%84%e7%ba%bf%e7%a8%8b/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://kissnote.com/2009/05/15/%e5%a6%82%e4%bd%95%e7%bb%93%e6%9d%9f%e5%8d%a0%e7%94%a8%e7%ab%af%e5%8f%a3%e7%9a%84%e7%ba%bf%e7%a8%8b/#comments</comments>
		<pubDate>Fri, 15 May 2009 16:43:03 +0000</pubDate>
		<dc:creator>shengjie</dc:creator>
				<category><![CDATA[Tips Everyday]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[端口]]></category>
		<category><![CDATA[线程]]></category>

		<guid isPermaLink="false">http://blogs.kissnote.com/?p=28</guid>
		<description><![CDATA[比如80端口被占用 （qq音乐开机占用我的80或者是8080端口）。如果你不清楚哪个程序在占用你的端口的话。 windows: netstat -aon  //找出哪个线程在占用你的80端口，eg.35454线程在占用80端口。 taskkill /pid 35454 //结束占用80端口的程序，现在80端口就可用了。 linux: lsof -P &#124; grep 80 kill 35454]]></description>
			<content:encoded><![CDATA[<p>比如80端口被占用 （qq音乐开机占用我的80或者是8080端口）。如果你不清楚哪个程序在占用你的端口的话。</p>
<p><strong>windows:<br />
</strong></p>
<p>netstat -aon  //找出哪个线程在占用你的80端口，eg.35454线程在占用80端口。</p>
<p>taskkill /pid 35454 //结束占用80端口的程序，现在80端口就可用了。</p>
<p><strong>linux:</strong></p>
<p>lsof -P | grep 80</p>
<p>kill 35454</p>
]]></content:encoded>
			<wfw:commentRss>http://kissnote.com/2009/05/15/%e5%a6%82%e4%bd%95%e7%bb%93%e6%9d%9f%e5%8d%a0%e7%94%a8%e7%ab%af%e5%8f%a3%e7%9a%84%e7%ba%bf%e7%a8%8b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sql基于时间查询(select)</title>
		<link>http://kissnote.com/2009/05/15/hello-world/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://kissnote.com/2009/05/15/hello-world/#comments</comments>
		<pubDate>Fri, 15 May 2009 11:18:09 +0000</pubDate>
		<dc:creator>shengjie</dc:creator>
				<category><![CDATA[Tips Everyday]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http:/?p=1</guid>
		<description><![CDATA[返回所有posts表中，2009年5月13号到16号的记录。created是posts表的timestamp。 select * from posts where date(created) bettwen date(2009-05-13) and date(2009-05-16) 除了date()，还有year(),month(),day()可以使用。year(2009-05-13) 返回2009，month(2009-05-13)返回05，day(2009-05-13)返回13 Happy Coding&#8230;]]></description>
			<content:encoded><![CDATA[<p>返回所有posts表中，2009年5月13号到16号的记录。created是posts表的timestamp。</p>
<p>select * from posts where date(created) bettwen date(2009-05-13) and date(2009-05-16)</p>
<p>除了date()，还有year(),month(),day()可以使用。year(2009-05-13) 返回2009，month(2009-05-13)返回05，day(2009-05-13)返回13</p>
<p>Happy Coding&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://kissnote.com/2009/05/15/hello-world/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
