USRobotics modem RedHat

Ask a Question related to Linux Setup, Configuration & Administration, Design and Development.

  1. #1

    Default USRobotics modem RedHat

    Hi gurus,

    I am new to Linux and am trying to make a PCI modem work in Red Hat.
    I read that I need to find under windows what IRQ the modem is in along with
    the UART and I/O numbers. I was only able to find the IQR that was 18.

    I went to Linux as root, looked in /proc/pci but no device was under IRQ 18.
    Even more when I tried
    setserial /dev/ttyS3 irq 18 autoconfig
    it dind't accept my parameters. I chose ttyS3 because in windows the modem
    was in COM4 and I read that it corresponds to ttyS3 in linux. Since it
    didn't accept 18 I used 5 because it was the only PCI device that looked
    like
    a modem. I passed through.
    then I made the link,
    rm -f /dev/modem
    ln -s /dev/modem

    Then I tried to dial with kppp, /sbin/ifup ppp0, and from Network devices in
    the X-window but none work. They give the modem as activated, but never
    dials up. If I run ifconfig I get some data for ppp0 meaning that it is
    running, but it never dials up.......grgrgrggr

    What can I do? I am totally lost. The modem is a USRobotics V.56kb fax
    modem.

    Thanks for your help.

    Ricardo.



    Ricardo Verdugo Guest

  2. Similar Questions and Discussions

    1. CABLE MODEM
      Hello, I have just install Red Hat Linux 7.2, but cannot connect to the internet. I have a cable modem but don't know how to configure it. Can...
    2. modem-to-modem connectivity
      i am wondering if it is possible to do remote desktop not over the internet but by dialing into one xp pro machine. internet is not really an...
    3. Modem to modem question
      1. The boss wants to run the computer system at work remotely at home. I want to setup a modem to modem connection with an XP system as the...
    4. Modem goes off
      My modem goes off after being connected for 5 minutes aprox. I already twaked it from soft but nothing seems to work. I am running WIndows XP...
    5. sharing DSL modem
      how can a DSL modem be shared for 2 computer without the port switcher in window XP?
  3. #2

    Default Re: USRobotics modem RedHat

    Ricardo Verdugo wrote:
    > Hi gurus,
    >
    > I am new to Linux and am trying to make a PCI modem work in Red Hat.
    > I read that I need to find under windows what IRQ the modem is in
    > along with the UART and I/O numbers. I was only able to find the IQR
    > that was 18.
    >
    > I went to Linux as root, looked in /proc/pci but no device was under
    > IRQ 18. Even more when I tried setserial /dev/ttyS3 irq 18 autoconfig
    > it dind't accept my parameters. I chose ttyS3 because in windows the
    > modem was in COM4 and I read that it corresponds to ttyS3 in linux.
    > Since it didn't accept 18 I used 5 because it was the only PCI device
    > that looked like a modem. I passed through. then I made the link, rm
    > -f /dev/modem ln -s /dev/modem
    >
    > Then I tried to dial with kppp, /sbin/ifup ppp0, and from Network
    > devices in the X-window but none work. They give the modem as
    > activated, but never dials up. If I run ifconfig I get some data for
    > ppp0 meaning that it is running, but it never dials
    > up.......grgrgrggr
    >
    > What can I do? I am totally lost. The modem is a USRobotics V.56kb
    > fax modem.
    >
    Which USR PCI modem? Most PCI modems are the brain-damaged WinModems
    that are a lot of trouble to make work, if you can make them work at all.

    The only problem I have had with modems on Red Hat is that most of their
    tools assume you have a link in /dev named /dev/modem that points to the
    proper device, and yet they never make such a link. With the ISA modems,
    I just stick one in to /dev/ttyS1 (on my machine). I.e.,

    ln -s /dev/ttyS1 /dev/modem

    First thing to do is to read the user documentation that comes with your
    modem, if any. It should tell you how to configure the thing. Many
    modems have jumpers to set device address and IRQ. At least the ISA ones
    do. AFAIK, the PCI ones do not need that. How do PCI modems come up
    anyway? They sure do not use an RS-232 connector.

    I have a USR 5610B "56K* Performance Pro Modem" PCI modem that should
    work with Linux, but the computer it goes in does not work yet (no
    motherboard, no processors, no memory, little things like that), so I
    cannot tell you first hand.

    --
    .~. Jean-David Beyer Registered Linux User 85642.
    /V\ Registered Machine 73926.
    /( )\ Shrewsbury, New Jersey [url]http://counter.li.org[/url]
    ^^-^^ 6:35am up 18 days, 16:01, 2 users, load average: 2.30, 2.19, 2.12

    Jean-David Beyer Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139