Surfing the web with Lynx


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Surfing the web with Lynx
# 1  
Old 03-18-2002
Surfing the web with Lynx

Linux detected my modem(finally!) and I then proceeded it to configure it with Minicom according to the instructions here. I got it configured, and can dial up to my ISP, but now I am trying to figure out how to get Lynx to use the connection. Any ideas?
# 2  
Old 03-18-2002
Are you connecting to your ISP via PPP? If so, just fire up and lynx and you are on your way. If you are using minicom to make a direct dial-in connection to a terminal server on another unix box, then you will need to run lynx on the remote machine.
# 3  
Old 03-22-2002
On connecting with Minicom, I get:

PPP session from [IP] to [IP] started...

On attempting to follow a link with Lynx, I get:

Alert! Remote host not found!

So: How do I keep the connection open? How do I get Lynx to utilize the connection?
# 4  
Old 03-22-2002
I've never used minicom to establish a ppp connection, but as I'm finding out, there is even more than one way! Here's one that I found in a (old) book:
Quote:
...
You can do this because minicom can quit without resetting your modem. This means you can use minicom to dial out, connect, and then quit, allowing you to start your PPP sessions with the pppd daemon. Here's how:

1. Run minicom
2. Type ATDT, followed by your ISP's modem number.
3. Wait for the connection, roue ISP's prompt, then log in with your username and password. (...)
4. Press Ctrl+Q to exit minicom without a modem reset.
5. From the command line, type the following:
# pppd -d detach /dev/modem &
(assuming /dev/modem is your modem device)
I don't know how close this is to what you're doing.

You could also write a chat script that will dial and start pppd for you...

If lynx can't connect, it may be that it can't resolve hosts...
look in the file /etc/resolv.conf
Does it have info for nameservers, domain and search?

Can you connect via IP address, or not even that? You may have to add a route, so packets can get out of your machine.

Try this:
lynx 64.23.37.23
If that doesn't work, try
ping 64.23.37.23
Let us know what the reults are with those commands...

I almost forgot what a hassle dialup can be, since I started using only WvDial.

Hope this helps a little.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

lynx

theres a form with these fields <form name="cpgform" id="cpgform" method="post" action="update.php"> <input type="text" name="user" size="30" class="textinput" /> <input type="password" name="pass" size="30" class="textinput" /> <input type="hidden" name="method" value="admin" />... (1 Reply)
Discussion started by: vanessafan99
1 Replies

2. UNIX for Advanced & Expert Users

Surfing the Internet problems with multiple browsers

Could anyone explain why I am having trouble surfing the internet with both firefox and konqueror? Chromium seems to be the only browser that will work. I tried to create a new profile with firefox and that didn't work either. I can ping things just fine, I can download stuff with wget, I can ssh... (6 Replies)
Discussion started by: cokedude
6 Replies

3. Web Development

apache, surfing a directory

Hi, I have a directory and I need a url that users can surf it.like ftp. my web server is apache. Thanks in advance. (2 Replies)
Discussion started by: Zaxon
2 Replies

4. Cybersecurity

annonymous surfing

hello everyone! i am interested in SurfSolo, from Encryption Software, Anonymous Web Surfing, Computer Firewall it is a like VPN but for personal use, has any of you tried it yet and if yes do you have any suggestions and opinions about it? thanks (0 Replies)
Discussion started by: sheherezad
0 Replies

5. Shell Programming and Scripting

lynx

lynx Hi there , how to use this command ?? is it t to download files with any type(.zip,.exe,.xxx) ?? and i want example thx ... (1 Reply)
Discussion started by: XPS
1 Replies

6. UNIX Desktop Questions & Answers

Lynx / Links

Is there a particular style that works better than the default for lynx / links / other text-browsers? Since my most commonly-used home machines have of RAM, I try to avoid XWindows / Netscape as much as possible. I have found, however, that the default isn't very easy to navigate in 24x80... (1 Reply)
Discussion started by: LivinFree
1 Replies

7. UNIX for Dummies Questions & Answers

Downloading with lynx

Hi there! I one saw a command that allowed to download a file using lynx from an HTTP server without opening lynx itself. Looked something like this: $ lynx -xyz http://localhost/foo.bar ~/foo.bar I looked into lynx manpages and help but didn't find anything. Thank you in advance (2 Replies)
Discussion started by: D-Lexy
2 Replies

8. Shell Programming and Scripting

Lynx via crontab

I've written a program using the bourne shell (I think) #!/bin/bash that goes through a database and for each line does lynx "http://www.example.com/test.cgi?var=variable" The whole point of this was to later move it into the crontab so that once a day it would run this program on a website. Now... (4 Replies)
Discussion started by: sstevens
4 Replies
Login or Register to Ask a Question