LinuxQuestions.org
Share your knowledge at the LQ Wiki.
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 05-27-2005, 04:03 AM   #1
umesh90
LQ Newbie
 
Registered: May 2005
Posts: 4

Rep: Reputation: 0
Want to connect DSL modem


Hai

I have just installed Redhat 9 ver. I have a DSL connection via USB modem. I checked up with the supplier and he says that Linux does not support USB modem. Is that correct?. If not can any one of you help me to configue it please

Umesh
 
Old 05-27-2005, 04:27 AM   #2
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
They actually meant that they don't support linux, so I would guess that that company may be in bed with Microsoft (not a good thing IMHO).

My advice is to never, ever, buy anything before checking the hardware howto to find out: Will your hardware work? Selecting real hardware will improve Windows performance as well.

Perhaps these linux google hits will help.

Last edited by fancypiper; 05-27-2005 at 04:36 AM.
 
Old 05-27-2005, 05:31 AM   #3
umesh90
LQ Newbie
 
Registered: May 2005
Posts: 4

Original Poster
Rep: Reputation: 0
Thanks for fancypiper. I think it is my mistake that I have not explained the case fully. I will try it once again.

1 The DSL company is saying that USB modem will not work with Linux. Ihave been using this modem in windows XP for about 2 years now
2 The Modem make is R B Comtec.
3 I want to migrate to Linux Redhat 9.0 now and want to install the modem through USB port of my system.
4 What I should do to the same.

Thanks in advance
Umashankar
 
Old 05-27-2005, 06:04 AM   #4
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
It seems you are out of luck with that company since they won't support and supply the Linux drivers for it but they will for Windows (don't you just love their buisiness practices?).

The Linux Google hits don't look promising as it shows zero hits.

I suggest selling that modem to someone that uses Windows only and buying one that uses ethernet connections (cat5a cables) and has it's own "wall wart" or electric plug instead. Check the hardware compatability howto before purchasing to make sure you are getting something with real hardware inside.

Last edited by fancypiper; 05-27-2005 at 06:08 AM.
 
Old 05-27-2005, 10:39 AM   #5
umesh90
LQ Newbie
 
Registered: May 2005
Posts: 4

Original Poster
Rep: Reputation: 0
Thanks fancypiper

Bingo I could find that this modem is Xentrix USB modem and there is a driver (eciadsl) just do a google hit it lands up in that company site. But still after doing all they said, the driver says that the modem is not connected to the system. The unjust part as you rightly said, the company is not even aware that they have an USB driver circulating in the net . Please try to help if possible. Thanks for your time
 
Old 05-27-2005, 01:45 PM   #6
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
Now, here are the hoops you need to jump through:

# 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 look 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 fancy]$ su -
Password:
[root@tinwhistle root]# uname -r
2.4.20-28.7
I am running kernel version 2.4.20-28.7. 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.20-28.7
drwxr-xr-x   16 root     root          584 Jun  4 12:11 linux-2.4.20-28.7
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.20-28.7 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. I may as well make one now to save editing the files in the source code every time I need to compile anything concerning the kernel. So, I'll make that link just now:
Code:
[root@tinwhistle src]# ln -s linux-2.4.20-28.7 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.20-28.7
lrwxrwxrwx    1 root     root           14 Jun  4 12:11 linux-2.4 -> linux-2.4.20-28.7
drwxr-xr-x   16 root     root          584 Jun  4 12:11 linux-2.4.20-28.7
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 compiling. Make sure you carefully read the README and INSTALL files after extracting and before compiling/installing.
 
Old 05-28-2005, 07:32 AM   #7
umesh90
LQ Newbie
 
Registered: May 2005
Posts: 4

Original Poster
Rep: Reputation: 0
Fancypiper

Tks for all the effort you have been taking. I have lost hope on this modem. Can we do this?

Connect the modem on to a windows PC where it will wotk fine put some proxy there and browse from a linux machine?. Is that a possibility? can you please guide me on this as Iam new to linux and dont want to be spooked out from linux by a silly peice of hardware supplied by Bharati telnet here in India. BOO to Bharati telnet.

Tks in advance
umesh
 
  


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
D-Link DSL-200 Rev B DSL modem -- success!! ludeKing Linux - Hardware 1 03-11-2007 07:32 PM
Actiontec DSL Modem I can't connect SlowMindThinkin Linux - Newbie 17 11-27-2004 06:49 PM
How to connect d-link dsl-200i usb adsl modem? xeo Linux - Hardware 0 07-22-2004 04:27 AM
Dsl Modem Installation -- Aztech Dsl Turbo 100 psganesh Linux - Networking 0 07-01-2004 03:04 AM
I can not connect to my DSL modem any more Ibrahim Linux - Networking 1 03-24-2004 12:09 PM

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

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