Hi asphalt,
First, you need to know that by default when you have a dial up modem (as it looks you have), there is no default for specifying the modem device. Usually, it is a simple matter (as root) to issue the following command:
$ sudo ln -s /dev/ttyS0 /dev/modem
or
# ln -s /dev/ttyS0 /dev/modem
This, however, may not work for you since it appears that you have a usb modem that was detected and configured for you in wvdial.conf. So, ignore the above symbolic link command unless you have an external modem.
What you need to do is to further setup the /etc/wvdial.conf file for dialing into your ISP with your account information. Here is a brief look at the fields you should specify:
[Dialer Defaults]
...
[Dialer phone1]
Dial Prefix = 1
Phone = <7-digit phone number>
Password = <type password>
Username = <type ISP login account name, usually email address>
Area Code = <type area code of ISP login phone number>
Inherits = Dialer Defaults
You can add serveral phone numbers for which the ISP provides dial up in your area. Note: it is best to make sure the phone numbers are in your local calling area so you don't get toll charges to your phone, or increase the service area of your phone service if necessary.
Then, after you are setup properly in the /etc/wvdial.conf file, the way you connect to the Internet is from a command line Terminal by issuing the command:
$ wvdial phone1
or
$ wvdial phone2
etc.
Most likely when you first look at the /etc/wvdial.conf file, the setup routine has probably already filled out the [Dialer Defaults] section. You shoud read the man page for wvdial: man wvdial
-- Tom
__________________ The independence created by philosophical insight is - in my opinion - the mark of distinction
between a mere artisan or specialist and a real seeker after truth. - Einstein 1944
Imagination is more important than knowledge. - Einstein |