Everything Motorola Q  
Home Motorola Q Store Moto Q Software News Moto Q Blog Motorola Q Reviews Moto Q Forums FAQs Wiki Contact Us Everything Q RSS feed


Go Back   Motorola Q Forum | Everything Q > Moto Q Software > Software

Notices

Reply
 
Thread Tools Display Modes
Old 10-25-2007, 12:55 AM   #11 (permalink)
 
Join Date: Sep 2007
Posts: 196
Thanks: 4
Thanked 2 Times in 2 Posts
daisyd681 is on a distinguished road
Default

So will the ethernet cables coming out of my walls work for this or do I have to get new ones? I am assuming that they go to a hub somewhere in the wall. I will try the downloads you gave me tomorrow.
daisyd681 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
Old 10-25-2007, 08:13 AM   #12 (permalink)
 
Join Date: Sep 2007
Location: Fresno California
Posts: 59
Thanks: 6
Thanked 2 Times in 2 Posts
Accordman is on a distinguished road
Send a message via AIM to Accordman Send a message via Yahoo to Accordman
Default

i mean honestly. thats a crapload of wok doing the whole lius thing. id just run some kind of broadband or see if the phone provider carries a card forthe pc the tether the pc itself though to the 360

posted on q
Accordman is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-25-2007, 09:45 AM   #13 (permalink)
 
Join Date: Sep 2007
Posts: 196
Thanks: 4
Thanked 2 Times in 2 Posts
daisyd681 is on a distinguished road
Default

Accordman, In a perfect world where money isn't an issue that's what I would do. As it is I may have to wait 'till payday to get this all set up. I got rid of the landline and the internet and my old cellphone to afford this Q so I'm going to get the most out of it.
daisyd681 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-25-2007, 01:28 PM   #14 (permalink)
 
Join Date: Aug 2007
Posts: 80
Thanks: 3
Thanked 23 Times in 9 Posts
Bobby Budnick is on a distinguished road
Default Xbox Live through WM5 AKU2 / Q with MOL2

Quote:
Originally Posted by Accordman View Post
i mean honestly. thats a crapload of wok doing the whole lius thing. id just run some kind of broadband or see if the phone provider carries a card forthe pc the tether the pc itself though to the 360

posted on q
What is the point of your post? Not only did you post twice in a row, you are misinformed on all counts. You fail. Get a basic networking education and take some remedial english classes.

As for everyone else, I tried to do this myself just for fun. I am on Xbox Live right now through my Q

Here are some basic requirements for doing this semi-easily:

PC:
Functional USB ports, preferably USB 2.0
At least 512 MB of ram
An ethernet card or built-in ethernet.

WM5 Device:
WM5 AKU2 or MOL2 or earlier

Misc:
Ethernet hub and 2 cables or 1 crossover cable
Mini USB to normal USB

The next step is set up the PC's OS. There are a few hurdles with doing this with Windows XP. First, bridging support is non-existent and the routing functionality AKA "Internet Connection Sharing" is buggy, featureless and slow. Second, it seems that in order to tether with Windows, you have to buy a third party utility. As you can see this is quickly getting expensive.

In comes GNU/Linux. It is free. Here is the link http://releases.ubuntu.com/7.10/ . I would recommend downloading and burning this ISO at 24x or slower on a CD-R as an ISO. You can do this in Windows with a program called Deepburner. Once the disc is finished you will have a bootable GNU/Linux live environment that will not make any permanent changes to the computer, yet is still usable for these purposes.

We are going to go step by step from here.

1. Put the Ubuntu or other GNU/Linux CD in your drive and start up or reboot.

2. Choose the first option at bootup, if you have trouble reset and try the second option for VGA mode.

3. Once you see the desktop, open the terminal at Applications > Accessories. > Terminal

4. Type this command to edit your modem information.
sudo nano /etc/wvdial.conf

5. Delete the contents of the file and paste the following here, deleting and filling in areas specific to your phone and provider. When you are finished, type CTRL-O and then hit enter to save. CTRL-X quits the editor.
[Dialer Defaults]
Stupid Mode = on
Modem = /dev/ttyACM0
Baud = 921600
Init = ATZ
Init2 = ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
Phone = #777
Username = yournumberhere@alltel.net
Password = alltel
Init1 = ATZ
ISDN = 0
Modem Type = Analog Modem
Auto Reconnect = on
Carrier Check = no
[Dialer shh]
Init3 = ATM0
[Dialer pulse]
Dial Command = ATDP

6. Type this command to set the IP address of your ethernet adapter. ifconfig lists all adapters if you are unsure.
sudo ifconfig eth0 192.168.0.1

7. Type these three commands in succession to enable IPv4 forwarding. (routing)
sudo -s
echo 1 > /proc/sys/net/ipv4/ip_forward
exit

8. Connect the Xbox to the computer's ethernet port with a crossover cable or a hub and 2 standard ethernet cables.

9. Enable "Advanced Network Functionality" on the phone and reboot it to clear the memory.

10. Go to Start > Accessories > "Modem Link" on the phone and choose "Activate".

11. Connect the phone to the PC via the USB cable.

12. Establish the digital dialup link. CTRL-C terminates the connection. This terminal window should stay open during the entire connection. Do not close it! If all goes well after issuing the command, you will be connected to your cell provider and should be able to access the internet on your GNU/Linux router!
sudo wvdial

13. Configure iptables to allow traffic to travel to and from the PPP interface and be forwarded to the other interfaces.
sudo iptables -t nat -A POSTROUTING -o ppp0 -j MASQUERADE

14. Finally, configure the Xbox for your new network. The IP should be 192.168.0.2 or any other unused IP on the subnet. The gateway should be 192.168.0.1. The DNS server should be one of the DNS servers listed in wvdial's output.

15. The Xbox connectivity test should work, and you should now be on live! Chatting and downloading things should be no problem. I would like to hear how playable the various games are for you.

Last edited by Bobby Budnick; 10-26-2007 at 01:10 AM. Reason: Rearranged 2 steps in the process...
Bobby Budnick is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-26-2007, 12:46 AM   #15 (permalink)
 
Join Date: Sep 2007
Posts: 196
Thanks: 4
Thanked 2 Times in 2 Posts
daisyd681 is on a distinguished road
Default

You are my hero.
I am assuming that all that will mwke sense once I dig in to the program? I actually have to get some work done the next few days. I've had my nose stuck in this thing since I got it on the 12th. Thanks a million.
Meira
daisyd681 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-26-2007, 07:19 AM   #16 (permalink)
 
Join Date: Sep 2007
Location: Fresno California
Posts: 59
Thanks: 6
Thanked 2 Times in 2 Posts
Accordman is on a distinguished road
Send a message via AIM to Accordman Send a message via Yahoo to Accordman
Default

Quote:
Originally Posted by Bobby Budnick View Post
What is the point of your post? Not only did you post twice in a row, you are misinformed on all counts. You fail. Get a basic networking education and take some remedial english classes.

As for everyone else, I tried to do this myself just for fun. I am on Xbox Live right now through my Q

Here are some basic requirements for doing this semi-easily:

PC:
Functional USB ports, preferably USB 2.0
At least 512 MB of ram
An ethernet card or built-in ethernet.

WM5 Device:
WM5 AKU2 or MOL2 or earlier

Misc:
Ethernet hub and 2 cables or 1 crossover cable
Mini USB to normal USB

The next step is set up the PC's OS. There are a few hurdles with doing this with Windows XP. First, bridging support is non-existent and the routing functionality AKA "Internet Connection Sharing" is buggy, featureless and slow. Second, it seems that in order to tether with Windows, you have to buy a third party utility. As you can see this is quickly getting expensive.

In comes GNU/Linux. It is free. Here is the link http://releases.ubuntu.com/7.10/ . I would recommend downloading and burning this ISO at 24x or slower on a CD-R as an ISO. You can do this in Windows with a program called Deepburner. Once the disc is finished you will have a bootable GNU/Linux live environment that will not make any permanent changes to the computer, yet is still usable for these purposes.

We are going to go step by step from here.

1. Put the Ubuntu or other GNU/Linux CD in your drive and start up or reboot.

2. Choose the first option at bootup, if you have trouble reset and try the second option for VGA mode.

3. Once you see the desktop, open the terminal at Applications > Accessories. > Terminal

4. Type this command to edit your modem information.
sudo nano /etc/wvdial.conf

5. Delete the contents of the file and paste the following here, deleting and filling in areas specific to your phone and provider. When you are finished, type CTRL-O and then hit enter to save. CTRL-X quits the editor.
[Dialer Defaults]
Stupid Mode = on
Modem = /dev/ttyACM0
Baud = 921600
Init = ATZ
Init2 = ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
Phone = #777
Username = yournumberhere@alltel.net
Password = alltel
Init1 = ATZ
ISDN = 0
Modem Type = Analog Modem
Auto Reconnect = on
Carrier Check = no
[Dialer shh]
Init3 = ATM0
[Dialer pulse]
Dial Command = ATDP

6. Type this command to set the IP address of your ethernet adapter. ifconfig lists all adapters if you are unsure.
sudo ifconfig eth0 192.168.0.1

7. Type these three commands in succession to enable IPv4 forwarding. (routing)
sudo -s
echo 1 > /proc/sys/net/ipv4/ip_forward
exit

8. Connect the Xbox to the computer's ethernet port with a crossover cable or a hub and 2 standard ethernet cables.

9. Enable "Advanced Network Functionality" on the phone and reboot it to clear the memory.

10. Go to Start > Accessories > "Modem Link" on the phone and choose "Activate".

11. Connect the phone to the PC via the USB cable.

12. Establish the digital dialup link. CTRL-C terminates the connection. This terminal window should stay open during the entire connection. Do not close it! If all goes well after issuing the command, you will be connected to your cell provider and should be able to access the internet on your GNU/Linux router!
sudo wvdial

13. Configure iptables to allow traffic to travel to and from the PPP interface and be forwarded to the other interfaces.
sudo iptables -t nat -A POSTROUTING -o ppp0 -j MASQUERADE

14. Finally, configure the Xbox for your new network. The IP should be 192.168.0.2 or any other unused IP on the subnet. The gateway should be 192.168.0.1. The DNS server should be one of the DNS servers listed in wvdial's output.

15. The Xbox connectivity test should work, and you should now be on live! Chatting and downloading things should be no problem. I would like to hear how playable the various games are for you.
the point of my post was to offer an alternative. no reason to be an asshat about it. i was on my q so i missed some keys big deal
Accordman is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-26-2007, 09:38 AM   #17 (permalink)
 
Join Date: Sep 2007
Posts: 196
Thanks: 4
Thanked 2 Times in 2 Posts
daisyd681 is on a distinguished road
Default

If you had read the posts in the thread you would have seen why it wasn't an alternative.
daisyd681 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-26-2007, 12:27 PM   #18 (permalink)
 
Join Date: Aug 2007
Posts: 80
Thanks: 3
Thanked 23 Times in 9 Posts
Bobby Budnick is on a distinguished road
Default

Quote:
Originally Posted by Accordman View Post
the point of my post was to offer an alternative. no reason to be an asshat about it. i was on my q so i missed some keys big deal
Actually I did not want a mentally retarded person spewing off wrong information. Stay out of this thread, troll, or I will be forced to report you to a mod. Once again you have broken forum etiquette and quoted a gigantic post. Just crawl into your shell and die.
Bobby Budnick is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-26-2007, 01:42 PM   #19 (permalink)
 
Join Date: Sep 2007
Location: Fresno California
Posts: 59
Thanks: 6
Thanked 2 Times in 2 Posts
Accordman is on a distinguished road
Send a message via AIM to Accordman Send a message via Yahoo to Accordman
Default

go ahead and report i did nothing wrong to you, now your acting like a child about it, as i stated before i posted from my Q, so the proper spelling and syntax wasnt there . so what. so report away
Accordman is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-26-2007, 02:10 PM   #20 (permalink)
 
Join Date: Oct 2006
Location: Earth
Posts: 160
Thanks: 7
Thanked 3 Times in 3 Posts
Suture is on a distinguished road
Default

Wouldn't the latency suck for gaming online over the Sprint wireless network?
Suture is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off


All times are GMT -5. The time now is 11:51 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
Integrated by BBpixel Team 2008 :: jvbPlugin R1015.37x.1