LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
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 06-30-2003, 02:48 PM   #1
ZeroX5
LQ Newbie
 
Registered: Jun 2003
Posts: 24

Rep: Reputation: 15
Unhappy Linuxant modem probs..........


Well, I've just entered the world of linux via Mandrake 9.1 (It sure does take quite a while on dial up). And I must say, it is quite nice, but I cannot get my modem to work. I went to that linuxant.org place and downloaded the drivers needed for my kernel version, it was the rpm files. One I get into KDE, and I double clicked on the RPM files, they started to install, but gave me an error message :"The following packages have bad signatures /home/me/documents/rpm file." It asks me to continue installation, so I do. Then it gives me this message "The signature of the package (rpm name) is not correct."
"GPG: Can't check signature, public key not found."
"pciutils is neede by (rpm)."

This doesn't make too much sense to me, but I did read something similar to this, and the people who replied suggessted a re-download of the files, but I've downloaded them 3 times, so I don't think that's the case. But anyway, help is appreciated. Thank you.
 
Old 06-30-2003, 03:29 PM   #2
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
It's not clear what your modem is from your post, so here is a bunch of modem info you can wade through and see if it fits.


# Modem and connection troubleshooting
Modem NHFs
Modem HOWTO
Linmodems.org
Conexant/Rockwell modem HOWTO
The Unofficial PCTel Linux Driver page
I finaly got my PcTel hsp56 mr modem to work
Linux driver for Winmodems with Lucent Apollo (ISA) and Mars (PCI) chipsets
Lucent AMR modem listed as an Intel AC'97 - Smart Link Modems
The kppp Handbook
Dial-up Networking Configuration Using KDE's Kppp
Troubleshooting ISP Connection Problems
Connecting to AOL with Linux

# Configuring a pci modem
To configure a pci modem, open an x terminal and su - to the root account:
Code:
[phil@fancypiper phil]$ su -
Password: 
[root@fancypiper 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@fancypiper 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@fancypiper 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.

# Compiling/installing kernel modules
You will need to have installed:
1. The developmental packages (compiler)
2. The kernel source code that matches your running kernel
3. The module source or install code

Check out your system and see what's under the hood and see if you installed the stuff you need to do the job. Open an x terminal and type in this sequence of commands to see what kernel we are running and see if you have the kernel source installed:
Code:
[fancy@tinwhistle phil]$ su -
Password: 
[root@tinwhistle root]# uname -r
2.4.18-3
I am running kernel version 2.4.18-3. Do I have the proper source code?
Code:
[root@tinwhistle root]# cd /usr/src
[root@tinwhistle src]# ls -alc
total 3
drwxr-xr-x    4 root     root          136 Jun 12 14:53 .
drwxr-xr-x   16 root     root          424 Jun  4 12:04 ..
lrwxrwxrwx    1 root     root           14 Jun  4 12:11 linux-2.4 -> linux-2.4.18-3
drwxr-xr-x   16 root     root          584 Jun  4 12:11 linux-2.4.18-3
drwxr-xr-x    7 root     root          168 Jun  4 12:08 redhat
[root@tinwhistle src]#
I do have the same kernel version source code installed in the directory /usr/src/linux-2.4.18-3 and there is a symbolic link named linux-2.4 pointing to it.

If you don't see something similiar to this (but in color), you will need to install the kernel source.

NOTE: I noticed that Red Hat didn't make the symbolic link /usr/src/linux that all of the INSTALL files that I have read mentioned that I need, so I may as well make one now to save editing the files in the source code to install.So, I'll make it just now:
Code:
[root@tinwhistle src]# ln -s linux-2.4.18-3 linux         
[root@tinwhistle src]# ls -alc
total 3
drwxr-xr-x    4 root     root          160 Jun 12 15:46 .
drwxr-xr-x   16 root     root          424 Jun  4 12:04 ..
lrwxrwxrwx    1 root     root           14 Jun 12 15:46 linux -> linux-2.4.18-3
lrwxrwxrwx    1 root     root           14 Jun  4 12:11 linux-2.4 -> linux-2.4.18-3
drwxr-xr-x   16 root     root          584 Jun  4 12:11 linux-2.4.18-3
drwxr-xr-x    7 root     root          168 Jun  4 12:08 redhat
[root@tinwhistle src]#
Ah, there it is, so that's done.

Next, did I install the compiler?
Code:
[root@tinwhistle src]# gcc -v          
Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
gcc version 2.96 20000731 (Red Hat Linux 7.3 2.96-113)
[root@tinwhistle src]#
Yes, I have a compiler installed.

If you don't have those two things installed, you have to install them first off your install CD.

If they are installed, download the source and happy comiling. Make sure you carefully read the README and INSTALL files after extracting and before compiling/installing.

# Guides to software and installation and uninstallation
LNAG - How do I install a program I downloaded from the Internet?
Rute Guide's software explanation
You might want to check out CheckInstall to manage source code installations/uninstallation

# Mandrake links
Mandrake home page
Mandrake Users website
Easy urpmi config for Mandrake
urpmi mini-HOWTO
Easy software management: Red Carpet
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; 06-30-2003 at 03:33 PM.
 
Old 06-30-2003, 03:48 PM   #3
ZeroX5
LQ Newbie
 
Registered: Jun 2003
Posts: 24

Original Poster
Rep: Reputation: 15
Well

I do know for a fact, that it's chipset is conexant, and that it is a winmodem. I'm not quite sure of the brand, but that's all I know about it. It's a 56k v .90. I've also read that I'd have to download a "public key" which I did, but the directions I recieved on how to use it don't see to work on Linux Mandrake for some reason.......

"rpm --import /path/to/pubkey.asc"

I've tried doing that, but it gives me a message stating that it is an unknown command "--import" Ah well, any more help is appreciated. I'll try what you posted, but bear in mind, this is my first time using a Linux OS. So it's a little confusing to me. But I'll give it a shot.
 
Old 06-30-2003, 04:17 PM   #4
Obi Perrin
Member
 
Registered: Nov 2002
Posts: 136

Rep: Reputation: 15
Don't worry about that key thing. I think that Mandrake's newest RPM installer comes with a key checker to ensure the integrity of downloads, but when you download an RPM file by itself, there's no key file with it, therefore nothing to check it against. The dependancy is the only real problem there, I believe. Go into the software installer and search for "pci". pciutils should be one of the results.

I'm quite surprised it wasn't installed by default. After it's installed, try the rpm again.
 
Old 06-30-2003, 04:20 PM   #5
ZeroX5
LQ Newbie
 
Registered: Jun 2003
Posts: 24

Original Poster
Rep: Reputation: 15
Hmm

I tried what Fancypiper told me, but I only got up to the setserial, and it gave me a message "unknown command." So, I'll try what obi says, I'll check back in a few minutes.
 
Old 06-30-2003, 04:24 PM   #6
ZeroX5
LQ Newbie
 
Registered: Jun 2003
Posts: 24

Original Poster
Rep: Reputation: 15
By the way, It did find my modem, when I did what fancypiper suggested, but Linux doesn't seem to want to use it. I know it has problems cause of the winmodem stuff, but here's what I got from the modem.


Conexant HSF 56k HSFi Modem (rev 1)
IRQ 11
Master Capable. Latency = 32
Non-prefetchable 32 bit memory at 0xf7000000 [0xf700ffff]
I/O at 0xd400 [oxd407]

Anyway, I forgot to place this on the previous post, so brb, I'm off to try obi's suggestion.
 
Old 06-30-2003, 04:37 PM   #7
ZeroX5
LQ Newbie
 
Registered: Jun 2003
Posts: 24

Original Poster
Rep: Reputation: 15
I searched for it, but I could not find the pciutils rpm. I even checked the Install disk, and it is not on there. Since Mandrake consists of more than one CD, could it be possible that it could be on another install disk?!? If so, I'd have to wait another 40 hours........ Great. Well, any help is appreciated.
 
Old 06-30-2003, 04:45 PM   #8
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
Conexant/Rockwell modem HOWTO

Don't use setserial as those instructions were for a real or hardware modem and it won't work for your winmodem.

As root, try the command:

urpmi pciutils

or use the gui software manager to install it. You may need to use a toggle somewhere I seem to remember to see an alpahbetical list of what you can install.
 
Old 06-30-2003, 04:47 PM   #9
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
# Cheap CDs
Discount Linux CDs
Linux Central
Cheapbytes
TuxCDs
ComputerHelperGuy
 
Old 06-30-2003, 04:54 PM   #10
ZeroX5
LQ Newbie
 
Registered: Jun 2003
Posts: 24

Original Poster
Rep: Reputation: 15
Very odd.......

I will try what you suggested, but I seemed to have noticed something right now. I was checking the RPM files on the CD, and on the Mandrake site. I noticed that on the mandrake site, it shows two PCIUTILS RPMs, but on the CD, it shows two other files in it's place.
a pcmcia and another one, But they weren't pcituils........

I found that rather odd........ But anyway, I'll try your suggestion. So brb.
 
Old 06-30-2003, 05:16 PM   #11
ZeroX5
LQ Newbie
 
Registered: Jun 2003
Posts: 24

Original Poster
Rep: Reputation: 15
No

Nope, it didn't find it anywhere. Since this may be the main problem, does anyone know where I can aqcuire the pciutils rpm? It may have to be specific to Mandrake 9.1, so any help is appreciated. Thank you all.
 
Old 06-30-2003, 05:41 PM   #12
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
rpmfind
 
Old 06-30-2003, 07:48 PM   #13
ZeroX5
LQ Newbie
 
Registered: Jun 2003
Posts: 24

Original Poster
Rep: Reputation: 15
hmm

Well, It looks like Linux Mandrake already had the pciutils installed, cause I downloaded it and tried to install it. Already been installed it said. So, I may have to try to download the files again, but I may just have to go with another modem. I don't want to, but its looking that way. Any more help is appreciated. Thank you.
 
Old 06-30-2003, 09:13 PM   #14
jsul255227
Member
 
Registered: Jun 2003
Posts: 39

Rep: Reputation: 15
hey zero i am having your exact same prob i have the same kind of modem and everything. I try and install it and it says nokey and i have no idea how to make the file a .asc file because i have to copy and paste it in windows and burn it onto a cd and i loaded in linux but everything i try and do doesnt seem to work. im about to give up and just buy a new modem.
 
Old 06-30-2003, 09:23 PM   #15
jsul255227
Member
 
Registered: Jun 2003
Posts: 39

Rep: Reputation: 15
o yea i am using RH9 so if anyone could help me id be very thankful.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
installing linuxant drivers for modem webazoid Linux - Software 6 05-13-2009 12:51 AM
linuxant HCF modem driver jperk28 Linux - Hardware 3 12-08-2004 12:26 PM
Linuxant modem LordOfTheBoards Linux - Laptop and Netbook 6 04-30-2004 05:00 AM
HSF LINUXANT modem connection SgtBhaji Linux - Networking 6 11-12-2003 12:38 AM
Any other linuxant modem drivers out there? grassapa Linux - Hardware 19 10-08-2003 04:26 PM

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

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