techFreak
Member
Hello All,
I know it's been done before but i couldn't find a complete guide to connect your GP2X to Internet with USB network function and use Opera to surf the web.
1. Go to Setting/System and select "ON" from Menu Extension option.
2. Select ON or ALWAYS ON from USB Network from advanced settings. No need to set up IP address. We will do it with a bash script later.
3. Connect the USB cable to your GP2X and PC. Windows XP will recognize the device as Linux USB Ethernet. Set up the device and continue next step.
4. Go to Network settings and choose the internet connection that connects your computer to Internet. right click and go to properities. Select Advanced tab. Thick "Other users can connect Internet using this computer's connection" (I'm not sure because I don't use English version of XP) Select network connection belongs to Linux USB Ethernet device. IP will be changed to 192.168.0.1 automatically.
5. Now you have to give an approprite IP address to GP2X and show the route to Internet:
You can download the script here.
Copy the file to your SD card and run it from Utilities menu.
6. You are connected to Internet now. Run Qtopia and browse the web with Opera Web Browser.
Have a nice day! B)
I know it's been done before but i couldn't find a complete guide to connect your GP2X to Internet with USB network function and use Opera to surf the web.
1. Go to Setting/System and select "ON" from Menu Extension option.
2. Select ON or ALWAYS ON from USB Network from advanced settings. No need to set up IP address. We will do it with a bash script later.
3. Connect the USB cable to your GP2X and PC. Windows XP will recognize the device as Linux USB Ethernet. Set up the device and continue next step.
4. Go to Network settings and choose the internet connection that connects your computer to Internet. right click and go to properities. Select Advanced tab. Thick "Other users can connect Internet using this computer's connection" (I'm not sure because I don't use English version of XP) Select network connection belongs to Linux USB Ethernet device. IP will be changed to 192.168.0.1 automatically.
5. Now you have to give an approprite IP address to GP2X and show the route to Internet:
Code:
#!/bin/sh
ifconfig usb0 192.168.0.2 netmask 255.255.255.0 up
route add default gw 192.168.0.1
# Return Menu
cd /usr/gp2x
exec ./gp2xmenu
You can download the script here.
Copy the file to your SD card and run it from Utilities menu.
6. You are connected to Internet now. Run Qtopia and browse the web with Opera Web Browser.
Have a nice day! B)