<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Embedded Software Development for Wireless </title>
	<atom:link href="http://esdw.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://esdw.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Tue, 25 Oct 2011 15:47:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='esdw.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Embedded Software Development for Wireless </title>
		<link>http://esdw.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://esdw.wordpress.com/osd.xml" title="Embedded Software Development for Wireless " />
	<atom:link rel='hub' href='http://esdw.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Use boost:bind</title>
		<link>http://esdw.wordpress.com/2011/10/25/use-boostbind/</link>
		<comments>http://esdw.wordpress.com/2011/10/25/use-boostbind/#comments</comments>
		<pubDate>Tue, 25 Oct 2011 13:46:52 +0000</pubDate>
		<dc:creator>frankzhu28</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://esdw.wordpress.com/2011/10/25/use-boostbind/</guid>
		<description><![CDATA[http://www.boost.org/doc/libs/1_47_0/libs/bind/bind.html<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=esdw.wordpress.com&amp;blog=12636879&amp;post=54&amp;subd=esdw&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>http://www.boost.org/doc/libs/1_47_0/libs/bind/bind.html</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/esdw.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/esdw.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/esdw.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/esdw.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/esdw.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/esdw.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/esdw.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/esdw.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/esdw.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/esdw.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/esdw.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/esdw.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/esdw.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/esdw.wordpress.com/54/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=esdw.wordpress.com&amp;blog=12636879&amp;post=54&amp;subd=esdw&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://esdw.wordpress.com/2011/10/25/use-boostbind/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f9597462767c4aef5a85f6cdbdd6c56c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">frankzhu28</media:title>
		</media:content>
	</item>
		<item>
		<title>build a symbol database for vim</title>
		<link>http://esdw.wordpress.com/2011/08/12/build-a-symbol-database-for-vim/</link>
		<comments>http://esdw.wordpress.com/2011/08/12/build-a-symbol-database-for-vim/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 01:14:06 +0000</pubDate>
		<dc:creator>frankzhu28</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://esdw.wordpress.com/?p=52</guid>
		<description><![CDATA[#!/bin/sh # find src files find . ! -path ./exclude_dir_1\* -a           \ ! -path ./exclude_dir_2\* -a          \ -regex &#8220;.*\.\(c\&#124;h\&#124;hpp\&#124;cc\&#124;cpp\&#124;s\)&#8221; &#62;  cscope.files # number is exact match, or else use search by default ctags -L cscope.files &#8211;language=c:.c.h,c++:.cpp.hpp.cc,Asm:.s &#8211;excmd=number cscope -bqk<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=esdw.wordpress.com&amp;blog=12636879&amp;post=52&amp;subd=esdw&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>#!/bin/sh</p>
<p># find src files<br />
find . ! -path ./exclude_dir_1\* -a           \<br />
! -path ./exclude_dir_2\* -a          \<br />
-regex &#8220;.*\.\(c\|h\|hpp\|cc\|cpp\|s\)&#8221; &gt;  cscope.files</p>
<p># number is exact match, or else use search by default</p>
<p>ctags -L cscope.files &#8211;language=c:.c.h,c++:.cpp.hpp.cc,Asm:.s &#8211;excmd=number<br />
cscope -bqk</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/esdw.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/esdw.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/esdw.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/esdw.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/esdw.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/esdw.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/esdw.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/esdw.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/esdw.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/esdw.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/esdw.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/esdw.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/esdw.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/esdw.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=esdw.wordpress.com&amp;blog=12636879&amp;post=52&amp;subd=esdw&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://esdw.wordpress.com/2011/08/12/build-a-symbol-database-for-vim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f9597462767c4aef5a85f6cdbdd6c56c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">frankzhu28</media:title>
		</media:content>
	</item>
		<item>
		<title>serial monitoring under linux</title>
		<link>http://esdw.wordpress.com/2010/08/27/serial-monitoring-under-linux/</link>
		<comments>http://esdw.wordpress.com/2010/08/27/serial-monitoring-under-linux/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 09:06:59 +0000</pubDate>
		<dc:creator>frankzhu28</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://esdw.wordpress.com/?p=49</guid>
		<description><![CDATA[On windows, you can use the HHD&#8217;s serial monitor professional tools, on Linux, what can you do to peek the serial port?  Below is a quick start guide for using moni, 1. download moni http://www.rolf-schroedter.de/moni/#download 2. download tclkit http://www.equi4.com/starkit/started.html 3. type the following to run moni gzip -d tclkit-*.gz mv tclkit-* tclkit chmod +x tclkit [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=esdw.wordpress.com&amp;blog=12636879&amp;post=49&amp;subd=esdw&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>On windows, you can use the HHD&#8217;s serial monitor professional tools, on Linux,</p>
<p>what can you do to peek the serial port?  Below is a quick start guide for using moni,</p>
<p>1. download moni</p>
<p>http://www.rolf-schroedter.de/moni/#download</p>
<p>2. download tclkit</p>
<p>http://www.equi4.com/starkit/started.html</p>
<p>3. type the following to run moni<br />
gzip -d tclkit-*.gz<br />
mv tclkit-* tclkit<br />
chmod +x tclkit<br />
./tclkit sdx.kit</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/esdw.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/esdw.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/esdw.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/esdw.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/esdw.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/esdw.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/esdw.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/esdw.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/esdw.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/esdw.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/esdw.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/esdw.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/esdw.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/esdw.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=esdw.wordpress.com&amp;blog=12636879&amp;post=49&amp;subd=esdw&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://esdw.wordpress.com/2010/08/27/serial-monitoring-under-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f9597462767c4aef5a85f6cdbdd6c56c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">frankzhu28</media:title>
		</media:content>
	</item>
		<item>
		<title>A Device Monitoring System</title>
		<link>http://esdw.wordpress.com/2010/07/14/a-device-monitoring-system/</link>
		<comments>http://esdw.wordpress.com/2010/07/14/a-device-monitoring-system/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 16:13:54 +0000</pubDate>
		<dc:creator>frankzhu28</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://esdw.wordpress.com/?p=46</guid>
		<description><![CDATA[My current project is a device monitoring system. The system has following features Reliable device communication through specified interfaces Web interface for system administration and device status monitoring (including remote) SQL Database to archive device status data, plot trending etc. Support SNMP interface to network management systems (NMS). Notes for system implementation details. 1. For [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=esdw.wordpress.com&amp;blog=12636879&amp;post=46&amp;subd=esdw&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My current project is a device monitoring system. The system has following features</p>
<ul>
<li>Reliable device communication through specified interfaces</li>
<li>Web interface for system administration and device status monitoring (including remote)</li>
<li>SQL Database to archive device status data, plot trending etc.</li>
<li>Support SNMP interface to network management systems (NMS).</li>
</ul>
<p>Notes for system implementation details.</p>
<p>1. For rapid development, Python was chosen.<br />
2. Pyserial is the main package used for serial communication over RS485 serial interface.  To use it,</p>
<p>import serial, time</p>
<p>s = serial.Serial(port=&#8217;/dev/ttyUSB0&#8242;, timeout=1) # open first usb serial port</p>
<p>s.write(&#8220;command to send&#8221;)</p>
<p>time.sleep(0.2)</p>
<p>response = s.readline()</p>
<p>Since system may have multiple buses, serial driver will run as separate processes. On linux platform (python2.5 or later), To start a process in python, use</p>
<p>pid = Popen(&#8216;path/prog_name&#8217;, arg1,arg2,..).pid</p>
<p>To kill a process, use</p>
<p>import os</p>
<p>os.kill(pid,9)</p>
<p>3. Web Server. To install a simple web server, just use thttpd. Be sure to comment out the chroot in your server configuration file.  Server backend is using python cgi.  To turn on cgi debugging, use,</p>
<p>import cgi, cgitb; cgitb.enable()</p>
<p>Another way is to use &#8220;import pdb;pdb.set_trace()&#8221;</p>
<p>To enable logging, use</p>
<p>import logging</p>
<p>logging.basicConfig(filename=&#8217;my.log&#8217;, level=logging.debug)</p>
<p>when you need log something, use</p>
<p>logging.debug(&#8220;message or vars to log&#8221;)</p>
<p>To get values from forms, use</p>
<p>form=cgi.FieldStorage()</p>
<p>form.getvalue(&#8216;key&#8217;) or form.getlist(&#8216;key&#8217;)</p>
<p>4. Database backend use Sqlite3 since it is included in python packages.</p>
<p>To create a database, you can use Python DB API 2.0</p>
<p>import sqlite3</p>
<p>c = sqlite3.connect(&#8220;test.db&#8221;,isolation_level=None) # None means immediate commit to DB for any operation</p>
<p>c.text_factory=str  #  let DB convert unicode to ascii for you</p>
<p>c.execute(&#8220;&#8221;"create table if not exists bus (bus_id INTEGER PRIMARY KEY, port TEXT, polling INTEGER, timeout INTEGER, state TEXT, pid INTEGER default 0)&#8221;"&#8221;)   # create a bus table and use bus id as primary key.</p>
<p>For sql query, you can embedded variable in two ways, use ? or use named labels, see following,</p>
<p>bus = c.execute(&#8220;select * from bus where bus_id==?&#8221;, (bus_id,)).fetchone()</p>
<p>c.execute(&#8220;update bus set pid=:pid where bus_id==:busid &#8220;,{&#8216;busid&#8217;:bus[0],&#8217;pid&#8217;:pid})</p>
<p>5. Use template and tables to simplify web page</p>
<p>from string import Template</p>
<p>tpl = Template(open(&#8220;site.html&#8221;).read())</p>
<p>print &#8220;Content-type: text/html\r\n\r\n&#8221;<br />
print tpl.substitute(dict(current=buses,confirm=confirm))</p>
<p>6. Use PySNMP for SNMP agent  (to be continued..)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/esdw.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/esdw.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/esdw.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/esdw.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/esdw.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/esdw.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/esdw.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/esdw.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/esdw.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/esdw.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/esdw.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/esdw.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/esdw.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/esdw.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=esdw.wordpress.com&amp;blog=12636879&amp;post=46&amp;subd=esdw&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://esdw.wordpress.com/2010/07/14/a-device-monitoring-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f9597462767c4aef5a85f6cdbdd6c56c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">frankzhu28</media:title>
		</media:content>
	</item>
		<item>
		<title>Setup the thttpd server</title>
		<link>http://esdw.wordpress.com/2010/05/12/42/</link>
		<comments>http://esdw.wordpress.com/2010/05/12/42/#comments</comments>
		<pubDate>Wed, 12 May 2010 03:54:17 +0000</pubDate>
		<dc:creator>frankzhu28</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://esdw.wordpress.com/?p=42</guid>
		<description><![CDATA[On embedded system, use apache2 web server could be a luxury. I have used web2py web framework and it did run but crashed my flash drive. So I decided to keep it simple. thttpd has a very small footprint and said to be secure.  To install it in a debian system, just type aptitude install [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=esdw.wordpress.com&amp;blog=12636879&amp;post=42&amp;subd=esdw&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>On embedded system, use apache2 web server could be a luxury. I have used web2py web framework and it did run but crashed my flash drive. So I decided to keep it simple. thttpd has a very small footprint and said to be secure.  To install it in a debian system, just type</p>
<p>aptitude install thttpd</p>
<p>It will install as all the other packages. The next step is to configure the server, on my debian lenny, it is /etc/thttpd/thttpd.conf</p>
<p>I want to run python cgi programs, so the cgipattern /cgi-bin/*  seems fit my needs.</p>
<p>The default cgi script directory is /var/www/cgi-bin and default html docs are under /var/www</p>
<p>You need make sure the cgi scripts have 755 permission and chown to www-data.</p>
<p>cgi program need print two empty lines , so the simplest cgi will be</p>
<p>#!/usr/bin/python</p>
<p>print &#8220;Content-type: text/plain\n\n&#8221;</p>
<p>And this works in apache, however it doesn&#8217;t work on thttpd.  After struggled several hours in reading the manual, options and digging through the mail list archives, check the thttpd server log and syslog for errors. I still have no clue.</p>
<p>Somehow, before I give up, I find a chroot option in configuration file. I change it to nochroot, because if I do the chroot, python couldn&#8217;t run for I haven&#8217;t duplicated the /usr/python into /cgi-bin directory.  That&#8217;s it! Now it runs.  I have to admit : thttpd is too secure&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/esdw.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/esdw.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/esdw.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/esdw.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/esdw.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/esdw.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/esdw.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/esdw.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/esdw.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/esdw.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/esdw.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/esdw.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/esdw.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/esdw.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=esdw.wordpress.com&amp;blog=12636879&amp;post=42&amp;subd=esdw&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://esdw.wordpress.com/2010/05/12/42/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f9597462767c4aef5a85f6cdbdd6c56c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">frankzhu28</media:title>
		</media:content>
	</item>
		<item>
		<title>How to netboot debian from ubuntu based system</title>
		<link>http://esdw.wordpress.com/2010/04/15/how-to-netboot-debian-from-ubuntu-based-system/</link>
		<comments>http://esdw.wordpress.com/2010/04/15/how-to-netboot-debian-from-ubuntu-based-system/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 03:51:55 +0000</pubDate>
		<dc:creator>frankzhu28</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://esdw.wordpress.com/?p=37</guid>
		<description><![CDATA[1. setup tftp server. - You need a server with tsize support. sudo aptitude install tftp-hpa tftpd-hpa - set tftp directory sudo mkdir /tftpboot sudo chown nobody.nogroup /tftpboot sudo chmod 777 /tftpboot - configure tftp sudo gedit /etc/default/tftpd-hpa #Defaults for tftpd-hpa RUN_DAEMON=&#8221;yes&#8221; OPTIONS=&#8221;-l -s /tftpboot&#8221; - start tftp sudo /etc/init.d/tftpd-hpa start -verify netstat -a &#124;grep [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=esdw.wordpress.com&amp;blog=12636879&amp;post=37&amp;subd=esdw&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>1. setup tftp server.</p>
<p>- You need a server with tsize support.<br />
sudo aptitude install tftp-hpa tftpd-hpa</p>
<p>- set tftp directory<br />
sudo mkdir /tftpboot<br />
sudo chown nobody.nogroup /tftpboot<br />
sudo chmod 777 /tftpboot</p>
<p>- configure tftp<br />
sudo gedit /etc/default/tftpd-hpa<br />
#Defaults for tftpd-hpa<br />
RUN_DAEMON=&#8221;yes&#8221;<br />
OPTIONS=&#8221;-l -s /tftpboot&#8221;</p>
<p>- start tftp<br />
sudo /etc/init.d/tftpd-hpa start</p>
<p>-verify<br />
netstat -a |grep tftp<br />
touch /tftpboot/testfile<br />
tftp localhost -c get testfile</p>
<p>2. setup a DHCP server and enable PXE booting<br />
sudo aptitude install dhcp3-server<br />
sudo gedit /etc/dhcp3/dhcpd.conf</p>
<p>- content looks like</p>
<p>default-lease-time 600;<br />
max-lease-time 7200;<br />
allow booting;<br />
allow bootp;</p>
<p># The next paragraph needs to be modified to fit your case<br />
subnet 192.168.1.0 netmask 255.255.255.0 {<br />
range 192.168.1.101 192.168.1.253;  # depends on your router<br />
option broadcast-address 192.168.1.255;<br />
# the gateway address which can be different<br />
# (access to the internet for instance)<br />
option routers 192.168.1.1;<br />
# indicate the dns you want to use<br />
option domain-name-servers 192.168.1.1;<br />
}</p>
<p>group {<br />
#  next-server 192.168.1.3;<br />
host tftpclient {<br />
# tftp client hardware address<br />
hardware ethernet  &lt;MAC_ADDR_SEPARATE_BY_:&gt;;<br />
filename &#8220;pxelinux.0&#8243;;<br />
}<br />
}</p>
<p>3. move tftp images into tftp folder<br />
goto</p>
<p>http://www.debian.org/releases/stable/i386/ch04s02.html.en#where-files</p>
<p>and get the netboot.tar.gz tarball and extract it into /tftpboot</p>
<p>reference</p>
<p>http://www.debian.org/releases/stable/i386/ch04s05.html.en</p>
<p>http://blog.tuxcoder.com/2008/06/configure-tftp-server-in-ubuntu.html</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/esdw.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/esdw.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/esdw.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/esdw.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/esdw.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/esdw.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/esdw.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/esdw.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/esdw.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/esdw.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/esdw.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/esdw.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/esdw.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/esdw.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=esdw.wordpress.com&amp;blog=12636879&amp;post=37&amp;subd=esdw&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://esdw.wordpress.com/2010/04/15/how-to-netboot-debian-from-ubuntu-based-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f9597462767c4aef5a85f6cdbdd6c56c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">frankzhu28</media:title>
		</media:content>
	</item>
		<item>
		<title>A useful tool &#8212; devmem2</title>
		<link>http://esdw.wordpress.com/2010/03/25/a-useful-tool-devmem2/</link>
		<comments>http://esdw.wordpress.com/2010/03/25/a-useful-tool-devmem2/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 15:41:49 +0000</pubDate>
		<dc:creator>frankzhu28</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://esdw.wordpress.com/?p=34</guid>
		<description><![CDATA[Devmem2 is a simple utility to read/write to any memory mapped locations.  It is not available in debian etch but I find the source code (free GNU license) , compiled and run it perfectly on my gesbc debian eth environment. Build: $ gcc devmem2.c -o devmem2 To use devmem2 to toggle RTS register of the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=esdw.wordpress.com&amp;blog=12636879&amp;post=34&amp;subd=esdw&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Devmem2 is a simple utility to read/write to any memory mapped locations.  It is not available in debian etch but I find the source code (free GNU license) , compiled and run it perfectly on my gesbc debian eth environment.</p>
<p>Build:</p>
<p>$ gcc devmem2.c -o devmem2</p>
<p>To use devmem2 to toggle RTS register of the Serial Port 4 to high (RS485 mode).</p>
<p>./devmem2 0xfffd0004 w 0xc00008c1</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/esdw.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/esdw.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/esdw.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/esdw.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/esdw.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/esdw.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/esdw.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/esdw.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/esdw.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/esdw.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/esdw.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/esdw.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/esdw.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/esdw.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=esdw.wordpress.com&amp;blog=12636879&amp;post=34&amp;subd=esdw&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://esdw.wordpress.com/2010/03/25/a-useful-tool-devmem2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f9597462767c4aef5a85f6cdbdd6c56c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">frankzhu28</media:title>
		</media:content>
	</item>
		<item>
		<title>How to boot to usb flash drive and use a debian system</title>
		<link>http://esdw.wordpress.com/2010/03/24/how-to-boot-to-usb-flash-drive-and-use-a-debian-system/</link>
		<comments>http://esdw.wordpress.com/2010/03/24/how-to-boot-to-usb-flash-drive-and-use-a-debian-system/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 14:22:10 +0000</pubDate>
		<dc:creator>frankzhu28</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[embedded linux]]></category>

		<guid isPermaLink="false">http://esdw.wordpress.com/2010/03/24/how-to-boot-to-usb-flash-drive-and-use-a-debian-system/</guid>
		<description><![CDATA[Glomation SBC board is by default configured to boot to an emdedian file system that stored in Flash. I think it&#8217;s preferable to boot to a USB drive that has a debian system. Here is how I did it after consulting the posts in the forum. Prepare the usb drive on your PC =================================== My [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=esdw.wordpress.com&amp;blog=12636879&amp;post=29&amp;subd=esdw&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Glomation SBC board is by default configured to boot to an emdedian file system that stored in Flash. I think it&#8217;s preferable to boot to a USB drive that has a debian system. Here is how I did it after consulting the posts in the forum.</p>
<p>Prepare the usb drive on your PC<br />
===================================<br />
My PC is running linux Mint 8,</p>
<p>- Format your flash drive to ext3<br />
sudo fdisk /dev/sdb1</p>
<p>create a new primary partition and use w to save it.</p>
<p>sudo mkfs.ext3 /dev/sdb1</p>
<p>- mount your flash disk<br />
sudo mount /dev/sdb1 /mnt</p>
<p>- download debian etch image for gesbc<br />
<a href="http://www.glomationinc.com/download/debian-etch-arm-base.tar.gz" target="_blank">http://www.glomationinc.com/download/debian-etch-arm-base.tar.gz</a></p>
<p>- load the debian file system to your usb drive<br />
sudo tar xzvf debian-etch-arm-base.tar.gz /mnt</p>
<p>Change U-boot environment setting<br />
=================================<br />
Now insert your usb drive to your sbc then power up the board. stop the U-boot by pressing any key,</p>
<p>The printenv command can print out all current U-boot environment variable settings.   The set command can be used to set the environment variable for example,</p>
<p>set bootargs console=ttyS0,115200 root=/dev/sda1 rootdelay=10 mtdparts=atmel_nand:1M(bootloader),3M(kernel),-(rootfs)</p>
<p>to set the boot argument to use USB as root file system. Note the sbc recognize the usb drive as /dev/sda1 on my board (while it was recognized /dev/sdb1 on my PC). Please note the MTD device name of the NAND FLASH is at91_nand for kernel version 2.6.25.x and atmel_nand for kernel version 2.6.27.x and up.</p>
<p>You can save the setting use saveenv command so the board can boot using USB root file system as default.</p>
<p>Other Useful Tips<br />
==================</p>
<p>- Route debug message to UART (P1)</p>
<p>I find someone in forum says &#8220;I was shocked by the fact that the debug message is not routed to the UART (P1) port of the board, but to a 3-pin P0.&#8221;. I have  the same feeling here.</p>
<p>You can remove this inconvenience by changing the U-boot environment setting to route it to UART (P1)<br />
set bootargs console=ttyS1,115200 root=/dev/sda1 rootdelay=10 mtdparts=atmel_nand:1M(bootloader),3M(kernel),-(rootfs)</p>
<p>remember to save the setting use saveenv command. then type boot and connect your NULL modem from your PC to the sbc board.</p>
<p>In production, you can easily switch it back.</p>
<p>- Setup a SSH server</p>
<p>Actually, you rarely need look at the debug message. If you setup the SSH server on sbc board, you can even get rid of the NULL modem cable, just connect the board using ssh.</p>
<p>To install ssh server, type<br />
apt-get install ssh</p>
<p>Issues<br />
============<br />
I find the default dhcp client shipped with emdebian has a short timeout. When dhcp server is slower in response, the board ends up with &#8220;discover&#8230; discover&#8230; fails&#8221;. However, the debian system &#8216;s DHCP client wait longer which then correctly configures the network, thus allows for ssh access without any user intervention.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/esdw.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/esdw.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/esdw.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/esdw.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/esdw.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/esdw.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/esdw.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/esdw.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/esdw.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/esdw.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/esdw.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/esdw.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/esdw.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/esdw.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=esdw.wordpress.com&amp;blog=12636879&amp;post=29&amp;subd=esdw&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://esdw.wordpress.com/2010/03/24/how-to-boot-to-usb-flash-drive-and-use-a-debian-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f9597462767c4aef5a85f6cdbdd6c56c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">frankzhu28</media:title>
		</media:content>
	</item>
		<item>
		<title>Setup a TFTP server</title>
		<link>http://esdw.wordpress.com/2010/03/22/setup-a-tftp-server/</link>
		<comments>http://esdw.wordpress.com/2010/03/22/setup-a-tftp-server/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 13:50:29 +0000</pubDate>
		<dc:creator>frankzhu28</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[embedded linux tftp]]></category>

		<guid isPermaLink="false">http://esdw.wordpress.com/?p=18</guid>
		<description><![CDATA[I need setup a tftp server to upgrade the file system from Emdebian to debian on my board. Since I have been using linux mint, it&#8217;s quite easy to setup , 1. Download tftp $ sudo apt-get install xinetd tftpd tftp 2. Configuration sudo gedit /etc/xinetd.conf, add the following, service tftp { protocol        = udp [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=esdw.wordpress.com&amp;blog=12636879&amp;post=18&amp;subd=esdw&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I need setup a tftp server to upgrade the file system from Emdebian to debian on my board.<br />
Since I have been using linux mint, it&#8217;s quite easy to setup ,</p>
<p>1. Download tftp<br />
$ sudo apt-get install xinetd tftpd tftp</p>
<p>2. Configuration<br />
sudo gedit /etc/xinetd.conf, add the following,</p>
<p>service tftp<br />
{<br />
protocol        = udp<br />
port            = 69<br />
socket_type     = dgram<br />
wait            = yes<br />
user            = nobody<br />
server          = /usr/sbin/in.tftpd<br />
server_args     = /tftpboot<br />
disable         = no<br />
}</p>
<p>3. Make /tftpboot directory<br />
$ sudo mkdir /tftpboot<br />
$ sudo chmod -R 777 /tftpboot<br />
$ sudo chown -R nobody /tftpboot</p>
<p>4. Start tftpd through xinetd<br />
$ sudo /etc/init.d/xinetd restart</p>
<p>5. Test tftp<br />
cd<br />
touch /tftpboot/testfile<br />
tftp 127.0.0.1<br />
tftp &gt; get testfile</p>
<p>Note: tftp server is also need for U-boot to update the linux kernel of the board.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/esdw.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/esdw.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/esdw.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/esdw.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/esdw.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/esdw.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/esdw.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/esdw.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/esdw.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/esdw.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/esdw.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/esdw.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/esdw.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/esdw.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=esdw.wordpress.com&amp;blog=12636879&amp;post=18&amp;subd=esdw&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://esdw.wordpress.com/2010/03/22/setup-a-tftp-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f9597462767c4aef5a85f6cdbdd6c56c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">frankzhu28</media:title>
		</media:content>
	</item>
		<item>
		<title>Using ssh and scp</title>
		<link>http://esdw.wordpress.com/2010/03/19/using-ssh-and-scp/</link>
		<comments>http://esdw.wordpress.com/2010/03/19/using-ssh-and-scp/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 20:27:27 +0000</pubDate>
		<dc:creator>frankzhu28</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[embedded linux]]></category>

		<guid isPermaLink="false">http://esdw.wordpress.com/?p=16</guid>
		<description><![CDATA[SSH ssh enables you to remote login and operate the PC. In linux, you usually have ssh client installed by default, in windows, you need download putty. To login, type $ssh user@host then you will need to enter password at prompt. SCP scp enables you exchange files between your PC and remote computer: fetch remote [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=esdw.wordpress.com&amp;blog=12636879&amp;post=16&amp;subd=esdw&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>SSH</p>
<p>ssh enables you to remote login and operate the PC. In linux, you usually have ssh client installed by default, in windows, you need download putty.</p>
<p>To login, type</p>
<p>$ssh user@host</p>
<p>then you will need to enter password at prompt.</p>
<p>SCP</p>
<p>scp enables you exchange files between your PC and remote computer:</p>
<p>fetch remote files to your pc<br />
scp user@host:path/filenames .</p>
<p>upload files from your pc to remote server<br />
scp filenames user@host:path</p>
<p>scp supports wildcard in filenames and recursive  (-r)</p>
<p>linux probably has it installed, on windows you can use winscp.</p>
<p>Note:  to allow new user to ssh to the  system, in debian, need add user in /etc/ssh/sshd_coonfig contain AllowUsers &lt;user_name&gt;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/esdw.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/esdw.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/esdw.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/esdw.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/esdw.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/esdw.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/esdw.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/esdw.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/esdw.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/esdw.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/esdw.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/esdw.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/esdw.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/esdw.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=esdw.wordpress.com&amp;blog=12636879&amp;post=16&amp;subd=esdw&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://esdw.wordpress.com/2010/03/19/using-ssh-and-scp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f9597462767c4aef5a85f6cdbdd6c56c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">frankzhu28</media:title>
		</media:content>
	</item>
	</channel>
</rss>
