Skip to main content

Tethering Android in Ubuntu

First off, I think you can tether any Android phone to create an Internet connection no matter what computer you have, though the methods differ slightly by type (search for PDANet, Barnacle, EasyTether in the market). Legally and technically, it appears possible. Verizon won't give you support to do it and if you ask for help, Verizon will likely want you to pay an additional $50 a month for some kind of a mobile data plan (yikes!). In terms of xfer cap, I've heard you have up to 5GB per month free on the "unlimited" data plan (yeah. I know. Seems contradictory, right?). After that, it's $0.05 per MB, I believe. That total includes any xfers you make on the phone alone. Not bad, I wouldn't think... I don't see most people hitting huge xfers with the mobile phone and hopefully the tethering is used as a backup, not the norm.

As for info from Verizon on this, if found this post on their forums:
http://forums.verizon.com/t5/Android-Devices/TOS-limitations-on-tethering-Citation-needed/m-p/146162#M9721

Here is the response I got. A little more detailed than the other. Basically I got out of it what the guy above me says. Don't abuse it and if you have problems don't complain to Verizon about it cause it ain't their problem.

Thank you for contacting our Verizon Wireless website. We are happy to assist you with your question about using a Verizon Wireless device as a tethered modem.

We will assist you by providing information on our Mobile Broadband Connect feature. This feature enables a device to be used as a tethered modem.

Dear [Valued Customer],

To use a Verizon Wireless device as a tethered modem, the following requirements must be met:

1. You will need a device that supports our Mobile Broadband Connect feature

2. You will need our VZAccess Manager software

3. You will need to add the Mobile Broadband Connect feature to your account

The Motorola Droid does not support our Mobile Broadband Connect feature. Because of this, VZAccess Manager software is not available. Also, the Mobile Broadband Connect feature cannot be added to the account. Because the Motorola Droid does not meet the requirements that we have for tethered modem usage, the device should not be used as a tethered modem. While we apologize that tethered modem usage is not available with the Droid, please note that we are unable to advocate the use of a third party application, such as PDAnet (Windows or Mac only).

We hope you find this information helpful. More information on the Droid device can be found at the following website:

http://support.vzw.com/clc/features/data_services/android_os.html

Other troubleshooting tips and helpful product information can be found at www.verizonwireless.com/data. It has been a pleasure assisting you today. We make it our personal goal to resolve all of your concerns. We sincerely hope that you feel we have done that today. Should you feel your current concerns are not fully resolved, please reply back to this email or call us at 1-800-922-0204 and we will happily address them for you. We appreciate your business and thank you for choosing Verizon Wireless.



So, looks like it can be done for $30 (one time fee) on Windows/Mac without much headache. PDAnet doesn't seem to be avail for Linux. :( However, the Linux solution seems pretty sound as well and is completely free:
http://www.humans-enabled.com/2009/12/how-to-tether-your-verizon-droid-as.html

I've tested this on Ubuntu 9.04, 9.10, and 10.04. It worked flawlessly an all three with my Droid Incredible and my dad's Droid OG.

Comments

Popular posts from this blog

Black Cursors on Win7/2008 R2 Using rdesktop for Ubuntu 10.04

I recently setup a Win 2008 R2 VM and proceeded to remote connect to it from Ubuntu 10.04. Everything worked perfectly except the mouse cursors were black (and some were corrupt). Solution? Use a newer version of rdesktop that doesn't ship with Ubuntu. There is a handy PPA that can be added using the following command: sudo apt-add-repository ppa:ricolai/ppa sudo apt-get update sudo apt-get install rdesktop [UPDATE] It appears ricolai may have removed the package from his PPA. To remedy the situation, I've uploaded the working binaries for x64. Sorry, I don't have the x86 any longer. More information on the bug can be found here: https://bugs.launchpad.net/ubuntu/+source/rdesktop/+bug/385974?comments=all

Getting the Hauppauge WinTV-HVR-2250 to work in Ubuntu 10.04

Really just posting this for my own reference later, but here's the link and the details: Enter this into your Terminal it is the code for the firmware and to install it Code: wget http://www.steventoth.net/linux/hvr22xx/22xxdrv_27086.zip wget http://www.steventoth.net/linux/hvr22xx/HVR-12x0-14x0-17x0_1_25_25271_WHQL.zip wget http://www.steventoth.net/linux/hvr22xx/extract.sh Code: sh extract.sh;sudo cp *fw /lib/firmware you need to install mercurial and build essential for the next steps Code: sudo apt-get install mercurial libncurses5-dev then we need the driver using this command to fetch Code: hg clone http://kernellabs.com/hg/saa7164-stable/ now change to the directory Code: cd saa7164-stable then run make Code: make CONFIG_DVB_FIREDTV:=n that will take some time, go grab a drink and wait it out, when it completes run this command Code: sudo make install wait for that to complete and reboot from the command line Code: sudo reboot Note that an application like TVtime will not

Mounting VMware VMDK Disks in Ubuntu (Linux)

Took me a while to find the info on this, but it's fairly simple once you piece together all the information out there. First off, I'm not converting this to VirtualBox. I'm simply accessing the HD as though it were mounted on my local file system (Ubuntu). The VMDK image is for a WinXP virtual machine. First off, verify you have vmware-mount on your system. Drop to terminal, type "vmware-mount". You should get info regarding usage. If not, you need to install VMware Server or VMware Workstation (it's bundled with them). When prompted during the install, say 'Yes' to installing the additional tools packages. Not sure which one it's in, but it's there. Sorry, perhaps someone else can clarify this point. Next, navigate to the location of your VMDK and type "vmware-mount -p .vmdk". This will show you a list of mount points within the file (first column). Create /mnt/ using "mkdir /mnt/ " Next, type "sudo vmware-m