I got my iBurst card working on Ubuntu 7.10 (aka Gutsy Gibbon). You need to download the latest iBurst driver called ibdriver, then build and install it. Configure some pcmcia files, run pppoeconf and you should be able to connect to the Internet. The following describes what I did to get my iBurst working on Gutsy Gibbon.
1. Make sure you have libc6-dev installed.
$ sudo apt-get install libc6-dev
2. Download ibdriver 1.3.2 from Sourceforge.
3. Move the tarball to a temporary build folder and untar it.
$ mv ~/Desktop/ibdriver-1.3.2-linux-2.6.20.tar.gz ~/src/build
$ tar zxvf ibdriver-1.3.2-linux-2.6.20.tar.gz
4. Make and install the driver.
$ cd ~/src/build/ibdriver-1.3.2-linux-2.6.20
$ make
$ sudo make install
5. Configure the PCMCIA files.
$ gksudo gedit /etc/pcmcia/config.opts
Add the following at the end of the config file.
# iBurst card
device "iburst_cs"
class "network" module "ib-pcmcia"
card "ArrayComm ut02"
manfid 0x02e3, 0x0001
bind "iburst_cs"
card "ArrayComm ut02"
manfid 0x02e3, 0x0002
bind "iburst_cs"
Create the /etc/modprobe.d/iburst file.
$ gksudo gedit /etc/modprobe.d/iburst
Add the following text to the file, save and close the file.
options ib-net ifname="eth%d"
6. It is a good idea to restart your laptop at this point. Plug in your PCMCIA iBurst card and use pccardctl to check that the card was detected by the driver.
$ pccardctl status
You should see that the device is bound to the “iburst_cs” driver.
7. Run pppoeconf to connect to your iBurst provider.
$ sudo pppoeconf
A text-based menu program will guide you through the next steps, which are:
Once you have finished these steps, your connection should be working.
8. Starting the connection.
$ sudo pon dsl-provider
9. Stopping the connection.
$ sudo poff dsl-provider
Thanks alot for this helpful guide, I will be back to tell you how it goes.
jB
Hey Nick thanks for this guide do you have any ideas on how to setup the USB MODEM?
I’m now leaving this comment through my iburst modem. Thanks for the instruction!
Looks good! I’m just not getting my card to work. I get `pcmcia_socket0: time out after reset.` when I insert the card. This is with and without the kernel modules loaded…
Any ideas?
Thanx for the instructions, but my laptop can’t seem to detect the card. When I insert it, I get `pcmcia_socket0: time out after reset.` in the syslog and dmesg. This is with and without the kernel modules loaded.
Any ideas?
Maybe try these instructions: http://ca.rroll.net/2008/04/28/iburst-driver-doesnt-compile-in-ubuntu-hardy-heron/