LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   I need help getting my hardware PCI modem working (https://www.linuxquestions.org/questions/linux-newbie-8/i-need-help-getting-my-hardware-pci-modem-working-145576/)

MustangCSA 02-13-2004 03:34 AM

I need help getting my hardware PCI modem working
 
This is my first post to this board and I am a complete NEWBIE to Linux. I have recently installed Debian GNu/Linux on my HP Pavilion 511n. I have a dual boot with Windows XP. I also added a U.S. Robitics Hardware PCI modem. Windows sees the modem and work perfectly with it (that's what i am using now) but Linux won't connect with it. I tried using wvdialconf /etc/wvdial.conf but it doesn't reconize it. When I type cat /proc/pci it sees it and notices that it is a U.S. Robitics 56k Modem and it says that the irq is 11 and the I/O address is 0xd800 but where do I go from here. I have tried to figure it out for the past four or five days without success. Any help will be strongly appreciated. I just want to be able to connect to the internet under Linux.

-Adam Colwell
:newbie:

b0uncer 02-13-2004 04:55 AM

have you loaded the appropriate module(s)? ppp is needed in kernel to get the modem working :)

EDIT: do a quick module-search, unless you know you've compiled the correct ppp's in kernel...

Code:

modprobe -l | grep ppp
or, if you wish to see all available modules...

Code:

modprobe -l | less
:) if you see there any modules, try loading them via

Code:

modprobe (modulename)
where (modulename) is the name of the module. these should be loaded automatically, though...but to make sure you do have them :) in a stock kernel these should be compiled either into the kernel or as modules..?

if you have pppconfig, make an account with it and start the ppp through it :) like this:

Code:

pppconfig
do the magic stuff, then

Code:

pon (connectionname)
where (connectionname) is the name you gave to your connection settings in pppconfig :) I use this method, as my wvdial has stopped working correctly in my newly compiled kernel...

EDIT2: if you don't have some module or something else is missing, you can see it like this: you said your pci-proc shows your modem's information. so the device is there..but what about the device file? do

Code:

ls /dev/ttyS*
and check out if anything comes up. my modem is /dev/ttyS1 (usually it's that if you have it in your COM2 -port like dos tells it). if nothing comes, it might be that the device is there, but no device file has been created due to a missing module or something other like that...missing module means usually just modprobing it, or in the worst case recompiling the kernel (that is, if you've self compiled the current kernel and forgotten ppp's as I did in the first time :) hehe )

MustangCSA 02-13-2004 05:50 AM

Hey thanks. Acctually I figured it out about 5 minutes after i submitted that message. And when I type in pon I hear the modem making the usual noises. And if I type wvdial then I see it dialing and it says connected but never goes back to the command prompt. But I have a new question now, after I connect it and then go back into the GUI and I open up mozilla or another browser it doesn't connect. Is there something else I need to do? Also root is the only one that can use the modem, it says permission deniad. Help please :D :study:

-Adam Colwell
:newbie:


All times are GMT -5. The time now is 11:32 AM.