Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Driver installation

Status
Not open for further replies.

x508

Programmer
Jun 26, 2003
396
ZA
How do I install the modem driver that I downloaded on my Linux mandrake 8.0 OS.

It picked up the modem as an "Other Device"

Thanks

**********************************
May the Code Be With You...
----------
x50-8 (X Fifty Eigt)
 
Hi
Before anybody is going to be able to help you, you need to reveal something about your modem like Internal or External? Whether or not it is a WinModem ( a software modem ) whwther or not "other device" actually has been assigned a /dev such as /dev/tty0 or something. You may not even have to install a driver since it sounds like your kernel has already picked it up. It just may need to be configured and IIRC Mandrake has a some kind of "Internet-Start Here" that walks you through inserting an initialization string, etc. Again, iirc, it has a built in diag that will let you know if it's "talking". There is much more you can do right from command line but not w/o some more info. You might also poke around your modules.conf ( or conf.modules as some RH based distros like Mandrake call them ) with a text editor to see if any reference to a serial device is in there. Gather some info, play around, and write back
Jimmy
 
OK

Internal Modem
It is a Win Modem (Software)
Their is no /dev/modem (Cannot tell precisely what their is, not in linux now)



P.S. I got the driver from Driverguide.com
I guesee it was a Linux "Zip" package cause it had the .tz (funny extension thingy) and linux was able to open the package. Inside the packae their are a lot of files which I am sure is the source code of the driver. It looks like C++ source code.

Do I have to compile the sourcecode, and how?
Can't I somehow remove the current modem that has been picked up or update it's driver?

**********************************
May the Code Be With You...
----------
x50-8 (X Fifty Eigt)
 
Too bad, it is very hard to get those things to work. Save yourself the hassle and go and pick up a 56k V.90/V.92 external modem.
 
extract that tz file by using 'tar' command .

insert the appropriate module into the kernel which is extracted. it should work.
 
Ok santoshdj123

That makes kinda sense to me, but I need to ask you this.

I am a very experienced uder under Microsoft, but very "Newbie" to Linux.

Will you be so kind as to explain is "Baby Steps"

I know that you can recompile the kernel, but how do I do that and what is the module that I should put in and how do I put it in.


Thanks for your time, it is appreciated

**********************************
May the Code Be With You...
----------
x50-8 (X Fifty Eigt)
 
# tar zxvf <tarfilename>
a new directory will be created go into that
try to use the modem.
it will show error &quot; <perticular module> not found.
in this directory u can see that module name with extension .o
# make
# make install
# insmod modulename.o

Note: the most important thing is that all window modem do not work under linux. only linux certified hardwares can run uner linux. for that check for redhat.com to see weather it is compatible for your linux or not.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top