Hello everybody.
I kind-of sounds like the dialer hasn't found the modem at all. I'm not familiar with Suse's modem dialing tool (I use KPPP), but I imagine that somewhere there's an option to "query modem." Try this and hopefully you'll get something like:
ATI: 5601
ATI 1: C084
ATI 2: OK
ATI 3: U.S. Robotics 56K FAX INT V5.22.70
ATI 4: U.S. Robotics 56K FAX INT Settings... B0 E0 F1 L0 M0 Q1 V1 X4 Y0
BAUD=115200 PARITY=N WORDLEN=8 DIAL=TONE ON HOOK CID=0
&A3 &B1 &C1 &D2 &G0 &H1 &I0 &K1 &M4 &N0 &P1 &R2 &S0
&T5 &U0 &Y1 S00=000
ATI 5: U.S. Robotics 56K FAX INT NVRAM Settings... Template Y0 DIAL=TONE
B0 E1 F1 L1 M1 Q0 V1 X4 BAUD=115200 PARITY=N WORDLEN=8
&A3 &B1 &C1 &D2 &G0 &H1 &I0 &K1 &M4 &N0 &P1 &R2 &S0
&T5 &U0 &Y1 S00=000 S02=
ATI 6: Template Y1 DIAL=TONE B0 E1 F1 L1 M1 Q0 V1 X4
BAUD=115200 PARITY=N WORDLEN=8 &A3 &B1 &C1 &D2 &G0
&H2 &I2 &K1 &M4 &N0 &P1 &R1 &S0 &T5 &U0 &Y1 S00=000
S02=043 S03=013 S04=010 S05=008 S06=004 S07=
ATI 7: Configuration Profile... Product type US/Canada Internal Product ID:
00561002 Options V32bis,V.80,V.34+,V.90,V.92 Fax Options
Class 1/Class 2.0 Line Options Caller ID, Distinctive Ring Clo
This is what KPPP displays for my modem. Suse's tool might just say "modem found" or "modem not found." Make sure that the program is pointing to the right COM port. /dev/modem usually works, but it's sometimes nonexistant or improperly linked. Try ttyS0, ttyS1, etc. until you get a good response from your modem. You also might want to try minicom to putz around and make sure that everything looks peachy. Type this in a console:
Code:
su
<password>
minicom
This should pop up a blue box that says "initializing modem" and then give you a command line of sorts. Try typing "ATZ" and then "ATDT 5555555". You might not see everything that you're typing. If my memory serves me well this should cause your modem to dial "555-5555" (an invalid number where I live). If all this goes smoothly then /dev/modem is linked to the right COM port and your modem drivers are working. If not then you can try linking /dev/modem to different serial port (like ttyS1, etc.). Before doing this, WRITE DOWN WHERE IT'S CURRENTLY LINKED TO! To find this out, type "ls -l /dev/modem". To change where it's linked to, type this from the command prompt:
Code:
su
<password>
rm /dev/modem
ln -s /dev/ttyS1 /dev/modem
This will link /dev/modem to /dev/ttyS1. Experiment with different ones if you want.
I hope this helps! I'm no expert, so if anybody else has some suggestions, please chime in!
--Dane