Ok... i'm lost
- Nerdz
- The Architect
- Posts: 1127
- Joined: 15 Jun 2005, 16:00
- 19
- Location: #db_error in: select usr.location from sucko_member where usr.id=63;
- Contact:
Ok... i'm lost
I've just installed Linux red hat 9. Where is everything? I tought i had install a bunch of network stuff like audit etc... Where is it!? I saw there was suppose to be like ethereal but i can't find a folder where the network stuff are...
Give a man a fish, you feed him for one day.
Learn a man to fish, you feed him for life.
Learn a man to fish, you feed him for life.
- bad_brain
- Site Owner
- Posts: 11638
- Joined: 06 Apr 2005, 16:00
- 19
- Location: In your eye floaters.
- Contact:
don´t panic...
it makes no sense searching the folders, working in a shell is much better.
so first update the database, so you´re able to search for files, just type
you should do this regularly to keep the database up to date.
now lets say you´re looking for ethereal, you can search the database with
whereis will show you the binaries, locate show all files which include the name ethereal, I use locate. you can also use wildcards if you´re not really sure about the name:
normally you can start an application in a shell simply by typing the name. but in RedHat it´s not ethereal, it´s named tethereal. nmap should be installed too, simply type nmap to start it.
well, if you have problems to handle an application simply view the manual by using the man command, for example
another really useful application is up2date which enables you to download and install the newest RPM versions.
it makes no sense searching the folders, working in a shell is much better.
so first update the database, so you´re able to search for files, just type
Code: Select all
updatedb
now lets say you´re looking for ethereal, you can search the database with
Code: Select all
whereis ethereal
or
locate ethereal
Code: Select all
locate eth*
or
locate e??ereal
well, if you have problems to handle an application simply view the manual by using the man command, for example
Code: Select all
man tethereal