Hello everyone--first post here and looking forward to a long and mutually beneficial relationship!
Now for the good stuff--I have a Satellite 6100 Pro (Linux Ubuntu 6.06.1 and Windows XP dual boot) 768 M Ram - 40 Gig hd -- Pent D processor. When I am on the road (truck driver) I boot into windows so I can connect to the internet using my T-Mobile GC89 braodband card which works like a champ almost everywhere I go. I was trying to go strictly linux OS pretty soon, but can't find a driver for this card for linux. Anyone out there have any how to's on this one? I called T-Mobile customer support and they adivse their driver does not support linux.

Dani AI

Generated

As reported and as hinted, the GC89 is a Sony Ericsson Type‑II CardBus PC Card that combines a GSM/GPRS/EDGE modem and a 802.11b/g WLAN adapter; the official package ships Windows drivers and a “Wireless Manager” but no native Linux installer. The practical Linux route is to treat the GC89’s cellular side as a serial modem and use standard PPP/chat tooling rather than waiting for a vendor kernel driver. (manualzilla.com)

Practical checklist (what people have used successfully):

  • Confirm PCMCIA/CardBus support and install ppp/chat (and wvdial if preferred). Insert the card and inspect kernel messages (dmesg or /var/log/messages) to see which tty node was created (examples vary: /dev/ttyS0, /dev/ttyS14, etc.). If the card’s serial node is unusual, create the device node and/or use setserial to expose higher baud rates (many GC‑series cards need nonstandard baud handling). Prepare a small chat script that sends the usual AT sequence (reset, PIN if needed, set PDP context with your APN, then dial *99***1#) and call pppd with that chat file. (rk.edu.pl)

Quick example (trimmed) — run these as part of a chat script used by pppd:

AT+CFUN=1,1
AT+CPIN=<PIN-if-required>
AT+CGDCONT=1,"IP","<your-APN>"
ATD*99***1#

Debug notes: test the serial link interactively with minicom or echo/cat to confirm AT replies; if pppd/chat stalls check flow control and line settings (stty -a -F /dev/ttyX) and enable pppd debug and syslog to capture the exchange. The WLAN half historically required the Windows driver (semwl5.inf on the GC89 CD) and often needs ndiswrapper or a native driver — that’s a separate effort. For examples and detailed chat/pppd templates see the community how‑tos and PPP debugging threads. ()

Recommended Answers

All 2 Replies

He's right. There aren't any drivers out for the GC89.

You can manually do it with AT commands, although it's quite complex and I hardly understand any of it myself. Here's some links I encountered on how to do this with your card (and similar chipsets):
http://www.linuxforums.org/forum/linux-networking/48900-linux-gprs-gsm-wireless-cards.html?highlight=gc83
http://forums.gentoo.org/viewtopic-t-246623-highlight-gc83.html
http://www.epanorama.net/phpBB2/viewtopic.php?t=14923&

Good luck.

Thanks for the quick reply--the sites you suggested were very interesting and I will be using them--probably the last one listed, and see if I can get this thing off the ground. Thanks again and I will let you know if I get it up and running.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.