LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 10-16-2001, 12:49 PM   #1
dsflash
LQ Newbie
 
Registered: Aug 2001
Posts: 8

Rep: Reputation: 0
cable modem


I recently got an @home cable modem for my computer. I have a dual-boot linux and windows computer, and I have installed the software for windows. How do I install it for linux?
 
Old 10-16-2001, 02:47 PM   #2
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 271Reputation: 271Reputation: 271
you won't be able to use the @home software within linux but you should be able to configure and get the cable modem working in linux. What distro are you using? and is your cable modem hooked via ethernet or usb?

Last edited by trickykid; 10-16-2001 at 04:46 PM.
 
Old 10-16-2001, 03:08 PM   #3
webtoe
Member
 
Registered: Apr 2001
Location: Cambridge, England
Distribution: Slackware 10, Fedora Core 3, Mac OS X
Posts: 617

Rep: Reputation: 30
go to linux.com . they have currently on their front page how to set up an @home cable modem in linux

Alex
 
Old 10-16-2001, 08:04 PM   #4
psylink
LQ Newbie
 
Registered: Apr 2001
Location: Australia
Distribution: Mandrake 7.2 - 8.0
Posts: 2

Rep: Reputation: 0
I dont think you need @home software at all.. If it is anything like the Australian Version of the @home network, all you have to do is use the DHCP client and give it the parameter of the machines hostname when you got the Cable modem Installed... I think it is something like s04053232-42 or something (I cant remember, I personally am not with @home).

There is my 2 cents worth.
 
Old 10-16-2001, 08:28 PM   #5
DMR
Member
 
Registered: Jun 2001
Location: Fairfax, California
Distribution: RH 9.0, RH 7.3, Mandrake 8.0
Posts: 986

Rep: Reputation: 30
Yup, it works without the @home software; you can use any browser you want. As psylink said, all you need is the configuration info @home gives you when
you get your account.
 
Old 10-16-2001, 09:21 PM   #6
DavidPhillips
LQ Guru
 
Registered: Jun 2001
Location: South Alabama
Distribution: Fedora / RedHat / SuSE
Posts: 7,163

Rep: Reputation: 58
edit the network file to look something like this

[david@ccxxxxxx-x]$ cat /etc/sysconfig/network
NETWORKING=yes
HOSTNAME=ccxxxxxx-x
GATEWAYDEV=eth0
GATEWAY=

if you want dhcp

make your ifcfg-eth0 file something like this

[david@ccxxxxxx-x]$ cat /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
BOOTPROTO=dhcp
ONBOOT=yes
DHCP_HOSTNAME=ccxxxxxx-x


use your hostname in the place of ccxxxxxx-x
--------------------------------------------------------------------------
if you don't want dhcp you need to get your ip address from windows, ipconfig .... etc

substitute your info

do this command

ifconfig eth0 xxx.xxx.xxx.xxx netmask 255.255.255.???

then this

route add default gw xxx.xxx.xxx.xxx

then edit resolv.conf

vi /etc/resolv.conf

put in the dns servers





Last edited by DavidPhillips; 10-16-2001 at 09:35 PM.
 
Old 10-18-2001, 01:22 PM   #7
WindozBytes
Member
 
Registered: Aug 2001
Location: CT, USA
Distribution: Mandriva 2008
Posts: 105

Rep: Reputation: 15
DavidPhillips is on the right track; I would however add one point. The modifications to /etc/sysconfig/network are unnecessary; the connection will work just fine once you complete the mods to .../ifcfg-eth0.

Further, the article that webtoe mentioned is quite good, lots of interesting tidbits there.
 
Old 10-18-2001, 08:27 PM   #8
DavidPhillips
LQ Guru
 
Registered: Jun 2001
Location: South Alabama
Distribution: Fedora / RedHat / SuSE
Posts: 7,163

Rep: Reputation: 58
The HOSTNAME in the network file would be necessary if you are using static IP, or you can use dhcp.

At least with my ISP thats the way it is.
 
Old 10-19-2001, 05:10 AM   #9
WindozBytes
Member
 
Registered: Aug 2001
Location: CT, USA
Distribution: Mandriva 2008
Posts: 105

Rep: Reputation: 15
DavidPhillips:

Thanks for the clarification.
 
Old 10-19-2001, 01:46 PM   #10
Tasha v71
Member
 
Registered: Oct 2001
Location: Cave Creek, AZ
Distribution: Red Hat v7.1 Seawolf Edition :)
Posts: 38

Rep: Reputation: 15
i've got @home too, 2 machines, WIN2K and Red Hat 7.1 linked by a Linksys router... no problem getting online, but what about file and print sharing??
 
Old 10-24-2001, 08:17 AM   #11
andysmith
LQ Newbie
 
Registered: Oct 2001
Location: Kingston-upon-Thames, UK
Distribution: RedHat v7.0
Posts: 1

Rep: Reputation: 0
Win2K/Linux networking

Quote:
Originally posted by Tasha v71
i've got @home too, 2 machines, WIN2K and Red Hat 7.1 linked by a Linksys router... no problem getting online, but what about file and print sharing??
Yep, I can't do it either (running a home network with win2K pc as ICS inteface to cable modem, win98 pc and linux pc. A useful refernce is 'Skirting some common samba problems' by Richard Sharpe http://www.linuxworld.com/linuxworld...11-samba.html. BUT, I still can't get it to work despite following his tips. Let me know if you crack it - I have to resort to ftp'ing from a cmd prompt to move files around.

Also, any suggestions on how to configure my Win2K ICS pc to allow me to run remote X-sessions from my linux pc (telnet into remote computer, setenv DISPLAY <my ip>:0.0)?
 
Old 10-24-2001, 09:16 PM   #12
DavidPhillips
LQ Guru
 
Registered: Jun 2001
Location: South Alabama
Distribution: Fedora / RedHat / SuSE
Posts: 7,163

Rep: Reputation: 58
It works great with win98, winme, or win2k© and probably anything else that supports micro$oft network©

The way mine is setup I send out the netbios info via dhcp to any client that plugs in to my internal network and configures it for the wins server, netbios suffix, and ip address©

As far as I know this is all that's required on the client©


On the server I use the wins support and make linux my master browser©

I also use encrypted passwords

All pcs including the server are in network neighborhood and are accessable, even though I have my network divided into different subnets on different nics in the server©

to access the pcs from the linux server I use mount©

mount -t smbfs //winme/pub -o username=david,password=password /lan/winme/pub

this is the easiest way I have found to do it© If you use KDE you might want to play around with lisa if you want to browse the lan in Konq

cheops is handy too

I guess the first thing is getting samba working©
 
  


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
cable modem mike99 Linux - Hardware 4 08-17-2005 11:21 AM
printer cable > modem cable? C++freak Linux - Hardware 1 06-21-2003 01:53 PM
Cable Modem Painmaster Linux - Newbie 2 03-18-2002 12:44 PM
cable modem dsflash Linux - Newbie 1 11-20-2001 12:58 AM
Cable Modem help please NeedingHelp Linux - General 1 06-18-2001 04:50 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 09:54 PM.

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