<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.16.1">
</HEAD>
<BODY>
<BR>
On Mon, 2008-02-25 at 12:33 -0500, DScherquist@lviservices.com wrote:<BR>
<BLOCKQUOTE TYPE=CITE>
    <BR>
    <FONT SIZE="2"><FONT COLOR="#000000">Does anyone know how to user a Verizon Wireless Wan pcmcia cad with Ubuntu? According to Verizon they do not support Linux. </FONT></FONT><BR>
    <FONT SIZE="2"><FONT COLOR="#000000">With that said im sure that there is a way to  have them work in harmony.</FONT></FONT><FONT COLOR="#000000"> </FONT><BR>
    <FONT SIZE="2"><FONT COLOR="#000000">Any suggestions</FONT></FONT><FONT COLOR="#000000"> </FONT><BR>
    <BR>
    <BR>
    <FONT SIZE="2"><FONT COLOR="#000000">Thanks</FONT></FONT><FONT COLOR="#000000"> </FONT><BR>
    <BR>
</BLOCKQUOTE>
This is the guide I used for a Verizon V740 Express Card set up on 7.10 and it has worked well.  Not sure where I acquired this guide but hope it works for you.  Please note the series of ? on the "Username" line is your assigned telephone number for your card.<BR>
<BR>
 Lightbulb  [SOLVED] How To set up EVDO card or usb enabled phone ( CDMA modem ) Updated<BR>
This section has been created to fix issues created in Gutsy and applies to Gutsy only<BR>
After extensive tests this is for now the only clean way to get EVDO modem to work on a new 7.10 installation .<BR>
All upgrades directry from Feisty seem to work fine unless the Evdo card / modem is upgraded then it automatically plugs default Gutsy driver.<BR>
In case this happens or you just installed fresh 7.10 you can execute following fix.<BR>
<BR>
Gutsy changed USB handling so to re enable /proc/bus/usb/devices directory type in terminal :<BR>
<BR>
Code:<BR>
<BR>
gedit /etc/init.d/mountdevsubfs.sh<BR>
<BR>
Now remove " # " symbols from the front of following lines of code :<BR>
Code:<BR>
<BR>
        #mkdir -p /dev/bus/usb/.usbfs<BR>
        #domount usbfs "" /dev/bus/usb/.usbfs -obusmode=0700,devmode=0600,listmode=0644<BR>
        #ln -s .usbfs/devices /dev/bus/usb/devices<BR>
        #mount --rbind /dev/bus/usb /proc/bus/usb<BR>
<BR>
Now to stop new Airprime driver from loading execute following in the terminal:<BR>
Code:<BR>
<BR>
sudo gedit /etc/modprobe.d/blacklist<BR>
<BR>
Insert at the bottom :<BR>
Code:<BR>
<BR>
#Block Airprime driver to force kernel to use usbserial<BR>
blacklist airprime<BR>
<BR>
>From here you should be able to continue with this how to as above fix will enable single device identifier which can be uset for setup with wvdial , KPPP dialer or Gnome PPP .<BR>
If you find more streamlined way to do it or other posts that may help us feel free to let us know by posting it in this thread .<BR>
<BR>
I like to thanks to all those that have helped me through forums,web pages and personal support to create this how to .<BR>
<BR>
<BR>
I have tested it on the 32bit 6.10 and 7.04 Ubuntu version so back up any files you will be editing before you proceed .<BR>
Devices i have used are Verizozn Motorola v3 EVDO enabled phone connected via USB cable as well as number of other EVDO cards like PC5750 .<BR>
<BR>
Make sure your device is activated by service provider and if possible test on other OS to witch you may have software and drivers.<BR>
<BR>
Open terminal window and type:<BR>
Code:<BR>
<BR>
 sudo -i<BR>
<BR>
enter your password.<BR>
Now all commands typed in this window will be executed with root privileges .<BR>
In terminal type:<BR>
Code:<BR>
<BR>
apt-get update<BR>
apt-get upgrade<BR>
apt-get install wvdial<BR>
<BR>
Before you insert the Card or connect USB cable open terminal window and type :<BR>
Code:<BR>
<BR>
 cat /proc/bus/usb/devices > devices<BR>
<BR>
Insert your data card or plug in USB cable and wait for a few seconds before continuing.<BR>
In terminal type:<BR>
Code:<BR>
<BR>
dmesg<BR>
<BR>
You will get output with some device info like this :<BR>
Code:<BR>
<BR>
[17186692.460000] usb 3-1: configuration #1 chosen from 2 choices<BR>
[17186692.460000] cdc_acm 3-1:1.0: ttyACM0: USB ACM device<BR>
[17186708.176000] usb 3-1: USB disconnect, address 4<BR>
[17186714.588000] usb 3-1: new full speed USB device using uhci_hcd and address<BR>
<BR>
At the end of this output you will find your device witch will be represented like this: ttyACM0 or ttyUSB or similar , make note of it you will need it later.<BR>
Now type in terminal:<BR>
Code:<BR>
<BR>
   diff /proc/bus/usb/devices devices | grep Vendor<BR>
<BR>
Output will be similar to:<BR>
Code:<BR>
<BR>
 < P: Vendor=1234 ProdID=5678 Rev= 0.00<BR>
<BR>
Make note of lines: Vendor=1234 , ProdID=5678<BR>
<BR>
Now in teminal type following code Replacing values 1234 and 5678 with your own output from previously noted lines ::<BR>
Code:<BR>
<BR>
  modprobe usbserial vendor=0x1234 product=0x5678<BR>
<BR>
Now you will edit wvdial config file by first typing in terminal :<BR>
Code:<BR>
<BR>
  sudo gedit /etc/wvdial.conf<BR>
<BR>
In new opened window replace all text with following :<BR>
Code:<BR>
<BR>
[Dialer Defaults] <BR>
Stupid Mode = on <BR>
Modem = /dev/ttyACM0 <BR>
Baud = 921600 <BR>
Init = ATZ <BR>
Init2 = ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0 <BR>
Phone = #777 <BR>
Username = ??????????@vzw3g.com<BR>
Password = vzw <BR>
Init1 = ATZ <BR>
ISDN = 0 <BR>
Modem Type = Analog Modem <BR>
Auto Reconnect = on <BR>
Carrier Check = no <BR>
[Dialer shh] <BR>
Init3 = ATM0 <BR>
[Dialer pulse] <BR>
Dial Command = ATDP<BR>
<BR>
In the line "Modem =" replace ttyACM0 with value you noted from output of " dmesg " command.<BR>
In the line " Username = " put your phone number followed by your providers domain , for Verizon it is area code , your phone number and domain ,<BR>
in this format: <A HREF="mailto:9178889999@vzw3g.com">9178889999@vzw3g.com</A><BR>
for sprint it will be 9178889999@sprintpcs.com , for At&t / Cingular WAP@CINGULARGPRS.COM ,for Alltel 9178889999@alltel.net and so on , further post have config's posted for other providers.<BR>
In line " password = " in case of Verizon put : " vzw " for Cingular : " cingular1 " and so on , make sure to check with your provider as username and/or password may differ for other regions and countries .<BR>
<BR>
If you are Cingular/AT&T subscriber and after completing whole guide you have problem with dropping connection you have to add another int line in wvdial script which is posted here <A HREF="http://ubuntuforums.org/showthread.php?t=343989&page=3">http://ubuntuforums.org/showthread.php?t=343989&page=3</A><BR>
If you need any specific info regarding your domain or password please contact your cellular provider.<BR>
The last thing you need to configure is wvdial line checking , by disabling LCP echo checking witch is not supported by most of providers.<BR>
Open terminal and type:<BR>
Code:<BR>
<BR>
sudo gedit /etc/ppp/peers/wvdial<BR>
<BR>
And insert aditionally those lines:<BR>
Code:<BR>
<BR>
lcp-echo-failure 0<BR>
lcp-echo-interval 0<BR>
<BR>
Make sure your ethernet jack is unplugged and wifi radio switch is turned off.<BR>
Now you can start connection by typing in terminal :<BR>
Code:<BR>
<BR>
wvdial<BR>
<BR>
Another thing i have been suggested is automating the connection process.<BR>
To do so in Gnome go to :<BR>
Code:<BR>
<BR>
System > Preferences > Sessions<BR>
 next, click on the tab labeled, "Startup Programs"<BR>
 then click the "Add" button. <BR>
In the Startup Command field, enter "wvdial" and then click "OK". <BR>
Then restart your system.<BR>
<BR>
Now make sure your EVDO card is inserted before you boot it up , it will initiate the connection process automatically in the background connecting you to internet the second you log in.<BR>
<BR>
Additional reads on the subject:<BR>
<A HREF="http://ubuntuforums.org/archive/index.php/t-366229.html">http://ubuntuforums.org/archive/index.php/t-366229.html</A><BR>
<A HREF="http://kenkinder.com/evdo-pc5740/">http://kenkinder.com/evdo-pc5740/</A><BR>
<A HREF="http://doc.gwos.org/index.php/EV-DO">http://doc.gwos.org/index.php/EV-DO</A><BR>
<BR>
Please let me know about any problems and bugs you will encounter.<BR>
Happy surfing.<BR>
__________________<BR>
Latitude D610 , 2GhzCentrino , 2Gig-ram , Intel 915 chipset integr.graphics , Iw-2200-miniPCI , Pantech 5750 , Orinoco-Gold-Pcmci , 120gig-HD , 14.1-SXGA , Xp-pro , Feisty<BR>
Last edited by Mach1US : 3 Weeks Ago at 03:28 PM.<BR>
Reply With Quote
</BODY>
</HTML>