<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[timeemit]]></title> 
<link>http://www.timeemit.com/index.php</link> 
<description><![CDATA[Be all you can be]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[timeemit]]></copyright>
<item>
<link>http://www.timeemit.com/read.php?34</link>
<title><![CDATA[Nook Touch ADB over USB on linux]]></title> 
<author>admin &lt;admin@yourname.com&gt;</author>
<category><![CDATA[系统配置]]></category>
<pubDate>Thu, 09 Feb 2012 12:06:41 +0000</pubDate> 
<guid>http://www.timeemit.com/read.php?34</guid> 
<description>
<![CDATA[ 
	<div class="quote"><div class="quote-title"> 环境</div><div class="quote-content">Ubuntu: ubuntu-10.04-x86_64 (2.6.32-38)<br/></div></div><br/>1. uRamdisk OK! adb command OK!<br/><br/>2. Android usb config<br/><pre class="brush: bash;gutter:false">mkdir -p ~/.android &amp;&amp; echo 0x2080 &gt; ~/.android/adb_usb.ini &amp;&amp; adb kill-server &amp;&amp; adb start-server
</pre><br/>3. udev-rule: (/etc/udev/rules.d/51-android.rules)<br/><pre class="brush: bash;gutter:false">echo &#039;SUBSYSTEMS==&quot;usb&quot;, ATTR&#123;idVendor&#125;==&quot;2080&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;&#039; &#124; sudo tee -a /etc/udev/rules.d/*-android.rules &amp;&amp; sudo udevadm control --reload-rules
</pre><br/><strong>References</strong><br/>1. <a href="http://forum.xda-developers.com/showthread.php?t=1178733" target="_blank">Nook ADB over USB on linux.</a><br/><br/><br/>Tags - <a href="http://www.timeemit.com/tag.php?tag=nook" rel="tag">nook</a> , <a href="http://www.timeemit.com/tag.php?tag=nook2" rel="tag">nook2</a> , <a href="http://www.timeemit.com/tag.php?tag=nook-touch" rel="tag">nook-touch</a> , <a href="http://www.timeemit.com/tag.php?tag=adb" rel="tag">adb</a> , <a href="http://www.timeemit.com/tag.php?tag=ubuntu" rel="tag">ubuntu</a>
]]>
</description>
</item><item>
<link>http://www.timeemit.com/read.php?33</link>
<title><![CDATA[uudecode]]></title> 
<author>admin &lt;admin@yourname.com&gt;</author>
<category><![CDATA[系统配置]]></category>
<pubDate>Wed, 04 Jan 2012 05:31:05 +0000</pubDate> 
<guid>http://www.timeemit.com/read.php?33</guid> 
<description>
<![CDATA[ 
	Ubuntu 10.04<br/><br/>$ sudo apt-get install sharutils<br/><br/><br/>Tags - <a href="http://www.timeemit.com/tag.php?tag=uudecode" rel="tag">uudecode</a> , <a href="http://www.timeemit.com/tag.php?tag=sharutils" rel="tag">sharutils</a>
]]>
</description>
</item><item>
<link>http://www.timeemit.com/read.php?31</link>
<title><![CDATA[Create uramdisk]]></title> 
<author>admin &lt;admin@yourname.com&gt;</author>
<category><![CDATA[启动引导]]></category>
<pubDate>Sat, 17 Dec 2011 09:31:35 +0000</pubDate> 
<guid>http://www.timeemit.com/read.php?31</guid> 
<description>
<![CDATA[ 
	1. uramdisk =&gt; ramdisk [file uRamdisk: u-boot/PPCBoot image]<br/><br/>$ dd if=uRamdisk of=ramdisk bs=64 skip=1<br/><br/><br/>2. Uncompress gz [file ramdisk: gzip compressed data, from Unix]<br/><br/>$ mv ramdisk ramdisk.gz<br/>$ gunzip -v ramdisk.gz<br/><br/><br/>3. Uncompress cpio [file ramdisk: ASCII cpio archive (SVR4 with no CRC)]<br/><br/>$ mkdir tmp<br/>$ cd tmp<br/>$ cpio -idv &lt;../ramdisk<br/><br/>----------------------------------------------------------------------<br/><br/>1. Create cpio<br/><br/>$ find . &#124; cpio -ov -H newc &gt;../ramdisk_new<br/><br/><br/>2. Compress<br/><br/>$ gzip -9 ramdisk_new<br/><br/><br/>3. Create uramdisk<br/><br/>$ mkimage -n &quot;newramdisk&quot; -A arm -O linux -T ramdisk -C gzip -d ramdisk_new.gz uramdisk_new<br/><br/><br/><br/>Tags - <a href="http://www.timeemit.com/tag.php?tag=boot" rel="tag">boot</a> , <a href="http://www.timeemit.com/tag.php?tag=ramdisk" rel="tag">ramdisk</a> , <a href="http://www.timeemit.com/tag.php?tag=uramdisk" rel="tag">uramdisk</a> , <a href="http://www.timeemit.com/tag.php?tag=cpio" rel="tag">cpio</a> , <a href="http://www.timeemit.com/tag.php?tag=mkimage" rel="tag">mkimage</a> , <a href="http://www.timeemit.com/tag.php?tag=nook" rel="tag">nook</a> , <a href="http://www.timeemit.com/tag.php?tag=nook2" rel="tag">nook2</a> , <a href="http://www.timeemit.com/tag.php?tag=nook-touch" rel="tag">nook-touch</a>
]]>
</description>
</item><item>
<link>http://www.timeemit.com/read.php?30</link>
<title><![CDATA[制作cpio文件]]></title> 
<author>admin &lt;admin@yourname.com&gt;</author>
<category><![CDATA[常用命令]]></category>
<pubDate>Sat, 17 Dec 2011 09:29:42 +0000</pubDate> 
<guid>http://www.timeemit.com/read.php?30</guid> 
<description>
<![CDATA[ 
	$ find . &#124; cpio -ov -H newc &gt;../xxx.cpio<br/><br/><br/>Tags - <a href="http://www.timeemit.com/tag.php?tag=shell" rel="tag">shell</a> , <a href="http://www.timeemit.com/tag.php?tag=cpio" rel="tag">cpio</a>
]]>
</description>
</item><item>
<link>http://www.timeemit.com/read.php?29</link>
<title><![CDATA[Shell批量建链接 (工具链重命名)]]></title> 
<author>admin &lt;admin@yourname.com&gt;</author>
<category><![CDATA[脚本编程]]></category>
<pubDate>Sat, 17 Dec 2011 09:23:09 +0000</pubDate> 
<guid>http://www.timeemit.com/read.php?29</guid> 
<description>
<![CDATA[ 
	arm-none-linux-gnueabi-xxx =&gt; arm-linux-xxx<br/><br/>$ ls &#124; xargs -I&#123;&#125; echo &#123;&#125; &#124; sed -e &quot;s/arm-none-linux-gnueabi-//&quot; &#124; xargs -I&#123;&#125; ln -s arm-none-linux-gnueabi-&#123;&#125; arm-linux-&#123;&#125;<br/><br/><br/><br/>Tags - <a href="http://www.timeemit.com/tag.php?tag=shell" rel="tag">shell</a> , <a href="http://www.timeemit.com/tag.php?tag=toolchain" rel="tag">toolchain</a> , <a href="http://www.timeemit.com/tag.php?tag=xargs" rel="tag">xargs</a>
]]>
</description>
</item><item>
<link>http://www.timeemit.com/read.php?28</link>
<title><![CDATA[ckermit rc]]></title> 
<author>admin &lt;admin@yourname.com&gt;</author>
<category><![CDATA[系统配置]]></category>
<pubDate>Mon, 05 Dec 2011 04:04:00 +0000</pubDate> 
<guid>http://www.timeemit.com/read.php?28</guid> 
<description>
<![CDATA[ 
	<div class="quote"><div class="quote-title"> Ubuntu 10.04</div><div class="quote-content">set line /dev/ttyUSB0<br/>set speed 115200<br/>set carrier-watch off<br/>set handshake none<br/>set flow-control none<br/>robust<br/>set file type bin<br/>set file name lit<br/>set rec pack 1000<br/>set send pack 1000<br/>set window 5 <br/>set protocol xmodem<br/></div></div><br/>Tags - <a href="http://www.timeemit.com/tag.php?tag=ubuntu" rel="tag">ubuntu</a> , <a href="http://www.timeemit.com/tag.php?tag=ckermit" rel="tag">ckermit</a> , <a href="http://www.timeemit.com/tag.php?tag=kermit" rel="tag">kermit</a> , <a href="http://www.timeemit.com/tag.php?tag=kermrc" rel="tag">kermrc</a>
]]>
</description>
</item><item>
<link>http://www.timeemit.com/read.php?27</link>
<title><![CDATA[ncurses @ ubuntu 10.04]]></title> 
<author>admin &lt;admin@yourname.com&gt;</author>
<category><![CDATA[系统配置]]></category>
<pubDate>Mon, 05 Dec 2011 02:22:22 +0000</pubDate> 
<guid>http://www.timeemit.com/read.php?27</guid> 
<description>
<![CDATA[ 
	$ sudo aptitude install libncurses5-dev<br/><br/><br/>Tags - <a href="http://www.timeemit.com/tag.php?tag=ubuntu" rel="tag">ubuntu</a> , <a href="http://www.timeemit.com/tag.php?tag=ncurses" rel="tag">ncurses</a>
]]>
</description>
</item><item>
<link>http://www.timeemit.com/read.php?26</link>
<title><![CDATA[找回Ubuntu任务栏网络连接图标]]></title> 
<author>admin &lt;admin@yourname.com&gt;</author>
<category><![CDATA[系统配置]]></category>
<pubDate>Fri, 02 Dec 2011 09:43:10 +0000</pubDate> 
<guid>http://www.timeemit.com/read.php?26</guid> 
<description>
<![CDATA[ 
	<div class="quote"><div class="quote-title"> 环境</div><div class="quote-content">Ubuntu: ubuntu-10.04-desktop-amd64<br/></div></div><br/>$ sudo vi /etc/NetworkManager/nm-system-settings.conf<br/>managed=false -> managed=true<br/><br/>$ sudo service network-manager restart<br/><br/><br/>Tags - <a href="http://www.timeemit.com/tag.php?tag=ubuntu" rel="tag">ubuntu</a> , <a href="http://www.timeemit.com/tag.php?tag=%25E7%25BD%2591%25E7%25BB%259C" rel="tag">网络</a> , <a href="http://www.timeemit.com/tag.php?tag=networkmanager" rel="tag">networkmanager</a>
]]>
</description>
</item><item>
<link>http://www.timeemit.com/read.php?25</link>
<title><![CDATA[Ubuntu 静态IP配置]]></title> 
<author>admin &lt;admin@yourname.com&gt;</author>
<category><![CDATA[系统配置]]></category>
<pubDate>Fri, 02 Dec 2011 02:45:42 +0000</pubDate> 
<guid>http://www.timeemit.com/read.php?25</guid> 
<description>
<![CDATA[ 
	<div class="quote"><div class="quote-title"> 环境</div><div class="quote-content">Ubuntu: ubuntu-10.04-desktop-amd64<br/></div></div><br/><div class="quote"><div class="quote-title"> $ sudo vi /etc/resolv.conf</div><div class="quote-content"># Generated by NetworkManager<br/>nameserver 202.96.134.133<br/></div></div><br/><div class="quote"><div class="quote-title"> $ sudo vi /etc/network/interfaces</div><div class="quote-content"># This file describes the network interfaces available on your system<br/># and how to activate them. For more information, see interfaces(5).<br/><br/># The loopback network interface<br/>auto lo<br/>iface lo inet loopback<br/><br/># The primary network interface<br/>auto eth0<br/>iface eth0 inet static<br/>&nbsp;&nbsp;address 192.168.0.121<br/>&nbsp;&nbsp;netmask 255.255.255.0<br/>&nbsp;&nbsp;network 192.168.0.0<br/>&nbsp;&nbsp;broadcast 192.168.0.255<br/>&nbsp;&nbsp;gateway 192.168.0.1<br/>&nbsp;&nbsp;# dns-* options are implemented by the resolvconf package, if installed<br/>&nbsp;&nbsp;dns-nameservers 202.96.134.133<br/></div></div><br/>Tags - <a href="http://www.timeemit.com/tag.php?tag=ubuntu" rel="tag">ubuntu</a> , <a href="http://www.timeemit.com/tag.php?tag=%25E7%25BD%2591%25E7%25BB%259C" rel="tag">网络</a> , <a href="http://www.timeemit.com/tag.php?tag=%25E9%259D%2599%25E6%2580%2581ip" rel="tag">静态ip</a> , <a href="http://www.timeemit.com/tag.php?tag=%25E9%2585%258D%25E7%25BD%25AE" rel="tag">配置</a>
]]>
</description>
</item><item>
<link>http://www.timeemit.com/read.php?24</link>
<title><![CDATA[makeinfo @ ubuntu 10.04]]></title> 
<author>admin &lt;admin@yourname.com&gt;</author>
<category><![CDATA[系统配置]]></category>
<pubDate>Mon, 14 Nov 2011 02:38:05 +0000</pubDate> 
<guid>http://www.timeemit.com/read.php?24</guid> 
<description>
<![CDATA[ 
	$ sudo apt-get install texinfo<br/><br/><br/>Tags - <a href="http://www.timeemit.com/tag.php?tag=ubuntu" rel="tag">ubuntu</a> , <a href="http://www.timeemit.com/tag.php?tag=makeinfo" rel="tag">makeinfo</a> , <a href="http://www.timeemit.com/tag.php?tag=texinfo" rel="tag">texinfo</a>
]]>
</description>
</item>
</channel>
</rss>
