<?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>Doing &#38; Done &#187; ubuntu</title>
	<atom:link href="http://doing.liduan.com/tag/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://doing.liduan.com</link>
	<description>Record and Store</description>
	<lastBuildDate>Sat, 29 Oct 2011 11:13:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>add php gd (graphics directly) support i&#8230;</title>
		<link>http://doing.liduan.com/2009/09/01/add-php-gd-graphics-directly-support-i/</link>
		<comments>http://doing.liduan.com/2009/09/01/add-php-gd-graphics-directly-support-i/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 15:26:44 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[lighttpd]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[php5-gd]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[web server]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/09/01/add-php-gd-graphics-directly-support-i/</guid>
		<description><![CDATA[add php gd (graphics directly) support in ubuntu #sudo apt-get install php5-gd then, restart web service #sudo service lighttpd restart //or #sudo service apache2 restart]]></description>
			<content:encoded><![CDATA[<p>add php gd (graphics directly) support in ubuntu</p>
<pre class="brush: php">
#sudo apt-get install php5-gd
</pre>
<p>then, restart web service</p>
<pre class="brush: php">
#sudo service lighttpd restart //or
#sudo service apache2 restart
</pre>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/09/01/add-php-gd-graphics-directly-support-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>open root account in ubuntu: [code lang=&#8230;</title>
		<link>http://doing.liduan.com/2009/08/12/open-root-account-in-ubuntu-code-lang/</link>
		<comments>http://doing.liduan.com/2009/08/12/open-root-account-in-ubuntu-code-lang/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 10:49:30 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux kernel 2.6.30.4]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/08/12/open-root-account-in-ubuntu-code-lang/</guid>
		<description><![CDATA[open root account in ubuntu: $sudo passwd root then, set new password for root.]]></description>
			<content:encoded><![CDATA[<p>open root account in ubuntu:</p>
<pre class="brush: bash">
$sudo passwd root
</pre>
<p>then, set new password for root.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/08/12/open-root-account-in-ubuntu-code-lang/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>using python get friend timeline in twit &#8230;</title>
		<link>http://doing.liduan.com/2009/05/01/using-python-get-friend-timeline-in-twit/</link>
		<comments>http://doing.liduan.com/2009/05/01/using-python-get-friend-timeline-in-twit/#comments</comments>
		<pubDate>Fri, 01 May 2009 20:53:37 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/05/01/using-python-get-friend-timeline-in-twit/</guid>
		<description><![CDATA[using python get friend timeline in twitter. following tools should be used: python-twitter python-simplejson first install python-simplejson, if in ubuntu, just using command as follows $apt-get install python-simplejson then, downloading python-twitter , unpackage it. then using command   $ python setup.py build   $ python setup.py install then, open python. &#62;&#62;&#62; import twitter &#62;&#62;&#62; api [...]]]></description>
			<content:encoded><![CDATA[<p>using python get friend timeline in twitter. following tools should be used:</p>
<p><a title="python-twitter" href="http://code.google.com/p/python-twitter/" target="_blank">python-twitter</a></p>
<p>python-simplejson</p>
<p>first install python-simplejson, if in ubuntu, just using command as follows</p>
<p>$apt-get install python-simplejson</p>
<p>then, downloading <a title="python-twitter" href="http://code.google.com/p/python-twitter/" target="_blank">python-twitter</a> , unpackage it. then using command</p>
<pre><span class="pln">  $ python setup</span><span class="pun">.</span><span class="pln">py build
  $ python setup</span><span class="pun">.</span><span class="pln">py install</span></pre>
<p>then, open python.</p>
<p>&gt;&gt;&gt; import twitter</p>
<p>&gt;&gt;&gt; api = twitter.Api(&#8220;username&#8221;, &#8220;passworld&#8221;)</p>
<p>&gt;&gt;&gt; posts = api.GetFriendsTimeline(&#8216;username&#8217;)</p>
<p>&gt;&gt;&gt; print [post.text in post as posts ];</p>
<p>for the file, the script should be liked:<br />
<code><br />
import twitter<br />
class mytwitter():</p>
<p>def __init__(self):<br />
  self._config = None</p>
<p>def main():<br />
  api = twitter.Api('username', 'passworld')<br />
  posts = api.GetFriendsTimeline('username')<br />
  for post in posts:<br />
    print post.text.encode('utf-8')</p>
<p>if __name__ == "__main__":<br />
  main()<br />
</code></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/05/01/using-python-get-friend-timeline-in-twit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>first look kubuntu.

the most bugs of  &#8230;</title>
		<link>http://doing.liduan.com/2009/04/23/first-look-kubuntuthe-most-bugs-of/</link>
		<comments>http://doing.liduan.com/2009/04/23/first-look-kubuntuthe-most-bugs-of/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 22:41:32 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[kubuntu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/04/23/first-look-kubuntuthe-most-bugs-of/</guid>
		<description><![CDATA[first look kubuntu. the most bugs of KDE have been fixed. the wifi mod has been improved. the package library adds many new software, like monodevelop2 firefox 3.1 and 3.5, kooldock, etc. but I didn&#8217;t see katapult.]]></description>
			<content:encoded><![CDATA[<p>first look kubuntu.</p>
<p>the most bugs of KDE have been fixed. the wifi mod has been improved. the package library adds many new software, like monodevelop2 firefox 3.1 and 3.5, kooldock, etc. but I didn&#8217;t see katapult.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/04/23/first-look-kubuntuthe-most-bugs-of/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To mount the ISO image file.iso to the m &#8230;</title>
		<link>http://doing.liduan.com/2009/04/20/to-mount-the-iso-image-fileiso-to-the-m/</link>
		<comments>http://doing.liduan.com/2009/04/20/to-mount-the-iso-image-fileiso-to-the-m/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 16:56:23 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[ISO]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/04/20/to-mount-the-iso-image-fileiso-to-the-m/</guid>
		<description><![CDATA[To mount the ISO image file.iso to the mount point /mnt/test use this command: mount -o loop -t iso9660 file.iso /mnt/test]]></description>
			<content:encoded><![CDATA[<p>To mount the ISO image file.iso to the mount point /mnt/test use this command:</p>
<p><code>mount -o loop -t iso9660 file.iso /mnt/test</code></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/04/20/to-mount-the-iso-image-fileiso-to-the-m/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>building a PXE boot server in the ubuntu &#8230;</title>
		<link>http://doing.liduan.com/2009/04/20/building-a-pxe-boot-server-in-the-ubuntu/</link>
		<comments>http://doing.liduan.com/2009/04/20/building-a-pxe-boot-server-in-the-ubuntu/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 16:36:03 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[dhcp]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/04/20/building-a-pxe-boot-server-in-the-ubuntu/</guid>
		<description><![CDATA[building a PXE boot server in the ubuntu. 1. install dhcp3 server in the ubuntu. apt-get install dhcp3-server 2. edit /etc/default/dhcp3-server INTERFACES=&#8221;eth0&#8243; 3. edit /etc/dhcp3/dhcpd.conf default-lease-time 600; max-lease-time 7200; option subnet-mask 255.255.255.0; option broadcast-address 192.168.1.255; option routers 192.168.1.254; option domain-name-servers 192.168.1.1, 192.168.1.2; option domain-name "mydomain.example"; subnet 192.168.1.0 netmask 255.255.255.0 { range 192.168.1.10 192.168.1.100; range 192.168.1.150 [...]]]></description>
			<content:encoded><![CDATA[<p>building a <a title="PXE boot server" href="http://myy.helia.fi/~karte/ubuntu_hardy_pxe_notes.html" target="_blank">PXE boot server </a>in the <a href="http://www.freelikegnu.org/?p=3" target="_blank">ubuntu</a>.</p>
<p><a title="install dhcp3 server in the ubuntu." href="https://help.ubuntu.com/8.04/serverguide/C/dhcp.html" target="_blank">1. install dhcp3 server in the ubuntu.</a></p>
<p>apt-get install dhcp3-server</p>
<p>2. edit /etc/default/dhcp3-server</p>
<p>INTERFACES=&#8221;eth0&#8243;<br />
3. edit /etc/dhcp3/dhcpd.conf<br />
<code>default-lease-time 600;<br />
max-lease-time 7200;<br />
option subnet-mask 255.255.255.0;<br />
option broadcast-address 192.168.1.255;<br />
option routers 192.168.1.254;<br />
option domain-name-servers 192.168.1.1, 192.168.1.2;<br />
option domain-name "mydomain.example";</code></p>
<p>subnet 192.168.1.0 netmask 255.255.255.0 {<br />
range 192.168.1.10 192.168.1.100;<br />
range 192.168.1.150 192.168.1.200;<br />
}</p>
<p>4. edit /etc/network/interfaces</p>
<p>auto eth0:1</p>
<p>iface eth0:1 inet static</p>
<p>name DHCPserver</p>
<p>address 192.168.1.1</p>
<p>netmask 255.255.255.0</p>
<p>5. restart networking and dhcp3</p>
<p>service networking restart</p>
<p>service dhcp3-server restart</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/04/20/building-a-pxe-boot-server-in-the-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>clean ubuntu package cache:sudo apt-ge &#8230;</title>
		<link>http://doing.liduan.com/2008/11/20/clean-ubuntu-package-cachesudo-apt-ge/</link>
		<comments>http://doing.liduan.com/2008/11/20/clean-ubuntu-package-cachesudo-apt-ge/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 10:23:44 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[kubuntu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[package]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[summary]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[web server]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/11/20/clean-ubuntu-package-cachesudo-apt-ge/</guid>
		<description><![CDATA[clean ubuntu package cache: sudo apt-get autoclean sudo apt-get clean sudo apt-get autoremove clean isolated package sudo apt-get install deborphan -y]]></description>
			<content:encoded><![CDATA[<p>clean ubuntu package cache:<br />
sudo apt-get autoclean<br />
sudo apt-get clean<br />
sudo apt-get autoremove</p>
<p>clean isolated package<br />
sudo apt-get install deborphan -y</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/11/20/clean-ubuntu-package-cachesudo-apt-ge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I love packages manage of ubuntu. it mak &#8230;</title>
		<link>http://doing.liduan.com/2008/11/01/i-love-packages-manage-of-ubuntu-it-mak/</link>
		<comments>http://doing.liduan.com/2008/11/01/i-love-packages-manage-of-ubuntu-it-mak/#comments</comments>
		<pubDate>Sat, 01 Nov 2008 20:26:52 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[adept manager]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/11/01/i-love-packages-manage-of-ubuntu-it-mak/</guid>
		<description><![CDATA[I love packages manage of ubuntu. it make everything easy. example of install and upgrade. Don&#8217;t worry about relationship of different package. adept manager will help you to do that.]]></description>
			<content:encoded><![CDATA[<p>I love packages manage of <a title="ubuntu" href="http://ubuntu.com">ubuntu</a>. it make everything easy. example of install and upgrade. Don&#8217;t worry about relationship of different package. <a href="http://en.wikipedia.org/wiki/Adept_Package_Manager" title="adept manager">adept manager</a> will help you to do that.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/11/01/i-love-packages-manage-of-ubuntu-it-mak/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

