how to connect internet in text mode of Linux

Top Page
Attachments:
Message as email
+ (text/plain)
Delete this message
Reply to this message
Author: Craig White
Date:  
Subject: how to connect internet in text mode of Linux
On Wed, 2003-09-17 at 18:03, Mike Starke wrote:
> On Wed, Sep 17, 2003 at 08:49:58PM -0400, M Rafiq wrote:
> /_This file is not in /usr/bin or any other place as I checked with find....
> /_This is Redhat 7.2 Linux....
> /_
> If you searched for it, and could not find, perhaps it is not installed?
> I'm a Debian guy, sounds like a Redhat guy needs to step in here.
>

----
lynx might not be installed...

assuming you are root...

which lynx
is going to turn up nothing so either you didn't log in as root (or
didn't 'su -' to root) or it ain't there.

if
rpm -qa|grep lynx
returns nothing but the next prompt, it ain't installed. You will need
to install it from one of the CD's ...

start with binary disc 3
mount /mnt/cdrom
ls -l /mnt/cdrom/RedHat/RPMS/lynx*

if it's there...
rpm -ivh /mnt/cdrom/RedHat/RPMS/lynx*
or
rpm -ivh /mnt/cdrom/RedHat/RPMS/lynx-2.8.4-18.i386.rpm (or whatever
version is on the cd)

if not...
umount /mnt/cdrom
insert binary disc 2
start with the mount command again...

On RH 7.3 lynx-2.8.4-18.i386.rpm is on binary (Installation) disc 3

but first...do you have an internet connection established? Lynx is a
text based web browser but if you ain't connected to the internet or a
LAN based web server that you want to connect to...lynx ain't gonna
help.

Craig