LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
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 03-06-2004, 09:47 AM   #1
0pal_t0ad
Member
 
Registered: Feb 2004
Location: Southampton, England
Distribution: Laptop:Gentoo-i686-2.6.9-r9 Desktop:Slackware10 2.4.26
Posts: 298

Rep: Reputation: 30
modem trouble


after searching for help on installing my internal modem, i found a post here that said my 536ep modem sucked! so i did what the post said and went out and bought an external modem...nice looking Diamond SupraExpress 56ePRO. i had a hard time getting working under XP because my IR port was interfering, but that's all sorted out.

now i need to install it under gentoo. i can't use kppp to dial because i'm connecting through AOL.
 
Old 03-06-2004, 09:49 AM   #2
0pal_t0ad
Member
 
Registered: Feb 2004
Location: Southampton, England
Distribution: Laptop:Gentoo-i686-2.6.9-r9 Desktop:Slackware10 2.4.26
Posts: 298

Original Poster
Rep: Reputation: 30
oh yes!! still have the 536ep drivers installed, do i need to get rid of them? if so, how do i do that?
 
Old 03-06-2004, 11:45 AM   #3
RolledOat
Member
 
Registered: Feb 2003
Location: San Antonio
Distribution: Suse 9.0 Professional
Posts: 843

Rep: Reputation: 30
No, the other drivers don't matter. When you next restart your system, I would expect it will detect and configure your modem. The real problem, Linux and AOL. There used to be a program called PengAOL that allowed you to connect to AOL, but AOL killed it. I don't know if it is possible to connect to AOL with Linux. kppp, wvdial, etc, they all follow the same standard ppp setup, AOL's is proprietary. Search google and here for Linux AOL, see if anyone has it working.

RO
 
Old 03-06-2004, 11:57 AM   #4
0pal_t0ad
Member
 
Registered: Feb 2004
Location: Southampton, England
Distribution: Laptop:Gentoo-i686-2.6.9-r9 Desktop:Slackware10 2.4.26
Posts: 298

Original Poster
Rep: Reputation: 30
when i restarted it didn't detect my modem. but when try testing it w/ kppp using /dev/ttys0 instead of /dev/modem in the setup, sometimes it works and other times it says 'can't initialize' or something to that effect.

as for aol, thanks i found a program called peng, but it's probably the same thing... if it doesn't work... i'll just change my isp (...microsoft wannabes)

Last edited by 0pal_t0ad; 03-06-2004 at 12:00 PM.
 
Old 03-06-2004, 12:04 PM   #5
RolledOat
Member
 
Registered: Feb 2003
Location: San Antonio
Distribution: Suse 9.0 Professional
Posts: 843

Rep: Reputation: 30
ls -l /dev/modem
it probably looks something like
/dev/modem --> /dev/ttyS2

you can change that
rm /dev/modem
ln -s /dev/ttyS0 /dev/modem

/dev/modem is just a softlink to the actual tty. Then you can use /dev/modem in kppp.
I don't understand why /dev/ttyS0 would be flaky if you leave it as that option in kppp though.

Good luck with peng.

RO
 
Old 03-06-2004, 02:07 PM   #6
0pal_t0ad
Member
 
Registered: Feb 2004
Location: Southampton, England
Distribution: Laptop:Gentoo-i686-2.6.9-r9 Desktop:Slackware10 2.4.26
Posts: 298

Original Poster
Rep: Reputation: 30
if i did 'ln -sf /dev/ttyS0 /dev/modem', wouldn't that do the same as...
rm /dev/modem
ln -s /dev/ttyS0 /dev/modem ?
before when ls -l /dev/modem and /dev/ttys0 i got
'/dev/modem --> /dev/536ep' and /dev/tts0 --> /dev/modem
now i get '/dev/modem --> /dev/ttyS0' and '/dev/ttys0 --> /dev/modem'
is that right?

also to get the modem working in XP i had to change IRQ's in the bios and Xp, so do i need to set the irq for ttys0 in linux?

Last edited by 0pal_t0ad; 03-06-2004 at 02:16 PM.
 
Old 03-06-2004, 04:18 PM   #7
RolledOat
Member
 
Registered: Feb 2003
Location: San Antonio
Distribution: Suse 9.0 Professional
Posts: 843

Rep: Reputation: 30
If you try to 'change' the softlink you will get 'file already exists'.
The format is
ln -s <target file> <new filename>

You can ignore ttys0, the one that matters is the one with capital S, so
/dev/modem --> /dev/ttyS0
is what you want. As for the IRQ, I have never changed one before.

enter
setserial -bg /dev/ttyS*
to see if the IRQ on /dev/ttyS0 is correct

If it doesn't show the correct IRQ, then you can change it to the desired value with
setserial /dev/ttyS0 irq X
Where X is the new IRQ.

As mentioned though, I have never changed IRQs and don't know if that will create a conflict with your other hardware, so keep track of everything you do.

RO.

Reference...
http://www.justlinux.com/nhf/Modems/...PCI_Modem.html
 
Old 03-06-2004, 06:56 PM   #8
0pal_t0ad
Member
 
Registered: Feb 2004
Location: Southampton, England
Distribution: Laptop:Gentoo-i686-2.6.9-r9 Desktop:Slackware10 2.4.26
Posts: 298

Original Poster
Rep: Reputation: 30
ok i did everything said, my port no. and IRQ were right.
but the modem doesn't work.
kppp says 'modem does not respond'
and peng says 'modem not configured'
sometime if i query the modem with kppp it starts and goes through the whole ATI0, ATI1....thing but at end it just says 'modem timed out' after that it goes back to saying 'modem does not respond'
 
Old 03-07-2004, 11:43 AM   #9
0pal_t0ad
Member
 
Registered: Feb 2004
Location: Southampton, England
Distribution: Laptop:Gentoo-i686-2.6.9-r9 Desktop:Slackware10 2.4.26
Posts: 298

Original Poster
Rep: Reputation: 30
i finally got it working!!! unfortunately peng doesn't work tho' but i've found a new ISP, so i'll sign up w/ them tomorrow.

thanks RolledOat! you've been a big help.
 
Old 03-07-2004, 04:14 PM   #10
RolledOat
Member
 
Registered: Feb 2003
Location: San Antonio
Distribution: Suse 9.0 Professional
Posts: 843

Rep: Reputation: 30
What was the root cause of the problem, for others, and if/when I hit upon it.

RO
 
Old 03-08-2004, 01:20 PM   #11
0pal_t0ad
Member
 
Registered: Feb 2004
Location: Southampton, England
Distribution: Laptop:Gentoo-i686-2.6.9-r9 Desktop:Slackware10 2.4.26
Posts: 298

Original Poster
Rep: Reputation: 30
well i have an onboard irDA device, which was using Com2, but Com1's IRQ and whenever i changed it(irDA) in the bios from 4 to 3 the modem would work(sortof) until i rebooted and the IRQ would change back to 4 so there was always that IRQ conflict between irDA and Com1. but eventually after about 1/2 an hour of playing with the bios settings managed to totally disable the irDA, which in turn gave me Com2. which is what i'm using now
 
  


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
trouble installing modem Intel modem module kholdstayr Linux - Networking 0 07-17-2005 09:25 AM
Modem trouble - RH 9.0 the_rydster Linux - Laptop and Netbook 3 11-05-2003 03:13 PM
Modem trouble jrdioko Linux - Newbie 23 08-23-2003 06:28 PM
Modem Trouble Christopher Linux - Hardware 5 05-19-2003 03:56 PM
Modem trouble Smokey_Mcpot Linux - Hardware 1 03-13-2003 10:08 AM

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

All times are GMT -5. The time now is 11:20 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