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-09-2006, 11:57 PM   #1
gtrawoger
Member
 
Registered: Dec 2005
Location: TO, Ontario, Canada
Distribution: Ubuntu 14.04, CentOS 6.5
Posts: 37

Rep: Reputation: 17
Winmodem rant????


Hi guys,

I have been trying for days now to get my little winmodem to work in Fedora Core 5. I know it works under linux 'cause I had it working in Suse 10. I switched distro because YaST was painfully slow on this little 466Celeron. (BTW, after a few tweaks I was suprised how fast linux ran on this machine)

I have been to linmodems.org, and a couple other sites that talked about it. I tried just about everything, even installed linuxants drivers (they are for Conexant modems), eventhough my modem is a Agere/Lucent chipset.

I tried the scanModem, and then trying to compile a driver for it. One thing is for sure, compiling something can be a real pain in the butt.... I mean, just when you fixed one thing, another breaks. Grrr....

Anyways, why am I posting? Not sure, since I searched this forum too for some answeres, and all I saw was something like "move on to broadband".

I wished we could give these hardware vendors more than a "nudge" to remind them of the linux community. Or maybe someone could write something like ndiswrapper for winmodems.

I guess I ranted enough. If you have suggestions, please write back. I'd love to fix this. I know it could work, since it worked in SuSE 10.

If you feel like ranting too, please feel free to add to this thread. Maybe we could collect it and send it over to them modem makers.....
 
Old 06-10-2006, 03:42 AM   #2
dalek
Senior Member
 
Registered: Jul 2003
Location: Mississippi USA
Distribution: Gentoo
Posts: 2,058
Blog Entries: 2

Rep: Reputation: 79
Well they call them winmodems for a reason. They really only work with windoze. Best bet, get you a external serial modem and be done with it. They are well worth it. They plain work better.

 
Old 06-10-2006, 05:02 AM   #3
jlo_sandog
Member
 
Registered: Jul 2005
Location: USA
Distribution: F10 (x86_64)
Posts: 549

Rep: Reputation: 32
...or you can join the 21st century and get broadband.
 
Old 06-10-2006, 07:04 AM   #4
cs-cam
Senior Member
 
Registered: May 2004
Location: Australia
Distribution: Gentoo
Posts: 3,545

Rep: Reputation: 57
Quote:
Originally Posted by jlo_sandog
...or you can join the 21st century and get broadband.
Congratulations on your awesomely useless comment. I hope that made you feel good or something because you must need it.

http://linmodems.technion.ac.il/

Is that what you're trying to use? A trick I've found is if installing something seems to difficult, take a look at how different distrobutions package it. From what I've found by looking around it seems that something like this should work:
Code:
make KERNEL_DIR=/usr/src/linux-`uname -r`
install -D -m 644 ltmodem.ko /lib/modules/`uname -r`/kernel/drivers/net/ltmodem.ko
install -D -m 644 ltserial.ko /lib/modules/`uname -r`/kernel/drivers/net/ltserial.ko
Then run depmod, see how that goes.
 
Old 06-11-2006, 09:18 PM   #5
gtrawoger
Member
 
Registered: Dec 2005
Location: TO, Ontario, Canada
Distribution: Ubuntu 14.04, CentOS 6.5
Posts: 37

Original Poster
Rep: Reputation: 17
Quote:
Originally Posted by dalek
Well they call them winmodems for a reason. They really only work with windoze. Best bet, get you a external serial modem and be done with it. They are well worth it. They plain work better.

You know, I think I am just plain stupid... let me explain:

I was thinking the same thing. "Maybe use the external 56K US Robotics Sporster. It's a great little unit." So off I go and hook it up to the parallel port and tried KPPP to look for the modem. Sure enough, couldn't find it.

"Oh, right... permissions"

So I set the permissions for ttyPAR0 (or something like that)... I even made a symbolic link (a big step for me! ) for it to /dev/modem.

Again, couldn't find it. I tried all the other ports I thought may be the parallel port. Then I though "Maybe the BIOS disabled the P. Port"... so I got a serial cable to the serial port (I got a LOT of computer junk laying around)...

Again, nothing... nothing on ttyS0 -> S4 .... grrrrr... and I googled and googled to find something out there.

And sorry to say, in Windows, I just plugged it in and it was detected. (OOPS... I said the "W" word.... ) Seriously, I am not trying to get into a debate about Windows and Linux. I am still on trying to get Linux working. I don't WANT Windows. What I am saying is, can't we get something going in Linux. Thus this thread ... the rant!

I wished I was up to snuff with Programming in Linux and all, but my programming days go back to Turbo Pascal 7.0 in DOS. Eeek... (Well, there was some C++)

Then again, maybe my first line of reply might be correct ... maybe I am just stupid.
 
Old 06-11-2006, 09:20 PM   #6
gtrawoger
Member
 
Registered: Dec 2005
Location: TO, Ontario, Canada
Distribution: Ubuntu 14.04, CentOS 6.5
Posts: 37

Original Poster
Rep: Reputation: 17
Quote:
Originally Posted by jlo_sandog
...or you can join the 21st century and get broadband.
I think I wrote about you in my original post. Something to the notion of plain useless blabber. You see, modems are not just for the internet. I DO have a 6Mbit broadband connection that is serving me well. But for sending faxes, YOU NEED A MODEM.

I don't know why I even bothered replying.
 
Old 06-11-2006, 09:38 PM   #7
gtrawoger
Member
 
Registered: Dec 2005
Location: TO, Ontario, Canada
Distribution: Ubuntu 14.04, CentOS 6.5
Posts: 37

Original Poster
Rep: Reputation: 17
Quote:
Originally Posted by cs-cam
Congratulations on your awesomely useless comment. I hope that made you feel good or something because you must need it.

http://linmodems.technion.ac.il/

Is that what you're trying to use? A trick I've found is if installing something seems to difficult, take a look at how different distrobutions package it. From what I've found by looking around it seems that something like this should work:
Code:
make KERNEL_DIR=/usr/src/linux-`uname -r`
install -D -m 644 ltmodem.ko /lib/modules/`uname -r`/kernel/drivers/net/ltmodem.ko
install -D -m 644 ltserial.ko /lib/modules/`uname -r`/kernel/drivers/net/ltserial.ko
Then run depmod, see how that goes.
Thanks man,

I will try that next time I install FC5 on another machine. Actually I will try it on the server I have at work. Just now I went and installed Suse 10 on my little box here at home and it installs the drivers for some winmodem right in the install. It's great... detected it and installed everything for you. Now, why can't we have something for other distros?

That brings me to something else. I do like Suse. But right now, I think if you have an older machine, stick with 10.0. YaST is dog slow in 10.1, now that they included some ZEN engine in it (don't ask me about the in's and out's, all I know is that it is based on MONO and it's a resource hog). From what I read on forums is that they have some major bugs in it and, as they are have fixed some already, they working on it. Maybe 10.2 will be better?
 
Old 06-11-2006, 09:39 PM   #8
dalek
Senior Member
 
Registered: Jul 2003
Location: Mississippi USA
Distribution: Gentoo
Posts: 2,058
Blog Entries: 2

Rep: Reputation: 79
I have never seen a modem that was parallel before. I have been messing with them a long time too. You have a link for that thing somewhere? I want to see this one. O_O

Later

 
Old 06-11-2006, 10:26 PM   #9
gtrawoger
Member
 
Registered: Dec 2005
Location: TO, Ontario, Canada
Distribution: Ubuntu 14.04, CentOS 6.5
Posts: 37

Original Poster
Rep: Reputation: 17
Quote:
Originally Posted by dalek
I have never seen a modem that was parallel before. I have been messing with them a long time too. You have a link for that thing somewhere? I want to see this one. O_O

Later

Hi dalek,

I actually have about 10 of them right here. 7 are 33.6 and 3 are 56k. All external modems. I only have 3 power supplies for them and a couple cables. But these units were ~$250 new back in the day.

All have a parallel port (25 PIN DB25) or so I think. Or maybe it's a wide serial port????. It is definitely not a DB9 (9 PIN) output on the back of the modem. EDIT: Actually you are right. It is a serial port and only 9 of the 25 PINS get used.

I have one straight parallel to parallel cable and 2 parallel to serial cables. And I tried both to hook up the unit (I even switched the units, just to make sure at least one of them worked.)

As for a link, here it is: http://www1.shopping.com/xPF-_3Com_U...V_90_325689_03


I wonder if one of these would work under linux:
http://www.techfocus.co.uk/usb-paral...ble-p-205.html
 
Old 06-11-2006, 10:29 PM   #10
gtrawoger
Member
 
Registered: Dec 2005
Location: TO, Ontario, Canada
Distribution: Ubuntu 14.04, CentOS 6.5
Posts: 37

Original Poster
Rep: Reputation: 17
dalek,

Another question for you, and yes, this is off topic.

Do you like your Gentoo Linux, and why? And it's fine if it is just a preference thing. I am still exploring the linux horizon.
 
Old 06-12-2006, 01:14 AM   #11
dalek
Senior Member
 
Registered: Jul 2003
Location: Mississippi USA
Distribution: Gentoo
Posts: 2,058
Blog Entries: 2

Rep: Reputation: 79
Quote:
Originally Posted by gtrawoger
dalek,

Another question for you, and yes, this is off topic.

Do you like your Gentoo Linux, and why? And it's fine if it is just a preference thing. I am still exploring the linux horizon.
I love it. Gentoo is harder to install and the new GUI thing doesn't work here. My last install on this machine was about 2 1/2 years ago and it is all up to date and no old cruft laying around either. There are some things to watch out for but once you learn them, it is a breeze. The forums are great too. They have a lot of excellant docs, even though I don't use a lot of them.

The key to a good install, research. You need to know what you plan to install and do with the machine first. Then get you a good set of USE flags and partition your drives like you need. If you want to tweak for speed, research some good LDFLAGS too. Then do the install.

Doing updates is as easy as emerge sync && emerge -uv world about 95% of the time. After the updates are done, update the config files and restart any updated services and you are done. I have used Mandrake before Gentoo, I would still pick Gentoo over Mandrake. Mandrake is easy to install but the updates are a pain and everything is binary when you get it. No tweaking there.

It is really nice and unique for sure. What you have is as close to Linux from Scratch as it can get I think. It is what they planned when they wrote the code since it is source based.

Install something easy like Mandrake and you can install Gentoo from that. I did it that way. I did mine from a Konsole in KDE in Mandrake. Then I moved it to another drive later on. Knoppix will work to I have heard.

Hope that helps.

 
Old 06-12-2006, 06:35 AM   #12
jlo_sandog
Member
 
Registered: Jul 2005
Location: USA
Distribution: F10 (x86_64)
Posts: 549

Rep: Reputation: 32
Oh please you guys have some cheese with that wine. Ranting is not the best way to get anything. Painful memories of some old gash.

No company is going to bother much on providing linux support for slow speed modems. External serial modems work as you well know.

If you want to fax documents there are services that allow this via the internet. In fact I know my company uses one such service (cant remember the name). You may have to pay a small monthly fee, but if you think about it you can save on paper and ink. Save some trees... and the whales...save yourself
 
  


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
My rant. DDoS YourseLF General 2 08-04-2005 03:45 PM
My rant Joey.Dale General 10 09-28-2004 08:22 PM
Just a rant! cereal83 General 21 07-18-2004 12:19 AM
rant, rant, rant (dselect) fenderman11111 Debian 2 07-06-2004 07:03 PM
A rant Thorkyl General 17 06-30-2004 09:22 AM

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

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