ECIADSL - Howto for USB ADSL Modems

Quick to answer questions about finding your way around Linux Mint as a new user.
Forum rules
There are no such things as "stupid" questions. However if you think your question is a bit stupid, then this is the right place for you to post it. Stick to easy to-the-point questions that you feel people can answer fast. For long and complicated questions use the other forums in the support section.
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
itoffshore

ECIADSL - Howto for USB ADSL Modems

Post by itoffshore »

I couldn't find any guides anywhere so here's a how to get a USB Modem working in Mint 4.0 XFCE - adjust for different Mint versions.

(1) Mount the USB filesystem :

Code: Select all

sudo nano /etc/fstab
& insert the following code (users of the gnome version of Mint use "gedit" instead of "nano" above)

Code: Select all

# USB File system (for modem)
none            /proc/bus/usb   usbfs   defaults        0       0
It will then mount at boot - to mount it immediately:

Code: Select all

mount -t usbfs none /proc/bus/usb
(2) Set the Terminal to use Bash as the default shell :

Code: Select all

sudo ln -sf /bin/bash /bin/sh
(3) Download the latest source http://eciadsl.flashtux.org/download/ec ... .12.tar.gz

Get the tools for Gutsy or whichever compatible repository version that you will need to compile from http://packages.ubuntu.com :

gcc-4.1-base
gcc-4.1
libc6-dev
libstdc++6
linux-libc-dev

If you have some sort of internet connection just install "build-essential" - but if your reading this you probably have no connection in Linux - so............

Right click the above Deb files you downloaded & select install with GDeb - you may have to fiddle around with the order they install as some depend on the other.

(4) Unpack the ECIADSL source & open a Terminal in the source directory to build & install:

Code: Select all

./configure --prefix=/usr
make
make install
Look in the User Guide on the ECIADSL website for building your own Synch Bin file by sniffing your USB Modem running-under windows - less hassle than trying out all the pre-compiled ones.

(5) Probe your USB Modem for the settings needed to configure it:

Code: Select all

sudo eciadsl-probe-device
& run the config program:

Code: Select all

sudo eciadsl-config-text
& start the modem:

Code: Select all

sudo eciadsl-doctor
if it ever crashes or fails to connect (as it does occasionally)

Code: Select all

sudo killall eciadsl-doctor
sudo  killall eciadsl-pppoeci
sudo  killall eciadsl-synch
& unplug your modem for a few seconds & try connecting as above again.

Once you've configured it start with eciadsl-start instead of eciadsl-doctor
as you don't need the verbose messages.

Stuart.
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
Husse

Re: ECIADSL - Howto for USB ADSL Modems

Post by Husse »

Guides like this are always welcome
Locked

Return to “Beginner Questions”