Tuesday, January 8, 2008

Work on iPAQ 5550 PocketPC

Use the COM port to connect with PC. On Windows, HyperTerminal is perfact for the connection. In most time, it is desire to work on Linux, here is the way to connect througth ssh on my Linux Host:


ssh root@192.168.10.177


you need to get the ip address, user name and password to enter into the system.
To find out the ip address, you can start the terminal in iPAQ (GPE installed), and type ifconfig.

Copy files forth and back with scp on Linux Host:

scp foo root@192.168.10.177:/home/root
scp -p -r root@192.168.10.177:/home/root/foo foo



Right now my iPAQ's ip address is connected to the wireless network, and is associated with an external ip address (NOT 192*), so it can not ping my internel network, but the linux host can ping the external ip address. That is why scp works.