<div class="gmail_quote">2009/2/3 Seth Rothenberg <span dir="ltr">&lt;<a href="mailto:seth@pachai.net">seth@pachai.net</a>&gt;</span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Thanks for the great replies...<br>
I flashed my FR to SHR today.<br>
I had a few instances of it freezing during boot.<br>
Then it seemed to be up, but I had 2 issues:<br>
<br>
1. In Terminal, I get no keyboard.<br>
(I guess that&#39;s my punishment for complaining<br>
about not getting a full 101 keys by default. :-)</blockquote><div><br>When you&#39;re in the terminal, tap on the top shelf, then above the big X, tap on the QWERTY<br>&nbsp;<br></div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

2. My usb setup script failed.<br>
ifconfig returns this and more, but ping gets nothing.<br>
<br>
usb0 &nbsp; &nbsp; &nbsp;Link encap:Ethernet &nbsp;HWaddr 8e:a3:0c:ca:6d:a8<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;inet addr:192.168.0.200 &nbsp;Bcast:0.0.0.0 &nbsp;Mask:255.255.255.0<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;inet6 addr: fe80::8ca3:cff:feca:6da8/64 Scope:Link<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;UP BROADCAST RUNNING MULTICAST &nbsp;MTU:1500 &nbsp;Metric:1<br>
<br>
Script is:<br>
rothen@sata1:/opt/download/OpenMoko$ cat usbsetup<br>
sudo iptables -A POSTROUTING -t nat -j MASQUERADE -s <a href="http://192.168.0.0/24" target="_blank">192.168.0.0/24</a><br>
sudo sysctl -w net.ipv4.ip_forward=1<br>
sudo ip addr add <a href="http://192.168.0.200/24" target="_blank">192.168.0.200/24</a> dev usb0<br>
sudo ifconfig usb0 up<br>
ifconfig usb0<br>
ping -c 2 mok<br>
rothen@sata1:/opt/download/OpenMoko$</blockquote><div><br>By default, your desktop PC has 192.168.0.200 and the FR has 192.168.0.202. Try this entry in /etc/network/interfaces on the FR:<br><br>auto usb0<br>iface usb0 inet static<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; address 192.168.0.202<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; netmask 255.255.255.0<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; network 192.168.0.0<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; gateway 192.168.0.200<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # some folks have the next line here enabled<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # echo &quot;nameserver 192.168.0.200&quot; &gt;/etc/resolv.conf<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # still others may say: bullshit honey, we need a real nameserver in here<br><br>and on your desktop PC in the very same file:<br><br>allow-hotplug usb0<br>iface usb0 inet static<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; address 192.168.0.200<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; netmask 255.255.255.0<br><br></div></div>