LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 11-02-2005, 02:54 AM   #1
Cards_STL
Member
 
Registered: Oct 2005
Location: Rural area near St.Louis, MO
Distribution: SuSE 10.0
Posts: 54

Rep: Reputation: 15
Lucent Modem troubles


Hello!

Before I get started:
Distro:
SuSE 10.0

Kernel:
2.6.13-15-default

Modem:
Lucent LT Winmodem/Conexant HSF





Greetings everyone. I have the two modems listed above, on my desktop PC, both PCI modems. In SuSE the Lucent is detected as "Risq Modular LT Winmodem" or something like that, and installs with yast as "Modem0" This is just hunky-dory except that I cant get any dialer <Gnome-ppp, Gnome-dial, KInternet, KPPP> To work with it! Gnome-PPP doesnt Detect it, and KInternet just gives me "Exit Code 3". It doesnt even attempt to dial.

All my Windoze control panel says is "Lucent Winmodem" but it IS the PCI modem, So Im not 100% sure what it is. The conexant Im not really worried about, but if you can get it to work as well/or It would be great. I use linux 100% for everything else but I still have to go to windoze for internet so please dont make me have to do this!!

Guys be patient with me, Im new to linux and Im sure I didnt give you enough information, so If you need more I would be glad to give you more, Just please be patient and dont give up hope on me!

Cheers~
 
Old 11-02-2005, 06:12 AM   #2
pyrael
Member
 
Registered: Dec 2003
Posts: 87

Rep: Reputation: 15
http://linmodems.org/

For the lucent driver, sometimes it will give you an eror upon installing. It is safe to comment these lines (In most cases).

But the drivers DO work.
 
Old 11-02-2005, 06:19 AM   #3
Cards_STL
Member
 
Registered: Oct 2005
Location: Rural area near St.Louis, MO
Distribution: SuSE 10.0
Posts: 54

Original Poster
Rep: Reputation: 15
Quote:
and installs with yast as "Modem0"
As I said, I have the drivers, the drivers arent my problem...

SuSE, (Hence the "Yast") Comes with these drivers, in fact, linmodems.org doesnt even have drivers for my Kernel...

My question involves smpppd, not drivers. Thanks for trying.

Last edited by Cards_STL; 11-02-2005 at 06:23 AM.
 
Old 11-02-2005, 10:27 AM   #4
pyrael
Member
 
Registered: Dec 2003
Posts: 87

Rep: Reputation: 15
did you try a symlink from /dev/modem0 --> /dev/modem ?
I know with my Zoom (lucent based) the driver needed to be linked as modem and not modem0

Sorry about the misunderstanding about the drivers, My past experience on dialup modems was with 2.4

I would imaging that if the link is not the problem maybe the config script for pppd? I have never attempted a dual modem config, I assume that is what your doing?

Annother Idea: what about a live CD such as Mandriva Live with a similar kernal that will run pppd? That way you could view it's settings and adapt for you distro?

hope the suggestions help
 
Old 11-02-2005, 02:51 PM   #5
Cards_STL
Member
 
Registered: Oct 2005
Location: Rural area near St.Louis, MO
Distribution: SuSE 10.0
Posts: 54

Original Poster
Rep: Reputation: 15
I am only trying to set up one modem. Forget about the conexant. I will try those things, but since I am on dial up <hint hint> Its a bit hard to get a Live CD distro, plus it wont really help me much. I will try those config files, and post a screenshot when I get home for some more specific details.
 
Old 11-02-2005, 06:31 PM   #6
Cards_STL
Member
 
Registered: Oct 2005
Location: Rural area near St.Louis, MO
Distribution: SuSE 10.0
Posts: 54

Original Poster
Rep: Reputation: 15
How Do I do a symlink? Sorry but Im new to linux. Could you explain to me or point me to a HOWTO that would tell me how to link the modem?
 
Old 11-03-2005, 06:27 AM   #7
pyrael
Member
 
Registered: Dec 2003
Posts: 87

Rep: Reputation: 15
The symbolic link command is ln -s

so for linking your /dev/modem0 to /dev/modem, you would open a terminal and type this:
text after > symbol is a comment, don't include it in your comands

Code:
$ su                      >change to super user (root) 
<root password>             >enter your root password
# cd /dev                            >change to the device directory
# ls -l m*                             >this is not needed but helpful the ls command used 
                                            >together with the -l option will display more detailed
                                            >information about the directory such as 
                                            >file/dir permissions, the owner and most 
                                            >importantlu for us, existing links and whatthey
                                            >point to.The m* simply tells ls to list all files
                                             >beginning with m. You could changer this to
                                              >modem* to get less results if you need to.
Here's an example of what it should look like:
Code:
brw-r-----  1 root   disk  9,  0 Nov  2 17:27 md0
crw-r-----  1 root   kmem  1,  1 Nov  2 12:26 mem
crw-rw----  1 root   root 13, 63 Nov  2 12:26 mice
lrwxrwxrwx  1 root   root     12 Nov  2 12:26 midi -> snd/midiC0D0
lrwxrwxrwx  1 root   root     12 Nov  2 12:27 midi1 -> snd/midiC0D1
crw-------  1 pyrael root 14,  0 Nov  2 12:26 mixer
crw-rw----  1 root   root 13, 32 Nov  2 12:26 mouse0
crw-rw----  1 root   root 13, 32 Nov  2 12:26 modem -> modem0
crw-rw----  1 root   root 13, 32 Nov  2 12:26 modem0
If you notice, the links are listed with the link name then -> and then the file it points to
since in the example we find the link is already created, we don't need to go any further.
However, we are giong to pretend that the link is wrong.

to remove the link :
Code:
#rm modem
This will remove the symbolic link from the directory

To create a new symbolic link, you use the command ln -s <source> <link name> :

Code:
 
# ln -s modem0 modem
then check that it was created successfully with
Code:
# ls -l modem*
it should look like this:
Code:
crw-rw----  1 root   root 13, 32 Nov  2 12:26 modem -> modem0
crw-rw----  1 root   root 13, 32 Nov  2 12:26 modem0
or something close to it.

if you type ls modem* you will list the entries for modem* in the usual view. If you use xtrem (etc..)
you will notice the link flashing red if it is a "broken link" this can be helpful when trying to pinpiont
the problem
 
Old 11-04-2005, 03:21 PM   #8
GDragon
LQ Newbie
 
Registered: Oct 2005
Distribution: Suse 10
Posts: 8

Rep: Reputation: 0
Hi,

I did all you said here, but I have a problem. First of all, when during installation SUSE recognize the modem, I get info that the modem is set as /dev/ttsLT0. When I configure it after, modem is then /dev/modem0. I tried to link to /dev/modem, but the problem is that neither LT0 or modem0 doesn't exists in /dev/. Can I make them manually or something?

Millan
 
Old 11-06-2005, 12:33 AM   #9
pyrael
Member
 
Registered: Dec 2003
Posts: 87

Rep: Reputation: 15
I did some searching in google, and came across This Site .
Try thier drivers, They say that they have drivers (in rpm and source format) for the 2.6 kernel. You'll probably want to read ALL the documentation before using them. but (if Suse uses rpm) you should be able to install/configure you modem easilly.
Good luck and hope this helps.
By the way, if you don't already know, you can download the driver under windows and the switch to linux and mount windows to get the driver (since obviously you can't download with linux at the moment). ---just a tip
 
Old 11-06-2005, 04:03 AM   #10
GDragon
LQ Newbie
 
Registered: Oct 2005
Distribution: Suse 10
Posts: 8

Rep: Reputation: 0
Hi,

Well this site is for Conexant modems, and I have Lucent. Problem is that Suse recognizes the modem and reports that drivers are installed and that the modem is /dev/ttyLT0 or dev/modem0 but neither of this two files exists. Does anyone knows why? I use Suse 10.

Millan
 
Old 11-06-2005, 05:32 PM   #11
pyrael
Member
 
Registered: Dec 2003
Posts: 87

Rep: Reputation: 15
This is the best advice I can give you, Try re-installing the driver. Here's the Source Tarball for Lucent Winmodems:
ltmodem-2.6-alk-7.tar.bz2
Maybe, by re-installing the Driver for the modem, you can fix it. From what I read about winmodems and 2.6 is that many distros were released before there was full support for the modem. So, it is possible that the drivers your distro has supplied are a "generic" or "fit-all" driver. In order for the Lucent Winmodem to work under 2.4 (as I recall) you needed a program called lt_serial This program acted aas a kind of interpreter between the modem and OS. Winmodems are completely software based so, the best suggestion I can make is to try the above driver.

P.S. I REALLY hope you get it to work, good luck
 
Old 11-06-2005, 05:58 PM   #12
GDragon
LQ Newbie
 
Registered: Oct 2005
Distribution: Suse 10
Posts: 8

Rep: Reputation: 0
Thanx man, I am really greatfull for all the help. I am new at all the Linux stuff. I will sure try this one and see how it goes.

Thanx again,
Millan
 
Old 11-15-2005, 06:13 PM   #13
Cards_STL
Member
 
Registered: Oct 2005
Location: Rural area near St.Louis, MO
Distribution: SuSE 10.0
Posts: 54

Original Poster
Rep: Reputation: 15
Alright boys im back from a linuxquestions.org vacation... but thanks I'll try it all.
 
Old 11-15-2005, 07:20 PM   #14
GDragon
LQ Newbie
 
Registered: Oct 2005
Distribution: Suse 10
Posts: 8

Rep: Reputation: 0
To pyrael:
Well, it doesn't work. No way to compile it under Suse 10.
 
Old 11-16-2005, 01:00 PM   #15
pyrael
Member
 
Registered: Dec 2003
Posts: 87

Rep: Reputation: 15
In The Words Of Homer:

Doh!

Sorry GDragon, That's all the Ideas I have left
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
The Intel Corp.82801CA/CAM AC'97 Modem (aka Lucent Technologies Soft Modem AMR)works! tarek Linux - Laptop and Netbook 6 03-18-2006 04:05 AM
Lucent Modem Darkseid Linux - Distributions 0 11-01-2004 10:45 PM
Lucent winmodem troubles J_Szucs Linux - Hardware 2 02-09-2004 11:08 PM
Lucent win modem lloyd owen Linux - Hardware 2 11-12-2003 10:20 AM
Lucent 56K Modem?? mickeyboy Red Hat 2 10-29-2003 08:44 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 08:51 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration