Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
|
01-02-2005, 10:37 PM
|
#1
|
|
Member
Registered: Sep 2004
Location: Malaysia
Distribution: FC6, Solaris
Posts: 340
Rep:
|
Setup internet connection
Hi, i just installed Red at linux 7.2 and just wondering how to setup my ADSL connection to internet. I have network card installed and not sure whether i have correctly setup it. Pls advise. Thanks
Rgds
Daniel
|
|
|
|
01-02-2005, 10:47 PM
|
#2
|
|
Guru
Registered: Jan 2001
Posts: 24,128
Rep: 
|
Posting the type of card and model number you have always helps??
|
|
|
|
01-02-2005, 11:23 PM
|
#3
|
|
Member
Registered: Sep 2004
Location: Malaysia
Distribution: FC6, Solaris
Posts: 340
Original Poster
Rep:
|
Hi, its a realtek RTL 8029(AS) ethernet card.
Rgds
Daniel
Quote:
Originally posted by trickykid
Posting the type of card and model number you have always helps??
|
|
|
|
|
01-05-2005, 07:25 AM
|
#4
|
|
Member
Registered: Sep 2004
Location: Malaysia
Distribution: FC6, Solaris
Posts: 340
Original Poster
Rep:
|
Hi, i've tested my network card and its working. I tried to ping itself now it works after i restart the NFS services. But problem now is hw to setup to internet using ADSL ? i have a CD installer to the ADSL modem , should i use it or they are bundled in linux ?
Rgds
Daniel
Quote:
Originally posted by trickykid
Posting the type of card and model number you have always helps??
|
|
|
|
|
01-05-2005, 08:17 AM
|
#5
|
|
Member
Registered: Dec 2004
Location: Argentina
Distribution: Slack 10
Posts: 45
Rep:
|
Try using this little program, is pretty easy and neat, you'll have you adsl running in a couple of minutes :
http://www.roaringpenguin.com/pengui...e_rp-pppoe.php
|
|
|
|
01-05-2005, 10:09 AM
|
#6
|
|
Member
Registered: Sep 2004
Location: Malaysia
Distribution: FC6, Solaris
Posts: 340
Original Poster
Rep:
|
Hi, does linux have its own native adsl connection software ?
Rgds
Daniel
|
|
|
|
01-05-2005, 10:13 AM
|
#7
|
|
Member
Registered: Sep 2004
Location: Malaysia
Distribution: FC6, Solaris
Posts: 340
Original Poster
Rep:
|
Hi , on more thing i have noticed almost all file downloaded for linux end with .gz ? what does it means ? also how to run it ? i just installed linux few days ago. Thanks
Rgds
Daniel
Quote:
Originally posted by DanielTan
Hi, does linux have its own native adsl connection software ?
Rgds
Daniel
|
|
|
|
|
01-05-2005, 01:48 PM
|
#8
|
|
Member
Registered: Dec 2004
Location: Argentina
Distribution: Slack 10
Posts: 45
Rep:
|
.gz just means it is compressed using gunzip, a compression program very similar to WinZip.
You need to extract the gzipped file first, so that you can acces the files inside it.
Once you've done this, either using graphics tools (in kde, for example, you just need to righ click the file and select Action: Extract here) or in console mode (cd to the files directory and do gzip -d filename (gzip --help can be very useful too  ).
You'll probably find a .txt file explaining how to install the prog. usually, it's something like this:
./configure **To make previous configs before compiling**
and then:
make **Compiles the file**
make install **Installs the compiled file**
But you'd better refer to the files readme or install file.
Last edited by kopikat; 01-05-2005 at 01:50 PM.
|
|
|
|
01-08-2005, 03:25 AM
|
#9
|
|
Member
Registered: Sep 2004
Location: Malaysia
Distribution: FC6, Solaris
Posts: 340
Original Poster
Rep:
|
Hi, which file do i have to extract in linux ? I'm using gnome interface. Any tools for that ?
Rgds
Daniel
Quote:
Originally posted by kopikat
.gz just means it is compressed using gunzip, a compression program very similar to WinZip.
You need to extract the gzipped file first, so that you can acces the files inside it.
Once you've done this, either using graphics tools (in kde, for example, you just need to righ click the file and select Action: Extract here) or in console mode (cd to the files directory and do gzip -d filename (gzip --help can be very useful too ).
You'll probably find a .txt file explaining how to install the prog. usually, it's something like this:
./configure **To make previous configs before compiling**
and then:
make **Compiles the file**
make install **Installs the compiled file**
But you'd better refer to the files readme or install file.
|
|
|
|
|
01-08-2005, 11:09 AM
|
#10
|
|
Member
Registered: Oct 2003
Distribution: Just about anything... so long as it is Debain based.
Posts: 297
Rep:
|
First off, you are using a VERY old verson of Redhat, I would suggest going with something a little more new to help with your hardware detection issues.
Secondly, in order to deal with .gz and .tar.gz files you may want to go to a terminal window and type "man gzip" and "man tar." Read through those manuals and you will find it much easier to work in the linux world.
To help you with your current dilema, you will best be served by using the following command at a terminal windows in the same directory as where you downloaded the file:
tar -zxvf rp-pppoe-3.5.tar.gz
What this command does is use the "tar" utility, a program that sticks a bunch of files together into one big lump, to uncompress and unstick all the files. The "z" says to use the gzip utility to uncompress it first. The "x" is to extract the files from the .tar file. The "v" is to be verbose, think wordy, with the output of the command... this is nice if you have any errors. Lastly, the "f" says to keep the file structure... For example, if you stuck 5 directories together with all the subfolders the "f" will keep the folders and subfolders in the correct location.
You may also run into a .tar.bz2 file. The command for this is:
tar -jxvf filename.tar.bz2
I hope you find this helpful; however, I hope you do not stop learing by what I have given here. These utilities are VERY handy and you will serve yourself well to learn more about them.
Cheers!
MrKnisely
|
|
|
|
01-08-2005, 11:59 AM
|
#11
|
|
Member
Registered: Sep 2004
Location: Malaysia
Distribution: FC6, Solaris
Posts: 340
Original Poster
Rep:
|
Hi, thanks for your help. Have you done this process before ? i have extract the .gz file using gzip and it appear one .tar file, the .tar file i use winzip to extract it and a list of files. After that i copy those file to a folder under linux (from windows) and try to follow the readme instruction. But nothing works. Can it be done this way or must extract under linux using tar ?
Regards
Daniel
Quote:
Originally posted by charon79m
First off, you are using a VERY old verson of Redhat, I would suggest going with something a little more new to help with your hardware detection issues.
Secondly, in order to deal with .gz and .tar.gz files you may want to go to a terminal window and type "man gzip" and "man tar." Read through those manuals and you will find it much easier to work in the linux world.
To help you with your current dilema, you will best be served by using the following command at a terminal windows in the same directory as where you downloaded the file:
tar -zxvf rp-pppoe-3.5.tar.gz
What this command does is use the "tar" utility, a program that sticks a bunch of files together into one big lump, to uncompress and unstick all the files. The "z" says to use the gzip utility to uncompress it first. The "x" is to extract the files from the .tar file. The "v" is to be verbose, think wordy, with the output of the command... this is nice if you have any errors. Lastly, the "f" says to keep the file structure... For example, if you stuck 5 directories together with all the subfolders the "f" will keep the folders and subfolders in the correct location.
You may also run into a .tar.bz2 file. The command for this is:
tar -jxvf filename.tar.bz2
I hope you find this helpful; however, I hope you do not stop learing by what I have given here. These utilities are VERY handy and you will serve yourself well to learn more about them.
Cheers!
MrKnisely
|
|
|
|
|
01-08-2005, 02:14 PM
|
#12
|
|
Member
Registered: Oct 2003
Distribution: Just about anything... so long as it is Debain based.
Posts: 297
Rep:
|
I have a PPPoE connection in linux; however, I had an external DSL bridge provided to me by my ISP. I did not need any external program or driver to that connection.
Sorry.
I still think that your hadrware driver issues are MUCH more likely to be resolved with a newer verion of Redhat/Fedora and/or Linux Kernel.
Cheers!
MrKnisely
|
|
|
|
01-08-2005, 03:24 PM
|
#13
|
|
LQ Veteran
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 11,231
|
Quote:
Originally posted by DanielTan
Hi, thanks for your help. Have you done this process before ? i have extract the .gz file using gzip and it appear one .tar file, the .tar file i use winzip to extract it and a list of files. After that i copy those file to a folder under linux (from windows) and try to follow the readme instruction. But nothing works. Can it be done this way or must extract under linux using tar ?
|
I presume you are doing this because you don't have an Internet connection under Redhat.
Suggestions;
- get a newer RH - that is *very* old, as has been mentioned
- share a partition between RH and Windows; FAT is probably best in your case
- download to that shared partition (from Windows) and leave it tar'ed
- fire up Linux and do the expanding from there
Basically, use the right tool for the job.
|
|
|
|
01-08-2005, 04:19 PM
|
#14
|
|
Member
Registered: Apr 2004
Location: Wales
Distribution: rh9, winxp
Posts: 411
Rep:
|
If u wish to use red hat why not upgrade to rh9 or even fedora,,,, although I am personally happy with rh9....which type of adsl modem are u using....and sometimes pppOe/pppOa depend on your location so u could try adding location to your profile to help determine which connection u r using :-) and tar.gz files canbe easily opened in a linux environment,,,although there are `google` finds that will give u programs to open them.
|
|
|
|
01-08-2005, 10:11 PM
|
#15
|
|
Member
Registered: Sep 2004
Location: Malaysia
Distribution: FC6, Solaris
Posts: 340
Original Poster
Rep:
|
Hi charon, after running the command you provided, it did extract a list of files. But i didn't see any files like filename.tar.bz2 . However, i try to execute the ./go or ./go-gui file as mentioned in the readme, the error appeared. Below is the error message
running ./configure
loading cache ./config.cache
checking for gcc .... no
checking for cc .......no
configure : error : no acceptable cc found in $path
Oops: It looks like ./configure failed
Regards
Daniel
Quote:
Originally posted by charon79m
First off, you are using a VERY old verson of Redhat, I would suggest going with something a little more new to help with your hardware detection issues.
Secondly, in order to deal with .gz and .tar.gz files you may want to go to a terminal window and type "man gzip" and "man tar." Read through those manuals and you will find it much easier to work in the linux world.
To help you with your current dilema, you will best be served by using the following command at a terminal windows in the same directory as where you downloaded the file:
tar -zxvf rp-pppoe-3.5.tar.gz
What this command does is use the "tar" utility, a program that sticks a bunch of files together into one big lump, to uncompress and unstick all the files. The "z" says to use the gzip utility to uncompress it first. The "x" is to extract the files from the .tar file. The "v" is to be verbose, think wordy, with the output of the command... this is nice if you have any errors. Lastly, the "f" says to keep the file structure... For example, if you stuck 5 directories together with all the subfolders the "f" will keep the folders and subfolders in the correct location.
You may also run into a .tar.bz2 file. The command for this is:
tar -jxvf filename.tar.bz2
I hope you find this helpful; however, I hope you do not stop learing by what I have given here. These utilities are VERY handy and you will serve yourself well to learn more about them.
Cheers!
MrKnisely
|
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 05:08 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|