Discuss EVDO PC Cards, ExpressCards, EVDO USB, PDAs, Phones, Coverage and Mobile Broadband Cards.
Discuss Verizon and Sprint Coverage. CradlePoint CTR350 / PHS300/ MBR1000 & Kyocera KR1 / KR2 & LinkSys WRT54G3G-ST Forums!
|
EVDOforums.com Discussion forum for EVDO users
|
Our sites Include:
EVDO Info :: EVDO Forums :: EVDO Maps :: EVDO Blog :: 3Gstore.com
To purchase your EVDO Card / Antenna / Amplifier / Router from the EVDO Experts, just contact us!
| View previous topic :: View next topic |
| Author |
Message |
Michael Site Admin
Joined: 13 Jan 2005 Posts: 5069 Location: Cary, IL
|
Posted: Wed Oct 18, 2006 11:38 am Post subject: Franklin CDU-550 Linux Directions |
|
|
Here is the information (direct from Franklin) for getting the Franklin USB EVDO CDU-550 Modem working with Linux.
| Quote: | Linux systems already have USB modem driver but needs to assign a device to a special node. After the assignment, user can use the node as a modem device.
Attached file is a shell script to create a node for "C-motech" modem. The script produces nodes which mount modem as a serial device. The CDU-550 modem will be mounted on /dev/ttyACM# where # is a number, for example, /dev/ttyACM2.
| Code: | #!/bin/bash
# usb : acm
echo -e "\033[32mMake Modem Device\033[0m"
for i in `seq 0 2` ; do
mknod /dev/ttyACM$i c 166 $i
done
echo -e "\033[32mMake Dual Mode Device\033[0m"
for i in `seq 0 2` ; do
mknod /dev/ttyUSB$i c 188 $i
done
echo -e "\033[32mMake driver rule\033[0m"
/sbin/modprobe usbserial vendor=0x16d8 product=0x5511
/sbin/modprobe usbserial vendor=0x16d8 product=0x5512
/sbin/modprobe usbserial vendor=0x16d8 product=0x5513
/sbin/modprobe usbserial vendor=0x16d8 product=0x5521
/sbin/modprobe usbserial vendor=0x16d8 product=0x5522
/sbin/modprobe usbserial vendor=0x16d8 product=0x5523
/sbin/modprobe usbserial vendor=0x16d8 product=0x5531
/sbin/modprobe usbserial vendor=0x16d8 product=0x5532
/sbin/modprobe usbserial vendor=0x16d8 product=0x5533
/sbin/modprobe usbserial vendor=0x16d8 product=0x5541
/sbin/modprobe usbserial vendor=0x16d8 product=0x5542
/sbin/modprobe usbserial vendor=0x16d8 product=0x5543
/sbin/modprobe usbserial vendor=0x16d8 product=0x5551
/sbin/modprobe usbserial vendor=0x16d8 product=0x5552
/sbin/modprobe usbserial vendor=0x16d8 product=0x5553
/sbin/modprobe usbserial vendor=0x16d8 product=0x5561
/sbin/modprobe usbserial vendor=0x16d8 product=0x5562
/sbin/modprobe usbserial vendor=0x16d8 product=0x5563
/sbin/modprobe usbserial vendor=0x16d8 product=0x6011
/sbin/modprobe usbserial vendor=0x16d8 product=0x6012
/sbin/modprobe usbserial vendor=0x16d8 product=0x6013
/sbin/modprobe usbserial vendor=0x16d8 product=0x6021
/sbin/modprobe usbserial vendor=0x16d8 product=0x6022
/sbin/modprobe usbserial vendor=0x16d8 product=0x6023
/sbin/modprobe usbserial vendor=0x16d8 product=0x6511
/sbin/modprobe usbserial vendor=0x16d8 product=0x6512
/sbin/modprobe usbserial vendor=0x16d8 product=0x6513
/sbin/modprobe usbserial vendor=0x16d8 product=0x6521
/sbin/modprobe usbserial vendor=0x16d8 product=0x6522
/sbin/modprobe usbserial vendor=0x16d8 product=0x6523
/sbin/modprobe usbserial vendor=0x16d8 product=0x6531
/sbin/modprobe usbserial vendor=0x16d8 product=0x6532
/sbin/modprobe usbserial vendor=0x16d8 product=0x6533
/sbin/modprobe usbserial vendor=0x16d8 product=0x6541
/sbin/modprobe usbserial vendor=0x16d8 product=0x6542
/sbin/modprobe usbserial vendor=0x16d8 product=0x6543
/sbin/modprobe usbserial vendor=0x16d8 product=0x6551
/sbin/modprobe usbserial vendor=0x16d8 product=0x6552
/sbin/modprobe usbserial vendor=0x16d8 product=0x6553
/sbin/modprobe usbserial vendor=0x16d8 product=0x6561
/sbin/modprobe usbserial vendor=0x16d8 product=0x6562
/sbin/modprobe usbserial vendor=0x16d8 product=0x6563 |
|
_________________ EVDO :: EVDO News :: EVDO Antennas :: Buy Verizon :: Buy Sprint :: EVDO Amplifier |
|
| Back to top |
|
 |
edoc EVDO Newbie
Joined: 07 May 2007 Posts: 5
|
Posted: Sat Dec 29, 2007 2:36 pm Post subject: More help with Franklin CDU550 and Linux? |
|
|
I tried to follow the instructions posted here but am not certain how to proceed. It is very possible that I skipped a step or did something else incorrectly. Here are the steps I followed:
1. Opened geany
2. Pasted in all of the text following "Code:" below.
3. Saved as /root/my-applications/franklincdu550/cdu550.sh
4. cd to: /root/my-applications/franklincdu550
5. Clicked on "cdu550.sh"
6. No errors, just a new "#" prompt
Did I do things correctly?
How do I get Setup - Network Wizard to see my USB modem, please?
Thanks! doc |
|
| Back to top |
|
 |
mollask EVDO Newbie
Joined: 12 Jun 2008 Posts: 5
|
Posted: Mon Jun 30, 2008 11:20 am Post subject: Re: More help with Franklin CDU550 and Linux? |
|
|
| edoc wrote: | I tried to follow the instructions posted here but am not certain how to proceed. It is very possible that I skipped a step or did something else incorrectly. Here are the steps I followed:
... |
Has anyone figured this out? Has the replier retried and fixed the issue? _________________ Bi-Valve |
|
| Back to top |
|
 |
edoc EVDO Newbie
Joined: 07 May 2007 Posts: 5
|
Posted: Mon Jun 30, 2008 12:36 pm Post subject: |
|
|
I gave up and returned the device.
doc |
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
 Sprint Rev A USB: Compass 597
 Sprint Rev A ExpressCard: Merlin EX720
 Purchase an V740 Rev A ExpressCard
 Sprint U727
 CTR350 Router
 CradlePoint PHS300
 Purchase a MBR1000
 Purchase an EVDO Booster Antenna
 Purchase a LinkSys 3GV2 Router
 Purchase an EVDO Amplifier
 Your Mac EVDO Experts
|
|