<?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"
	>

<channel>
	<title>Systems Thoughts</title>
	<atom:link href="http://blog.systemsthoughts.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.systemsthoughts.com</link>
	<description>关于IT，技术，互联网及其他，中国人在瑞典。About IT, technology and lots more. A Chinese in Sweden.</description>
	<pubDate>Fri, 20 Nov 2009 12:58:40 +0000</pubDate>
	
	<language>en</language>
			<item>
		<title>Python 2.6.2 subprocess在linux下不能传递参数的处理</title>
		<link>http://blog.systemsthoughts.com/2009/11/python-262-subprocess%e5%9c%a8linux%e4%b8%8b%e4%b8%8d%e8%83%bd%e4%bc%a0%e9%80%92%e5%8f%82%e6%95%b0%e7%9a%84%e5%a4%84%e7%90%86.html</link>
		<comments>http://blog.systemsthoughts.com/2009/11/python-262-subprocess%e5%9c%a8linux%e4%b8%8b%e4%b8%8d%e8%83%bd%e4%bc%a0%e9%80%92%e5%8f%82%e6%95%b0%e7%9a%84%e5%a4%84%e7%90%86.html#comments</comments>
		<pubDate>Fri, 20 Nov 2009 12:58:40 +0000</pubDate>
		<dc:creator>linuxcity</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[python]]></category>

		<category><![CDATA[subprocess]]></category>

		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.systemsthoughts.com/?p=538</guid>
		<description><![CDATA[好长的标题&#8230;我有一个控制Vmware虚拟机的脚本，但是在Windows下正常在Linux下却不能用，当然我不能忍受Windows下虚拟机的速度。
出错的地方在这里:
p = subprocess.Popen(["vmrun", params], shell = True, stdout=subprocess.PIPE)
然后params不能传到vmrun这个命令，虚拟机跑不起来。后来Google了一下，发现是个Bug. 只要把/usr/lib/python-2.6.2/Lib/subprocess.py里第990行改成
args = ["/bin/sh", "-c"] + [" ".join(args)]
就好了。可是我找了半天没找到Ubuntu下Python的test目录在哪里，test_subprocess.py找不到。。。

© linuxcity for Systems Thoughts, 2009. &#124;
Permalink &#124;
没有评论呢还 &#124;
Add to
del.icio.us

Post tags: Linux, python, subprocess, ubuntu

Feed enhanced by Better Feed from  Ozh
]]></description>
			<content:encoded><![CDATA[<p>好长的标题&#8230;我有一个控制Vmware虚拟机的脚本，但是在Windows下正常在Linux下却不能用，当然我不能忍受Windows下虚拟机的速度。<br />
出错的地方在这里:</p>
<blockquote><p><code>p = subprocess.Popen(["vmrun", params], shell = True, stdout=subprocess.PIPE)</code></p></blockquote>
<p>然后params不能传到vmrun这个命令，虚拟机跑不起来。后来Google了一下，发现是个<a href="http://bugs.python.org/issue6689" target="_blank">Bug</a>. 只要把/usr/lib/python-2.6.2/Lib/subprocess.py里第990行改成</p>
<blockquote><p><code>args = ["/bin/sh", "-c"] + [" ".join(args)]</code></p></blockquote>
<p>就好了。可是我找了半天没找到Ubuntu下Python的test目录在哪里，test_subprocess.py找不到。。。</p>
<hr />
<p><small>© linuxcity for <a href="http://blog.systemsthoughts.com">Systems Thoughts</a>, 2009. |
<a href="http://blog.systemsthoughts.com/2009/11/python-262-subprocess%e5%9c%a8linux%e4%b8%8b%e4%b8%8d%e8%83%bd%e4%bc%a0%e9%80%92%e5%8f%82%e6%95%b0%e7%9a%84%e5%a4%84%e7%90%86.html">Permalink</a> |
<a href="http://blog.systemsthoughts.com/2009/11/python-262-subprocess%e5%9c%a8linux%e4%b8%8b%e4%b8%8d%e8%83%bd%e4%bc%a0%e9%80%92%e5%8f%82%e6%95%b0%e7%9a%84%e5%a4%84%e7%90%86.html#comments">没有评论呢还</a> |
Add to
<a href="http://del.icio.us/post?url=http://blog.systemsthoughts.com/2009/11/python-262-subprocess%e5%9c%a8linux%e4%b8%8b%e4%b8%8d%e8%83%bd%e4%bc%a0%e9%80%92%e5%8f%82%e6%95%b0%e7%9a%84%e5%a4%84%e7%90%86.html&title=Python 2.6.2 subprocess在linux下不能传递参数的处理">del.icio.us</a>
<br/>
Post tags: <a href="http://blog.systemsthoughts.com/tag/linux" rel="tag">Linux</a>, <a href="http://blog.systemsthoughts.com/tag/python" rel="tag">python</a>, <a href="http://blog.systemsthoughts.com/tag/subprocess" rel="tag">subprocess</a>, <a href="http://blog.systemsthoughts.com/tag/ubuntu" rel="tag">ubuntu</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.systemsthoughts.com/2009/11/python-262-subprocess%e5%9c%a8linux%e4%b8%8b%e4%b8%8d%e8%83%bd%e4%bc%a0%e9%80%92%e5%8f%82%e6%95%b0%e7%9a%84%e5%a4%84%e7%90%86.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Awesome不awesome</title>
		<link>http://blog.systemsthoughts.com/2009/11/awesome%e4%b8%8dawesome.html</link>
		<comments>http://blog.systemsthoughts.com/2009/11/awesome%e4%b8%8dawesome.html#comments</comments>
		<pubDate>Mon, 09 Nov 2009 16:30:00 +0000</pubDate>
		<dc:creator>linuxcity</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[想法]]></category>

		<category><![CDATA[awesome]]></category>

		<guid isPermaLink="false">http://blog.systemsthoughts.com/?p=531</guid>
		<description><![CDATA[用了几个月的Awesome了，几点感受。
1. 配置一开始太他妈难学了。（现在好些了，知道怎么Ctrl+C Ctrl+V了)
2. 非常快。
3. 这个名字起的很失败，用Google搜很容易搜出一堆没用的渣出来。
4. 很酷。
过两天把我的配置贴上来

© linuxcity for Systems Thoughts, 2009. &#124;
Permalink &#124;
没有评论呢还 &#124;
Add to
del.icio.us

Post tags: awesome, Linux

Feed enhanced by Better Feed from  Ozh
]]></description>
			<content:encoded><![CDATA[<p>用了几个月的Awesome了，几点感受。</p>
<p>1. 配置一开始太他妈难学了。（现在好些了，知道怎么Ctrl+C Ctrl+V了)<br />
2. 非常快。<br />
3. 这个名字起的很失败，用Google搜很容易搜出一堆没用的渣出来。<br />
4. 很酷。</p>
<p>过两天把我的配置贴上来</p>
<hr />
<p><small>© linuxcity for <a href="http://blog.systemsthoughts.com">Systems Thoughts</a>, 2009. |
<a href="http://blog.systemsthoughts.com/2009/11/awesome%e4%b8%8dawesome.html">Permalink</a> |
<a href="http://blog.systemsthoughts.com/2009/11/awesome%e4%b8%8dawesome.html#comments">没有评论呢还</a> |
Add to
<a href="http://del.icio.us/post?url=http://blog.systemsthoughts.com/2009/11/awesome%e4%b8%8dawesome.html&title=Awesome不awesome">del.icio.us</a>
<br/>
Post tags: <a href="http://blog.systemsthoughts.com/tag/awesome" rel="tag">awesome</a>, <a href="http://blog.systemsthoughts.com/tag/linux" rel="tag">Linux</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.systemsthoughts.com/2009/11/awesome%e4%b8%8dawesome.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>最近在看二战历史</title>
		<link>http://blog.systemsthoughts.com/2009/10/%e6%9c%80%e8%bf%91%e5%9c%a8%e7%9c%8b%e4%ba%8c%e6%88%98%e5%8e%86%e5%8f%b2.html</link>
		<comments>http://blog.systemsthoughts.com/2009/10/%e6%9c%80%e8%bf%91%e5%9c%a8%e7%9c%8b%e4%ba%8c%e6%88%98%e5%8e%86%e5%8f%b2.html#comments</comments>
		<pubDate>Tue, 13 Oct 2009 18:15:29 +0000</pubDate>
		<dc:creator>linuxcity</dc:creator>
		
		<category><![CDATA[Fun]]></category>

		<category><![CDATA[想法]]></category>

		<category><![CDATA[欧洲，历史]]></category>

		<guid isPermaLink="false">http://blog.systemsthoughts.com/?p=528</guid>
		<description><![CDATA[最近在看纪录片the complete history of world war 2，以前上学时怎么每觉得历史这么有意思呢？几点感受

前两集基本上是德国的独角戏，意大利喜欢捡软柿子捏，西班牙露了一下脸就没了，日本最后把欧洲大战打成了世界大战，事实上如果他们早点打或者晚点打世界大战就打不起来了可能。
匈牙利原来是个大国，可惜后来被英法割了，谁让它投靠错了对象呢（还投靠错了两次）。不过这些国家离德国这么近可能当时政府也有顾虑吧，加上德国后裔在这些国家也很多，我女友就有部分德国血统。
英法俄都很恶心，以为把小国卖了自己就没事了。出来混早晚要还的。
瑞典丹麦保持中立，不过卖给德国不少资源，发了战争财。
民族主义和爱国主义很容易产生希特勒这样的救世主似的独裁者。


© linuxcity for Systems Thoughts, 2009. &#124;
Permalink &#124;
没有评论呢还 &#124;
Add to
del.icio.us

Post tags: 欧洲，历史

Feed enhanced by Better Feed from  Ozh
]]></description>
			<content:encoded><![CDATA[<p>最近在看纪录片the complete history of world war 2，以前上学时怎么每觉得历史这么有意思呢？几点感受</p>
<ol>
<li>前两集基本上是德国的独角戏，意大利喜欢捡软柿子捏，西班牙露了一下脸就没了，日本最后把欧洲大战打成了世界大战，事实上如果他们早点打或者晚点打世界大战就打不起来了可能。</li>
<li>匈牙利原来是个大国，可惜后来被英法割了，谁让它投靠错了对象呢（还投靠错了两次）。不过这些国家离德国这么近可能当时政府也有顾虑吧，加上德国后裔在这些国家也很多，我女友就有部分德国血统。</li>
<li>英法俄都很恶心，以为把小国卖了自己就没事了。出来混早晚要还的。</li>
<li>瑞典丹麦保持中立，不过卖给德国不少资源，发了战争财。</li>
<li>民族主义和爱国主义很容易产生希特勒这样的救世主似的独裁者。</li>
</ol>
<hr />
<p><small>© linuxcity for <a href="http://blog.systemsthoughts.com">Systems Thoughts</a>, 2009. |
<a href="http://blog.systemsthoughts.com/2009/10/%e6%9c%80%e8%bf%91%e5%9c%a8%e7%9c%8b%e4%ba%8c%e6%88%98%e5%8e%86%e5%8f%b2.html">Permalink</a> |
<a href="http://blog.systemsthoughts.com/2009/10/%e6%9c%80%e8%bf%91%e5%9c%a8%e7%9c%8b%e4%ba%8c%e6%88%98%e5%8e%86%e5%8f%b2.html#comments">没有评论呢还</a> |
Add to
<a href="http://del.icio.us/post?url=http://blog.systemsthoughts.com/2009/10/%e6%9c%80%e8%bf%91%e5%9c%a8%e7%9c%8b%e4%ba%8c%e6%88%98%e5%8e%86%e5%8f%b2.html&title=最近在看二战历史">del.icio.us</a>
<br/>
Post tags: <a href="http://blog.systemsthoughts.com/tag/%e6%ac%a7%e6%b4%b2%ef%bc%8c%e5%8e%86%e5%8f%b2" rel="tag">欧洲，历史</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.systemsthoughts.com/2009/10/%e6%9c%80%e8%bf%91%e5%9c%a8%e7%9c%8b%e4%ba%8c%e6%88%98%e5%8e%86%e5%8f%b2.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Petra的画，又来了/Another drawing from Petra</title>
		<link>http://blog.systemsthoughts.com/2009/09/petra%e7%9a%84%e7%94%bb%ef%bc%8c%e5%8f%88%e6%9d%a5%e4%ba%86another-drawing-from-petra.html</link>
		<comments>http://blog.systemsthoughts.com/2009/09/petra%e7%9a%84%e7%94%bb%ef%bc%8c%e5%8f%88%e6%9d%a5%e4%ba%86another-drawing-from-petra.html#comments</comments>
		<pubDate>Tue, 22 Sep 2009 15:53:47 +0000</pubDate>
		<dc:creator>linuxcity</dc:creator>
		
		<category><![CDATA[English]]></category>

		<category><![CDATA[Love]]></category>

		<category><![CDATA[drawing]]></category>

		<category><![CDATA[petra]]></category>

		<guid isPermaLink="false">http://blog.systemsthoughts.com/?p=518</guid>
		<description><![CDATA[
This is what will happen if I spend too much time with my lovely computer again&#8230;.
下次我再玩电脑玩入迷的下场就是这个&#8230;

© linuxcity for Systems Thoughts, 2009. &#124;
Permalink &#124;
有一个评论 &#124;
Add to
del.icio.us

Post tags: drawing, English, petra

Feed enhanced by Better Feed from  Ozh
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://share.ovi.com/media/linuxcity.public/linuxcity.10073"><img class="aligncenter" title="Poor me.. - Share on Ovi" src="http://media.share.ovi.com/m1/lt/1213/1f707689f168445198d5d350c7b6d33c.jpg" border="0" alt="Poor me.. - Share on Ovi" width="280" height="238" /></a></p>
<p>This is what will happen if I spend too much time with my lovely computer again&#8230;.</p>
<p>下次我再玩电脑玩入迷的下场就是这个&#8230;</p>
<hr />
<p><small>© linuxcity for <a href="http://blog.systemsthoughts.com">Systems Thoughts</a>, 2009. |
<a href="http://blog.systemsthoughts.com/2009/09/petra%e7%9a%84%e7%94%bb%ef%bc%8c%e5%8f%88%e6%9d%a5%e4%ba%86another-drawing-from-petra.html">Permalink</a> |
<a href="http://blog.systemsthoughts.com/2009/09/petra%e7%9a%84%e7%94%bb%ef%bc%8c%e5%8f%88%e6%9d%a5%e4%ba%86another-drawing-from-petra.html#comments">有一个评论</a> |
Add to
<a href="http://del.icio.us/post?url=http://blog.systemsthoughts.com/2009/09/petra%e7%9a%84%e7%94%bb%ef%bc%8c%e5%8f%88%e6%9d%a5%e4%ba%86another-drawing-from-petra.html&title=Petra的画，又来了/Another drawing from Petra">del.icio.us</a>
<br/>
Post tags: <a href="http://blog.systemsthoughts.com/tag/drawing" rel="tag">drawing</a>, <a href="http://blog.systemsthoughts.com/tag/english-articles" rel="tag">English</a>, <a href="http://blog.systemsthoughts.com/tag/petra" rel="tag">petra</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.systemsthoughts.com/2009/09/petra%e7%9a%84%e7%94%bb%ef%bc%8c%e5%8f%88%e6%9d%a5%e4%ba%86another-drawing-from-petra.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>在后台运行Python脚本服务</title>
		<link>http://blog.systemsthoughts.com/2009/09/%e5%9c%a8%e5%90%8e%e5%8f%b0%e8%bf%90%e8%a1%8cpython%e8%84%9a%e6%9c%ac%e6%9c%8d%e5%8a%a1.html</link>
		<comments>http://blog.systemsthoughts.com/2009/09/%e5%9c%a8%e5%90%8e%e5%8f%b0%e8%bf%90%e8%a1%8cpython%e8%84%9a%e6%9c%ac%e6%9c%8d%e5%8a%a1.html#comments</comments>
		<pubDate>Mon, 21 Sep 2009 14:21:49 +0000</pubDate>
		<dc:creator>linuxcity</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[小技巧]]></category>

		<category><![CDATA[技术]]></category>

		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://blog.systemsthoughts.com/?p=515</guid>
		<description><![CDATA[最近写了个GTalk机器人，就一个脚本，但是我需要它24小时在服务器跑着，于是乎在网上搜不被ssh切断的方法。
你要是想python robot.py &#38; 是不行的，一旦用户登出，脚本就自动退出了。用at, cron也可以实现不过我发现了一个命令
nohup，可以忽略登出的信号，现在只要
nohup python robot.py &#38;
就好了。

© linuxcity for Systems Thoughts, 2009. &#124;
Permalink &#124;
有 2 个评论 &#124;
Add to
del.icio.us

Post tags: Linux, python

Feed enhanced by Better Feed from  Ozh
]]></description>
			<content:encoded><![CDATA[<p>最近写了个GTalk机器人，就一个脚本，但是我需要它24小时在服务器跑着，于是乎在网上搜不被ssh切断的方法。</p>
<p>你要是想python robot.py &amp; 是不行的，一旦用户登出，脚本就自动退出了。用at, cron也可以实现不过我发现了一个命令</p>
<p>nohup，可以忽略登出的信号，现在只要</p>
<p>nohup python robot.py &amp;<br />
就好了。</p>
<hr />
<p><small>© linuxcity for <a href="http://blog.systemsthoughts.com">Systems Thoughts</a>, 2009. |
<a href="http://blog.systemsthoughts.com/2009/09/%e5%9c%a8%e5%90%8e%e5%8f%b0%e8%bf%90%e8%a1%8cpython%e8%84%9a%e6%9c%ac%e6%9c%8d%e5%8a%a1.html">Permalink</a> |
<a href="http://blog.systemsthoughts.com/2009/09/%e5%9c%a8%e5%90%8e%e5%8f%b0%e8%bf%90%e8%a1%8cpython%e8%84%9a%e6%9c%ac%e6%9c%8d%e5%8a%a1.html#comments">有 2 个评论</a> |
Add to
<a href="http://del.icio.us/post?url=http://blog.systemsthoughts.com/2009/09/%e5%9c%a8%e5%90%8e%e5%8f%b0%e8%bf%90%e8%a1%8cpython%e8%84%9a%e6%9c%ac%e6%9c%8d%e5%8a%a1.html&title=在后台运行Python脚本服务">del.icio.us</a>
<br/>
Post tags: <a href="http://blog.systemsthoughts.com/tag/linux" rel="tag">Linux</a>, <a href="http://blog.systemsthoughts.com/tag/python" rel="tag">python</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.systemsthoughts.com/2009/09/%e5%9c%a8%e5%90%8e%e5%8f%b0%e8%bf%90%e8%a1%8cpython%e8%84%9a%e6%9c%ac%e6%9c%8d%e5%8a%a1.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>瑞典的青少年性教育</title>
		<link>http://blog.systemsthoughts.com/2009/09/%e7%91%9e%e5%85%b8%e7%9a%84%e9%9d%92%e5%b0%91%e5%b9%b4%e6%80%a7%e6%95%99%e8%82%b2.html</link>
		<comments>http://blog.systemsthoughts.com/2009/09/%e7%91%9e%e5%85%b8%e7%9a%84%e9%9d%92%e5%b0%91%e5%b9%b4%e6%80%a7%e6%95%99%e8%82%b2.html#comments</comments>
		<pubDate>Thu, 17 Sep 2009 13:19:49 +0000</pubDate>
		<dc:creator>linuxcity</dc:creator>
		
		<category><![CDATA[想法]]></category>

		<category><![CDATA[中国]]></category>

		<category><![CDATA[文化]]></category>

		<category><![CDATA[瑞典]]></category>

		<guid isPermaLink="false">http://blog.systemsthoughts.com/?p=506</guid>
		<description><![CDATA[今天从论坛里看到了一个瑞典青少年教育的网站，上边还有性教育的内容，从自慰技巧到第一次性交到肛交内容全都有。什么叫差距？这就是差距。当然和亚洲传统文化也是分不开的，不过大家实际上大家都明白洪水只能导，不能堵，避而不谈只能产生更多问题。而且中国也把性话题看的太重了些，什么时候国家电视台23点后开始放成人节目了，才能说我们真正进步了，而那个时候也没有人把这个话题看这么重了。
这个网站在http://www.umo.se/Sex/我也要补充一下我的知识了，为了自己也为了她。

© linuxcity for Systems Thoughts, 2009. &#124;
Permalink &#124;
有一个评论 &#124;
Add to
del.icio.us

Post tags: 中国, 文化, 瑞典

Feed enhanced by Better Feed from  Ozh
]]></description>
			<content:encoded><![CDATA[<p>今天从论坛里看到了一个瑞典青少年教育的网站，上边还有性教育的内容，从自慰技巧到第一次性交到肛交内容全都有。什么叫差距？这就是差距。当然和亚洲传统文化也是分不开的，不过大家实际上大家都明白洪水只能导，不能堵，避而不谈只能产生更多问题。而且中国也把性话题看的太重了些，什么时候国家电视台23点后开始放成人节目了，才能说我们真正进步了，而那个时候也没有人把这个话题看这么重了。</p>
<p>这个网站在<a href="http://www.umo.se/Sex/" target="_blank">http://www.umo.se/Sex/</a>我也要补充一下我的知识了，为了自己也为了她。</p>
<hr />
<p><small>© linuxcity for <a href="http://blog.systemsthoughts.com">Systems Thoughts</a>, 2009. |
<a href="http://blog.systemsthoughts.com/2009/09/%e7%91%9e%e5%85%b8%e7%9a%84%e9%9d%92%e5%b0%91%e5%b9%b4%e6%80%a7%e6%95%99%e8%82%b2.html">Permalink</a> |
<a href="http://blog.systemsthoughts.com/2009/09/%e7%91%9e%e5%85%b8%e7%9a%84%e9%9d%92%e5%b0%91%e5%b9%b4%e6%80%a7%e6%95%99%e8%82%b2.html#comments">有一个评论</a> |
Add to
<a href="http://del.icio.us/post?url=http://blog.systemsthoughts.com/2009/09/%e7%91%9e%e5%85%b8%e7%9a%84%e9%9d%92%e5%b0%91%e5%b9%b4%e6%80%a7%e6%95%99%e8%82%b2.html&title=瑞典的青少年性教育">del.icio.us</a>
<br/>
Post tags: <a href="http://blog.systemsthoughts.com/tag/%e4%b8%ad%e5%9b%bd" rel="tag">中国</a>, <a href="http://blog.systemsthoughts.com/tag/%e6%96%87%e5%8c%96" rel="tag">文化</a>, <a href="http://blog.systemsthoughts.com/tag/%e7%91%9e%e5%85%b8" rel="tag">瑞典</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.systemsthoughts.com/2009/09/%e7%91%9e%e5%85%b8%e7%9a%84%e9%9d%92%e5%b0%91%e5%b9%b4%e6%80%a7%e6%95%99%e8%82%b2.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Windows下用CygWIN安装OpenSSH服务</title>
		<link>http://blog.systemsthoughts.com/2009/09/windows%e4%b8%8b%e7%94%a8cygwin%e5%ae%89%e8%a3%85openssh%e6%9c%8d%e5%8a%a1.html</link>
		<comments>http://blog.systemsthoughts.com/2009/09/windows%e4%b8%8b%e7%94%a8cygwin%e5%ae%89%e8%a3%85openssh%e6%9c%8d%e5%8a%a1.html#comments</comments>
		<pubDate>Thu, 17 Sep 2009 13:12:05 +0000</pubDate>
		<dc:creator>linuxcity</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Tips]]></category>

		<category><![CDATA[小技巧]]></category>

		<category><![CDATA[技术]]></category>

		<category><![CDATA[cygwin]]></category>

		<category><![CDATA[openssh]]></category>

		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://blog.systemsthoughts.com/?p=500</guid>
		<description><![CDATA[前上个月发现CygWIN这个好东东，一直在玩（因为女友的原因，家里的新机器一直没装Linux，用的Win 7)。喜欢控制一切的我，当然不满足于Windows的远程桌面拉，效率低下又丑陋，加上家里的Cisco路由器VPN一直设不好，搞得我Port Forward设烦了，还是用SSH爽。只是Windows下没有原生的OpenSSH服务软件好像，正好配一下CygWIN。(不喜欢配置的朋友可以直接用Copssh)
我是参考的这篇文章，就是作者思路比较混乱。
简单点说就是下载CygWIN，安装opensshd这个包。如果喜欢控制连接来源呢可以加上tcp_wrap这个包，不过hosts.allow要调试好，不然到了目的地发现连不上你就哭死了。保险起见可先加上
sshd: 0.0.0.0/0.0.0.0 : allow
然后就是注意要使用的用户一定要有密码，如果密码是后来加的要运行一下这两个命令：
mkpasswd   --local   &#62;   /etc/passwd
mkgroup   --local    &#62;   /etc/group

© linuxcity for Systems Thoughts, 2009. &#124;
Permalink &#124;
有 3 个评论 &#124;
Add to
del.icio.us

Post tags: cygwin, openssh, windows

Feed enhanced by Better Feed from  Ozh
]]></description>
			<content:encoded><![CDATA[<p>前上个月发现CygWIN这个好东东，一直在玩（因为女友的原因，家里的新机器一直没装Linux，用的Win 7)。喜欢控制一切的我，当然不满足于Windows的远程桌面拉，效率低下又丑陋，加上家里的Cisco路由器VPN一直设不好，搞得我Port Forward设烦了，还是用SSH爽。只是Windows下没有原生的OpenSSH服务软件好像，正好配一下CygWIN。(不喜欢配置的朋友可以直接用<a href="http://www.itefix.no/i2/copssh" target="_blank">Copssh</a>)</p>
<p>我是参考的这篇<a href="http://chinese-watercolor.com/LRP/printsrv/cygwin-sshd.html" target="_blank">文章</a>，就是作者思路比较混乱。</p>
<p>简单点说就是下载CygWIN，安装opensshd这个包。如果喜欢控制连接来源呢可以加上tcp_wrap这个包，不过hosts.allow要调试好，不然到了目的地发现连不上你就哭死了。保险起见可先加上</p>
<p><code>sshd: 0.0.0.0/0.0.0.0 : allow</code></p>
<p>然后就是注意要使用的用户一定要有密码，如果密码是后来加的要运行一下这两个命令：</p>
<blockquote><p><code>mkpasswd   --local   &gt;   /etc/passwd<br />
mkgroup   --local    &gt;   /etc/group</code></p></blockquote>
<hr />
<p><small>© linuxcity for <a href="http://blog.systemsthoughts.com">Systems Thoughts</a>, 2009. |
<a href="http://blog.systemsthoughts.com/2009/09/windows%e4%b8%8b%e7%94%a8cygwin%e5%ae%89%e8%a3%85openssh%e6%9c%8d%e5%8a%a1.html">Permalink</a> |
<a href="http://blog.systemsthoughts.com/2009/09/windows%e4%b8%8b%e7%94%a8cygwin%e5%ae%89%e8%a3%85openssh%e6%9c%8d%e5%8a%a1.html#comments">有 3 个评论</a> |
Add to
<a href="http://del.icio.us/post?url=http://blog.systemsthoughts.com/2009/09/windows%e4%b8%8b%e7%94%a8cygwin%e5%ae%89%e8%a3%85openssh%e6%9c%8d%e5%8a%a1.html&title=Windows下用CygWIN安装OpenSSH服务">del.icio.us</a>
<br/>
Post tags: <a href="http://blog.systemsthoughts.com/tag/cygwin" rel="tag">cygwin</a>, <a href="http://blog.systemsthoughts.com/tag/openssh" rel="tag">openssh</a>, <a href="http://blog.systemsthoughts.com/tag/windows" rel="tag">windows</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.systemsthoughts.com/2009/09/windows%e4%b8%8b%e7%94%a8cygwin%e5%ae%89%e8%a3%85openssh%e6%9c%8d%e5%8a%a1.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>布达佩斯照片若干(续)</title>
		<link>http://blog.systemsthoughts.com/2009/09/%e5%b8%83%e8%be%be%e4%bd%a9%e6%96%af%e7%85%a7%e7%89%87%e8%8b%a5%e5%b9%b2%e7%bb%ad.html</link>
		<comments>http://blog.systemsthoughts.com/2009/09/%e5%b8%83%e8%be%be%e4%bd%a9%e6%96%af%e7%85%a7%e7%89%87%e8%8b%a5%e5%b9%b2%e7%bb%ad.html#comments</comments>
		<pubDate>Sat, 12 Sep 2009 17:00:46 +0000</pubDate>
		<dc:creator>robot</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.systemsthoughts.com/2009/09/%e5%b8%83%e8%be%be%e4%bd%a9%e6%96%af%e7%85%a7%e7%89%87%e8%8b%a5%e5%b9%b2%e7%bb%ad.html</guid>
		<description><![CDATA[

© robot for Systems Thoughts, 2009. &#124;
Permalink &#124;
没有评论呢还 &#124;
Add to
del.icio.us

Post tags: 

Feed enhanced by Better Feed from  Ozh
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.yupoo.com/photos/view?id=ff80808123922e430123af2ed082086c"><img src="http://pic.yupoo.com/maverickml/6382680f48a5/small.jpg"></a><a href="http://www.yupoo.com/photos/view?id=ff80808123922e430123af2e5ed20869"><img src="http://pic.yupoo.com/maverickml/1221980f4886/small.jpg"></a><a href="http://www.yupoo.com/photos/view?id=ff8080812374bd3f0123af2dd9b4556a"><img src="http://pic.yupoo.com/maverickml/6647480f4863/small.jpg"></a><a href="http://www.yupoo.com/photos/view?id=ff8080812374bc7f0123af2d43254cf6"><img src="http://pic.yupoo.com/maverickml/5217280f483d/small.jpg"></a><a href="http://www.yupoo.com/photos/view?id=ff80808123922e430123af2c7abc0855"><img src="http://pic.yupoo.com/maverickml/6734280f480b/small.jpg"></a><a href="http://www.yupoo.com/photos/view?id=ff80808123922e430123af2c2dc10852"><img src="http://pic.yupoo.com/maverickml/9796580f47f7/small.jpg"></a><a href="http://www.yupoo.com/photos/view?id=ff80808123922c950123af2be98d0ca2"><img src="http://pic.yupoo.com/maverickml/6558580f47d6/small.jpg"></a><a href="http://www.yupoo.com/photos/view?id=ff8080812374bc7f0123af2b2a314ceb"><img src="http://pic.yupoo.com/maverickml/0622480f47b4/small.jpg"></a><a href="http://www.yupoo.com/photos/view?id=ff8080812374bd3f0123af28c52f5547"><img src="http://pic.yupoo.com/maverickml/5162380f4715/small.jpg"></a><a href="http://www.yupoo.com/photos/view?id=ff80808123922e430123af2975ba084c"><img src="http://pic.yupoo.com/maverickml/8893780f4745/small.jpg"></a></p>
<hr />
<p><small>© robot for <a href="http://blog.systemsthoughts.com">Systems Thoughts</a>, 2009. |
<a href="http://blog.systemsthoughts.com/2009/09/%e5%b8%83%e8%be%be%e4%bd%a9%e6%96%af%e7%85%a7%e7%89%87%e8%8b%a5%e5%b9%b2%e7%bb%ad.html">Permalink</a> |
<a href="http://blog.systemsthoughts.com/2009/09/%e5%b8%83%e8%be%be%e4%bd%a9%e6%96%af%e7%85%a7%e7%89%87%e8%8b%a5%e5%b9%b2%e7%bb%ad.html#comments">没有评论呢还</a> |
Add to
<a href="http://del.icio.us/post?url=http://blog.systemsthoughts.com/2009/09/%e5%b8%83%e8%be%be%e4%bd%a9%e6%96%af%e7%85%a7%e7%89%87%e8%8b%a5%e5%b9%b2%e7%bb%ad.html&title=布达佩斯照片若干(续)">del.icio.us</a>
<br/>
Post tags: <br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.systemsthoughts.com/2009/09/%e5%b8%83%e8%be%be%e4%bd%a9%e6%96%af%e7%85%a7%e7%89%87%e8%8b%a5%e5%b9%b2%e7%bb%ad.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>布达佩斯照片若干</title>
		<link>http://blog.systemsthoughts.com/2009/09/%e5%b8%83%e8%be%be%e4%bd%a9%e6%96%af%e7%85%a7%e7%89%87%e8%8b%a5%e5%b9%b2-2.html</link>
		<comments>http://blog.systemsthoughts.com/2009/09/%e5%b8%83%e8%be%be%e4%bd%a9%e6%96%af%e7%85%a7%e7%89%87%e8%8b%a5%e5%b9%b2-2.html#comments</comments>
		<pubDate>Sat, 12 Sep 2009 16:43:36 +0000</pubDate>
		<dc:creator>robot</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.systemsthoughts.com/2009/09/%e5%b8%83%e8%be%be%e4%bd%a9%e6%96%af%e7%85%a7%e7%89%87%e8%8b%a5%e5%b9%b2-2.html</guid>
		<description><![CDATA[

© robot for Systems Thoughts, 2009. &#124;
Permalink &#124;
没有评论呢还 &#124;
Add to
del.icio.us

Post tags: 

Feed enhanced by Better Feed from  Ozh
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.yupoo.com/photos/view?id=ff8080812374bc7f0123af13165e4bc0"><img src="http://pic.yupoo.com/maverickml/9392380f418b/small.jpg"></a><a href="http://www.yupoo.com/photos/view?id=ff80808123922c950123af1184b80b1e"><img src="http://pic.yupoo.com/maverickml/8540780f4115/small.jpg"></a><a href="http://www.yupoo.com/photos/view?id=ff80808123922c950123af10e94c0b18"><img src="http://pic.yupoo.com/maverickml/8369880f40ed/small.jpg"></a><a href="http://www.yupoo.com/photos/view?id=ff80808123922d710123aac649064780"><img src="http://pic.yupoo.com/maverickml/8595680e27bb/small.jpg"></a><a href="http://www.yupoo.com/photos/view?id=ff8080812374bc7f0123aac5e0e31254"><img src="http://pic.yupoo.com/maverickml/2630380e27a1/small.jpg"></a><a href="http://www.yupoo.com/photos/view?id=ff8080812374bc7f0123aac4ca09124d"><img src="http://pic.yupoo.com/maverickml/6949180e275a/small.jpg"></a><a href="http://www.yupoo.com/photos/view?id=ff8080812374bc7f0123aac3b337124c"><img src="http://pic.yupoo.com/maverickml/7711980e2712/small.jpg"></a><a href="http://www.yupoo.com/photos/view?id=ff80808123922ef10123aac3478e3e07"><img src="http://pic.yupoo.com/maverickml/1407780e26f6/small.jpg"></a><a href="http://www.yupoo.com/photos/view?id=ff8080812374bdf601239014caec7a9f"><img src="http://pic.yupoo.com/maverickml/53993807525c/small.jpg"></a><a href="http://www.yupoo.com/photos/view?id=ff8080812374bdf60123900a3d0e799b"><img src="http://pic.yupoo.com/maverickml/770628074fa9/small.jpg"></a></p>
<hr />
<p><small>© robot for <a href="http://blog.systemsthoughts.com">Systems Thoughts</a>, 2009. |
<a href="http://blog.systemsthoughts.com/2009/09/%e5%b8%83%e8%be%be%e4%bd%a9%e6%96%af%e7%85%a7%e7%89%87%e8%8b%a5%e5%b9%b2-2.html">Permalink</a> |
<a href="http://blog.systemsthoughts.com/2009/09/%e5%b8%83%e8%be%be%e4%bd%a9%e6%96%af%e7%85%a7%e7%89%87%e8%8b%a5%e5%b9%b2-2.html#comments">没有评论呢还</a> |
Add to
<a href="http://del.icio.us/post?url=http://blog.systemsthoughts.com/2009/09/%e5%b8%83%e8%be%be%e4%bd%a9%e6%96%af%e7%85%a7%e7%89%87%e8%8b%a5%e5%b9%b2-2.html&title=布达佩斯照片若干">del.icio.us</a>
<br/>
Post tags: <br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.systemsthoughts.com/2009/09/%e5%b8%83%e8%be%be%e4%bd%a9%e6%96%af%e7%85%a7%e7%89%87%e8%8b%a5%e5%b9%b2-2.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>该死的独生子女政策</title>
		<link>http://blog.systemsthoughts.com/2009/09/%e8%af%a5%e6%ad%bb%e7%9a%84%e7%8b%ac%e7%94%9f%e5%ad%90%e5%a5%b3%e6%94%bf%e7%ad%96.html</link>
		<comments>http://blog.systemsthoughts.com/2009/09/%e8%af%a5%e6%ad%bb%e7%9a%84%e7%8b%ac%e7%94%9f%e5%ad%90%e5%a5%b3%e6%94%bf%e7%ad%96.html#comments</comments>
		<pubDate>Tue, 08 Sep 2009 13:22:52 +0000</pubDate>
		<dc:creator>linuxcity</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.systemsthoughts.com/?p=494</guid>
		<description><![CDATA[最近一直在思考老妈的养老问题，以前从来没想过，但是现在问题日益严峻。看了几篇文章：
调查显示：近七成中青年渐感照顾父母力不从心 
独生子女的沉重未来
80后独生子女面临的赡养父母的问题
发现对于大多数80后这是普遍问题，在英国这个问题也有。总结了一下我的情况比他们还好些：

父亲去世，只有母亲一人
自己的工作目前还不错，母亲有退休金加部分医疗

然后主要问题：

居住在国外，有事不能及时回家
如果母亲搬过来住一方面新生活不能适应，一方面拿到人口号前生病买药会是大问题

现在还不知道下一步怎么走，不过只能走一步算一步了。庆幸自己生活在瑞典，那些在中国独生子女们可就倒霉了，国家是肯定不会管的，都是利用完了就自生自灭去了（想想插队，文化大革命，独生子女政策，晚婚晚育，扩招，相应国家号召的没有好下场）。以后如果要孩子，就一定不能只要一个孩子，要不然就不要孩子。说到这里我还是忍不住想问候中国共产党的母亲&#8230;

© linuxcity for Systems Thoughts, 2009. &#124;
Permalink &#124;
有 4 个评论 &#124;
Add to
del.icio.us

Post tags: 

Feed enhanced by Better Feed from  Ozh
]]></description>
			<content:encoded><![CDATA[<p>最近一直在思考老妈的养老问题，以前从来没想过，但是现在问题日益严峻。看了几篇文章：</p>
<p><a href="http://www.youth.cn/wrzn/wrzn/200907/t20090702_945672.htm" target="_blank">调查显示：近七成中青年渐感照顾父母力不从心 </a></p>
<p><a href="http://www.360doc.com/content/070618/18/4332_565924.html" target="_blank">独生子女的沉重未来</a></p>
<p><a href="http://www.tianya.cn/publicforum/content/free/1/1491579.shtml" target="_blank">80后独生子女面临的赡养父母的问题</a></p>
<p>发现对于大多数80后这是普遍问题，在英国这个问题也有。总结了一下我的情况比他们还好些：</p>
<ol>
<li>父亲去世，只有母亲一人</li>
<li>自己的工作目前还不错，母亲有退休金加部分医疗</li>
</ol>
<p>然后主要问题：</p>
<ol>
<li>居住在国外，有事不能及时回家</li>
<li>如果母亲搬过来住一方面新生活不能适应，一方面拿到人口号前生病买药会是大问题</li>
</ol>
<p>现在还不知道下一步怎么走，不过只能走一步算一步了。庆幸自己生活在瑞典，那些在中国独生子女们可就倒霉了，国家是肯定不会管的，都是利用完了就自生自灭去了（想想插队，文化大革命，独生子女政策，晚婚晚育，扩招，相应国家号召的没有好下场）。以后如果要孩子，就一定不能只要一个孩子，要不然就不要孩子。说到这里我还是忍不住想问候中国共产党的母亲&#8230;</p>
<hr />
<p><small>© linuxcity for <a href="http://blog.systemsthoughts.com">Systems Thoughts</a>, 2009. |
<a href="http://blog.systemsthoughts.com/2009/09/%e8%af%a5%e6%ad%bb%e7%9a%84%e7%8b%ac%e7%94%9f%e5%ad%90%e5%a5%b3%e6%94%bf%e7%ad%96.html">Permalink</a> |
<a href="http://blog.systemsthoughts.com/2009/09/%e8%af%a5%e6%ad%bb%e7%9a%84%e7%8b%ac%e7%94%9f%e5%ad%90%e5%a5%b3%e6%94%bf%e7%ad%96.html#comments">有 4 个评论</a> |
Add to
<a href="http://del.icio.us/post?url=http://blog.systemsthoughts.com/2009/09/%e8%af%a5%e6%ad%bb%e7%9a%84%e7%8b%ac%e7%94%9f%e5%ad%90%e5%a5%b3%e6%94%bf%e7%ad%96.html&title=该死的独生子女政策">del.icio.us</a>
<br/>
Post tags: <br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.systemsthoughts.com/2009/09/%e8%af%a5%e6%ad%bb%e7%9a%84%e7%8b%ac%e7%94%9f%e5%ad%90%e5%a5%b3%e6%94%bf%e7%ad%96.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
