LinuxQuestions.org
Help answer threads with 0 replies.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 05-16-2006, 01:25 AM   #1
jefy_chacko
LQ Newbie
 
Registered: Apr 2006
Posts: 5

Rep: Reputation: 0
How do i access internet in Linux?


I have red hat linux running in my pc. I am accessing internet in windows, using a Broadband DSL, with an externel modem. How do i configure the internet in Linux? Please guide me step by step.

Regards,
Jefy Chacko.
 
Old 05-16-2006, 01:35 AM   #2
Linux~Powered
Member
 
Registered: Jan 2004
Location: /lost+found
Distribution: Slackware 14.2
Posts: 849

Rep: Reputation: 33
Have you even tried yet? Usually it loads the right module for you.
 
Old 05-16-2006, 01:39 AM   #3
jens
Senior Member
 
Registered: May 2004
Location: Belgium
Distribution: Debian, Slackware, Fedora
Posts: 1,463

Rep: Reputation: 299Reputation: 299Reputation: 299
Could you give some more info about your connection(DHCP?) and modem(ethernet or USB?).
 
Old 05-16-2006, 03:17 AM   #4
wraithe
Member
 
Registered: Feb 2006
Location: Australia
Distribution: Linux... :-)
Posts: 241
Blog Entries: 1

Rep: Reputation: 50
if you are using the modem via ethernet, then linux should have defaulted that connection anyway...
if it is via usb, then thats another kettle of fish...
have a look and see if your modem is supported by linux...
if not then change windows over to ethernet and then reboot to linux...
check eth0 is connected and then your on line...
since you already use windows, dont worry about using linux to setup the connection, just reboot to linux and your online...then you can learn to configure it to setup your adsl once you have some fun...
 
Old 05-19-2006, 12:46 AM   #5
jefy_chacko
LQ Newbie
 
Registered: Apr 2006
Posts: 5

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by jens
Could you give some more info about your connection(DHCP?) and modem(ethernet or USB?).
Hi, I am using ethernet to access the modem. Please tell me how to start with. I have no idea how to kick start this
 
Old 05-19-2006, 09:53 PM   #6
wraithe
Member
 
Registered: Feb 2006
Location: Australia
Distribution: Linux... :-)
Posts: 241
Blog Entries: 1

Rep: Reputation: 50
ok...have you tried using mozilla or whatever browser...
if your using eth0, unless you have some extremely weird chip then it should have detected it on install...if not then you may have to start the eth0 connection...inwhich case to make it easy let me know what distro you have ..
you can always go into your monitor app and check if it is connected and loaded...
under gnome its in applications/systemtools
in kde it should be systemtools/monitoring..
 
Old 05-22-2006, 02:27 AM   #7
jefy_chacko
LQ Newbie
 
Registered: Apr 2006
Posts: 5

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by wraithe
ok...have you tried using mozilla or whatever browser...
if your using eth0, unless you have some extremely weird chip then it should have detected it on install...if not then you may have to start the eth0 connection...inwhich case to make it easy let me know what distro you have ..
you can always go into your monitor app and check if it is connected and loaded...
under gnome its in applications/systemtools
in kde it should be systemtools/monitoring..

I am using mozzila. i am using ethernet and a modem. should i install a driver for that modem? if yes plz guide me how to install that and how should i configure my eth0, when i checked its status, its showing not active, n im unable to succeed in getting it activated.
 
Old 05-23-2006, 12:49 AM   #8
wraithe
Member
 
Registered: Feb 2006
Location: Australia
Distribution: Linux... :-)
Posts: 241
Blog Entries: 1

Rep: Reputation: 50
http://www.redhat.com/docs/manuals/l...rk-config.html

A driver for your moedem should not be needed as you have set it up with eth0 and used win to log it on so its working...
starting eth0 in linux is what you need...
go to this link, it is for RH...

Last edited by wraithe; 05-23-2006 at 12:51 AM.
 
Old 05-23-2006, 09:29 PM   #9
Russell Griffiths
LQ Newbie
 
Registered: May 2006
Location: Sydney, Australia
Distribution: Red Hat 7.3
Posts: 27

Rep: Reputation: 15
Jefy
it's pretty stariaghtfwd ..
first, set up your ethernet card
type 'ifconfig eth0' to see what the current settings are.
unless you can see 'up', and 'running' in the output somewhere, its a more basic prob, and we can get back to that.
next thing is to make sure the ip address is on the same network as your broadband router.
A lot of routers take either 10.1.1.1 or 10.0.0.1 as default ip address,
while most local ethernet cards on Linux default to 192.168.0.x
the ifconfig query should shw your address and netmask.
check your windows box .. what's it's ip address and netmask, and gateway
if you aren't sure how to do that .. start>settings>control panel>network connectiopns>tcp/ip>properties. print the panel.

on the linux box, set the ip address of the ethernet connection to the same network address of the windows box.
ie if windows shows the gateway address as 10.1.1.1
and if your ifconfig shows a different one, set it
ifconfig eth0 10.1.1.3 (put an appropriate address here)
then ifconfig netmask 255.255.255.0 (if it wasn't already
then ifconfig eth0 to reprint it all .. if it looks ok ..
ping the router (the gateway)
ping 10.1.1.1 (or whatever it is
if you can see it, test that your DNS is working ok, and names will resolve ..
ping www.yahoo.com .. if you get a reply .. it's up and away
all you need to do now is open a browser .. just type startx (ie start x server), then use Mozilla
one good thing about linux .. no rebooting every time you change anything!!

Grif
 
Old 05-26-2006, 05:28 PM   #10
jefy_chacko
LQ Newbie
 
Registered: Apr 2006
Posts: 5

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Russell Griffiths
Jefy
it's pretty stariaghtfwd ..
first, set up your ethernet card
type 'ifconfig eth0' to see what the current settings are.
unless you can see 'up', and 'running' in the output somewhere, its a more basic prob, and we can get back to that.
next thing is to make sure the ip address is on the same network as your broadband router.
A lot of routers take either 10.1.1.1 or 10.0.0.1 as default ip address,
while most local ethernet cards on Linux default to 192.168.0.x
the ifconfig query should shw your address and netmask.
check your windows box .. what's it's ip address and netmask, and gateway
if you aren't sure how to do that .. start>settings>control panel>network connectiopns>tcp/ip>properties. print the panel.

on the linux box, set the ip address of the ethernet connection to the same network address of the windows box.
ie if windows shows the gateway address as 10.1.1.1
and if your ifconfig shows a different one, set it
ifconfig eth0 10.1.1.3 (put an appropriate address here)
then ifconfig netmask 255.255.255.0 (if it wasn't already
then ifconfig eth0 to reprint it all .. if it looks ok ..
ping the router (the gateway)
ping 10.1.1.1 (or whatever it is
if you can see it, test that your DNS is working ok, and names will resolve ..
ping www.yahoo.com .. if you get a reply .. it's up and away
all you need to do now is open a browser .. just type startx (ie start x server), then use Mozilla
one good thing about linux .. no rebooting every time you change anything!!

Grif

Grif, Thanks. I think the problem is very basic. Its not able to detect the ethernet card. when i did ifconfig eth0 then its throwing an error somewhat like 'eth0:error fetching interface information:device not found.' And i went to start>system settings>network and tried to activate eth0 but its also showed the same error that device missing. Also i cannot find start>settings>control panel>network connectiopns>tcp/ip>properties on my system. Im using a red hat linux. Plz guide me with further steps.

Jefy
 
  


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
linux on vmware, how to access the internet linuxpharoah Linux - Networking 1 10-11-2005 03:13 AM
internet access for linux with avm ken j-ray Linux - Networking 0 09-14-2004 02:51 AM
How to access windows Network and Internet from Linux indian Linux - Networking 1 09-09-2004 02:32 PM
windows clients have access to the internet, linux ones don't esanchez Linux - Networking 1 04-28-2004 08:21 PM
How do u setup your linux machine so that u may access it from the internet? gonus Linux - Software 4 06-14-2002 12:56 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

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