View previous topic :: View next topic |
Author |
Message |
Milbog_McLoon n00b
Joined: 04 Jun 2005 Posts: 32
|
Posted: Sun Jun 05, 2005 10:24 pm Post subject: Need help getting on the net with Dialup/PPP [SOLVED] |
|
|
I finally got my gentoo linux working, now I need to get it on the net. Is there any good programs to use?
I'm trying to use WVDIAL, but when I try to emerge it it has like 30 dependencies, many I don't have. I am in the process of downloading them, but some of them have X11 in their title, I'm assuming that's Xwindows which I don't have. Will this work if I get all the dependencies? Is there a better dialup program I can use?
Thanks.
Last edited by Milbog_McLoon on Tue Jun 07, 2005 1:52 pm; edited 1 time in total |
|
Back to top |
|
|
tomvollerthun Guru
Joined: 19 Mar 2005 Posts: 316
|
Posted: Mon Jun 06, 2005 9:24 am Post subject: |
|
|
wvDial is, as far as I know, a helper application for ppp (the command line application).
It helps you configuring your connection as well as connect and disconnect your provider.
If you can configure ppp yourself, you can ommit wvDial and use ppp directly,
but when I've been a modem user (and unexperienced Linux user at the same time), I found wvDial to be absolutely incredible: for me it was the only possibility to get online. Later I could configure ppp myself and had no need for wvDial anymore and now I use DSL which makes many things very easy.
As to the dependencies: I don't know which they are, but yes, normally X11 means a program has a GUI for XWindows.
When I used wvDial, it was a commandline tool, so no GUI. Perhaps one was added and that pulls the dependencies in? If that annoys you, maybe there's a USE flag to disable a GUI?
I don't know of a better dialup program, for me this one was the best!
cu, tom _________________ Computer science is no more about computers than astronomy is about telescopes.
Dijsktra
---------------
Don't believe my "Guru" status! |
|
Back to top |
|
|
corley Tux's lil' helper
Joined: 12 May 2005 Posts: 78
|
Posted: Mon Jun 06, 2005 12:27 pm Post subject: wvdial stuff |
|
|
Well.. as with any gentoo emerge the good things are that you can remove the items from your use flags that you don't want, or optionally specify specific use fiags when you install something.
1st try emerge -pv <package_name>
Then you should see the required packages. You can also check your use flags in /etc/make.conf and specifically set that up for the packages you want. An example would be putting "jpg" in your use flags if you wanted all the applications (or the ones that supported it) to compile with jpg image support. The idea here is to remove the support for X11 in your case.
Then you can emerge the package again.. shouldn't be nearly that many. Actually if you have downloaded the iso image for the CD, burned it and used that to install, then you should have ppp and everything else on there too.. check the cd. If you don't have one.. you should just make one and do it that way... You are stuck in a catch 22 otherwise since you need ppp to connect and you cant download it without ppp |
|
Back to top |
|
|
Milbog_McLoon n00b
Joined: 04 Jun 2005 Posts: 32
|
Posted: Mon Jun 06, 2005 1:27 pm Post subject: cool |
|
|
Thanks, I'll try the WVDial without X windows. I can transfer the files, I download them on my Windows computer,
burn a cd and mount it in linux.
What would be the file and the syntax where I would remove the Xwindows files for the emerge? |
|
Back to top |
|
|
toralf Developer
Joined: 01 Feb 2004 Posts: 3943 Location: Hamburg
|
Posted: Mon Jun 06, 2005 1:31 pm Post subject: |
|
|
Code: | USE=-X emerge -a wvdial |
|
|
Back to top |
|
|
Milbog_McLoon n00b
Joined: 04 Jun 2005 Posts: 32
|
Posted: Mon Jun 06, 2005 3:56 pm Post subject: use |
|
|
Hi. I tried that use command, but when I do
emerge --pretend wvdial
a lot of x11 packages still show up. will they be skipped over when they are reached in the list?
Also do I need cups for wvdial? How do I eliminate that? |
|
Back to top |
|
|
tomvollerthun Guru
Joined: 19 Mar 2005 Posts: 316
|
Posted: Tue Jun 07, 2005 7:01 am Post subject: |
|
|
toralf wrote: | Code: | USE=-X emerge -a wvdial |
|
Don't do that: terrible things happen and stuff, so just don't
It seems as if wvstreams is the package that pulls in the dependencies. You can tell by issuing
and look what USE-flags are displayed after each package.
If you are not happy with what you see, you can always abort the emerge!
In my case, wvstreams pulls in qt, tcltk and gtk, all of which are X11-Libraries.
To make wvstreams not use these packages (and remember that after an update) do
Code: | echo "net-libs/wvstreams -gtk -qt -tcltk" >> /etc/portage/package.use |
Then try again to emerge -av wvdial and see if things got any better.
For each package that pulls in unwanted dependencies, you can add a line to /etc/portage/package.use telling the package not to use that dependency, just like I did with wvstreams above.
If you don't get any further post the output of emerge -av wvdial so we together can try and see which are the buggers that you want to get rid of.
cu, tom _________________ Computer science is no more about computers than astronomy is about telescopes.
Dijsktra
---------------
Don't believe my "Guru" status! |
|
Back to top |
|
|
|