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 - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 04-02-2004, 02:54 PM   #1
raysr
Member
 
Registered: Nov 2003
Location: WA State
Distribution: Ubuntu 13.04
Posts: 727

Rep: Reputation: 31
"The modem does not respond"


This is what I get on a newly installed MDK 9.2 OS. Kppp comes up fine but can't find the modem. I have searched all the threads (and there are many) but I haven't found a solution. I typed kppp in a console and got this- Xlib:extension "GLX" missing on display ":0.0". The device I'm using is /dev/ttyS1. I've tried all the others and this one gets me further than the others. I've got everything else ready to go, can someone please help me on this? US Robotics 56K internal.
 
Old 04-02-2004, 03:22 PM   #2
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
I'm not sure that is a real hardware modem or not. If it is, here is a way to configure it. If you don't have the setserial command, you should be able to install it with urpmi setserial, IIRC
# Configuring a real hardware pci modem
To configure a pci modem, open an x terminal and su - to the root account:
Code:
[fancy@tinwhistle fancy]$ su -
Password: 
[root@tinwhistle root]# cat /proc/pci
Look for your modem in the returned list. Look for something similar to mine:
Code:
  Bus  2, device   2, function  0:
    Communication controller: PCI device 151f:0000 (TOPIC SEMICONDUCTOR Corp) (rev 0).
      IRQ 5.
      I/O at 0xc400 [0xc407].
With this info, I use the setserial command:
Code:
[root@tinwhistle root]# setserial /dev/ttyS2 irq 5 port 0xc400 uart 16550a
Then I test the modem with the internet connection wizard and it works. I edit /etc/rc.d/rc.local and enter the setserial command:
Code:
[root@tinwhistle root]# pico -w /etc/rc.d/rc.local
My file for an example
Code:
#!/bin/sh
# Redhat /etc/rc.d/rc.local file
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.

touch /var/lock/subsys/local
# configure modem
setserial /dev/ttyS2 irq 5 port 0xc400 uart 16550a
Now, it remains configured after a reboot.

Modem HOWTO

# Mandrake links
Mandrake home page
Mandrake Users website
Easy urpmi config for Mandrake
urpmi mini-HOWTO
All You Ever Wanted to Know About Urpmi But Never Dared Asking Before
Maximum RPM
rpmfind
You didn't install the developmental packages? As root, command:
urpmi gcc
An Introduction to the Midnight Commander. You can install it by commanding:
urpmi mc
Midnight Commander home page

Last edited by fancypiper; 04-02-2004 at 03:25 PM.
 
Old 04-02-2004, 05:33 PM   #3
beejayzed
Member
 
Registered: Jan 2004
Location: Auckland, New Zealand
Distribution: Ubuntu
Posts: 686

Rep: Reputation: 30
I suggest you read the modem howto if you have the howtos installed.
 
Old 04-02-2004, 07:22 PM   #4
raysr
Member
 
Registered: Nov 2003
Location: WA State
Distribution: Ubuntu 13.04
Posts: 727

Original Poster
Rep: Reputation: 31
I ran the wizard and it said "Error Kppp" /etc/resolv.conf is missing or can't be read.
 
Old 04-02-2004, 07:31 PM   #5
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
My /etc/resolv.conf file for a sampel
Code:
domain infoave.net
nameserver 206.74.254.2
nameserver 204.116.57.2
Change to reflect your ISP values.
 
Old 04-02-2004, 07:42 PM   #6
raysr
Member
 
Registered: Nov 2003
Location: WA State
Distribution: Ubuntu 13.04
Posts: 727

Original Poster
Rep: Reputation: 31
I can't find that file, so maybe it is missing, how can I create it? Also I can't get "home" to launch any files, all the permissions are ok. Is there anything in rpmdrake that I might have removed that would cause that?
 
Old 04-02-2004, 07:54 PM   #7
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
Quote:
Originally posted by raysr
I can't find that file, so maybe it is missing, how can I create it?
As root, use your favorite text editor and create it.
Quote:
Also I can't get "home" to launch any files, all the permissions are ok. Is there anything in rpmdrake that I might have removed that would cause that?
I don't understand the question.
 
Old 04-02-2004, 09:20 PM   #8
raysr
Member
 
Registered: Nov 2003
Location: WA State
Distribution: Ubuntu 13.04
Posts: 727

Original Poster
Rep: Reputation: 31
When I click on the "home" icon on the desktop it doesn't open up to "home". Access to files through Konquerer only. I created the /etc/resolv.conf file. Should I write info from my other computer to it? I'm still getting "modem does not respond" though. The first time I ran # cat /proc/pci I got alot of data but I couldn't pick a modem or connection device out of it. When I run it now I get nothing, just a repeat of the command. Typed #cat /proc/pci wrong. Now, would USB controller be it? Nothing that looks like yours.

Last edited by raysr; 04-03-2004 at 12:36 AM.
 
Old 04-03-2004, 01:37 AM   #9
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
You should see an entry for a "Communication controller" somewhere in the list if you have a pci modem card.

Sorry, I don't use kde, so I'm not familiar with Konquerer. I would assume that the "home" icon would launch Konquerer in the folder /home/<user>.
 
Old 04-03-2004, 01:57 AM   #10
raysr
Member
 
Registered: Nov 2003
Location: WA State
Distribution: Ubuntu 13.04
Posts: 727

Original Poster
Rep: Reputation: 31
Thanks for the help. I bagged it, the sound card didn't work either.
 
  


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
Telling people to use "Google," to "RTFM," or "Use the search feature" Ausar General 77 03-21-2010 11:26 AM
RH9 installation seemed ok, but bootup stops on a fat black "x" & won't respond. bikethief Red Hat 2 02-01-2004 08:18 AM
how should I respond to "Encryption key for doc.gpg?" in GNU Emacs? Joseph Schiller Programming 1 10-24-2003 11:51 AM
kppp->modem query, but "does not respond" captainstorm Linux - Newbie 4 07-16-2003 04:55 AM
"Modem Ready." "Sorry, Modem is busy." mkzmonkeylagger Linux - Hardware 1 04-16-2002 08:34 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 10:55 AM.

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