ecu, minicom, modemu, pcomm, seyon, termite, virtmodem, xc
>(specifically for Linpus.com, which is a variant of Fedora/Redhat
>that comes preinstalled on Acer Aspire One)?
Not familiar with it, but you probably want minicom. Of course, that
assumes you have a terminal server to dial in to. If your ISP has
such a service - fine. Most don't, but have ppp service. For that,
all you need is pppd which probably comes with your distro. There
are a number of ``helper'' programs such as wvdial, kppp, and
similar that might be useful, but I've always used a simple command
line script.
[galileo ~]$ cat /etc/ppp/options | column
lock crtscts nodetach defaultroute
/dev/modem modem 115200 noipdefault
[galileo ~]$ ls -l /etc/ppp/*ap-secrets /etc/resolv.conf
-rw------- 1 root root 99 Jun 16 2008 /etc/ppp/chap-secrets
-rw------- 1 root root 94 Jun 16 2008 /etc/ppp/pap-secrets
-rw-r--r-- 1 root root 49 Jun 16 2008 /etc/resolv.conf
[galileo ~]$ cat /usr/local/bin/dialin.example
exec /usr/sbin/pppd user
ibup...@example.com connect "/usr/sbin/chat
ABORT BUSY \"\" AT\&F1 OK ATDT2662902 CONNECT \"\d\c\""
[galileo ~]$
NOTE 1: That's one long (127 characters) line.
NOTE 2: The back-slashes are hiding the interior quotes from the shell.
NOTE 3: The AT&F1 is for a US Robotics - others want AT&F0.
Old guy