I installed RedHat8 onto my server, and everything works, but I have NO CLUE where anything I installed is located, or how to run them. I need to get VNC (http://www.realvnc.com) working, and I installed it, but I dunno how to run it.
Plzzzz help
Linux Newbie PLZ HELP
- HongKongPolice
- Senior Member
- Posts: 2147
- Joined: Thu Jul 08, 1999 12:00 am
- Location: I...... AM.......... CANADIAN!!!!!!!!!!!!!!!!!!!
Linux Newbie PLZ HELP
Abit KR7A-Raid
Palomino 1.4Ghz @ 1.57Ghz @ default voltage /w DTek Spir@l block 512MB Crucial DDR @ 300Mhz CAS222 ATi OEM Radeon8500 @ 295/275 vmem=3.5v, would of gotten GF3 if they had better filters..... 3Com 905 TX SoundBlaster Live OEM 120gig Western Digital Special Edition (8MB Cache) 20gig Fujitsu 5400rpm (gonna get another WD1200JB for Raid0 soon) LiteOn 24x burner Enermax 350watt PSU (voltage modded) Dell P1110 21" Sony FD Trinitron tube @ 1792x1344 85Hz
Palomino 1.4Ghz @ 1.57Ghz @ default voltage /w DTek Spir@l block 512MB Crucial DDR @ 300Mhz CAS222 ATi OEM Radeon8500 @ 295/275 vmem=3.5v, would of gotten GF3 if they had better filters..... 3Com 905 TX SoundBlaster Live OEM 120gig Western Digital Special Edition (8MB Cache) 20gig Fujitsu 5400rpm (gonna get another WD1200JB for Raid0 soon) LiteOn 24x burner Enermax 350watt PSU (voltage modded) Dell P1110 21" Sony FD Trinitron tube @ 1792x1344 85Hz
- Stef
- Advanced Member
- Posts: 712
- Joined: Sun Apr 16, 2000 12:00 am
- Location: Edmonton, Alberta, Canada
man -k string
Or, you could just read the docs from the site:
http://www.realvnc.com/gettingstarted.html

Stef
Or, you could just read the docs from the site:
http://www.realvnc.com/gettingstarted.html
Stef
- HongKongPolice
- Senior Member
- Posts: 2147
- Joined: Thu Jul 08, 1999 12:00 am
- Location: I...... AM.......... CANADIAN!!!!!!!!!!!!!!!!!!!
But those are for unix?
whatz a -k string? lol
whatz a -k string? lol
Abit KR7A-Raid
Palomino 1.4Ghz @ 1.57Ghz @ default voltage /w DTek Spir@l block 512MB Crucial DDR @ 300Mhz CAS222 ATi OEM Radeon8500 @ 295/275 vmem=3.5v, would of gotten GF3 if they had better filters..... 3Com 905 TX SoundBlaster Live OEM 120gig Western Digital Special Edition (8MB Cache) 20gig Fujitsu 5400rpm (gonna get another WD1200JB for Raid0 soon) LiteOn 24x burner Enermax 350watt PSU (voltage modded) Dell P1110 21" Sony FD Trinitron tube @ 1792x1344 85Hz
Palomino 1.4Ghz @ 1.57Ghz @ default voltage /w DTek Spir@l block 512MB Crucial DDR @ 300Mhz CAS222 ATi OEM Radeon8500 @ 295/275 vmem=3.5v, would of gotten GF3 if they had better filters..... 3Com 905 TX SoundBlaster Live OEM 120gig Western Digital Special Edition (8MB Cache) 20gig Fujitsu 5400rpm (gonna get another WD1200JB for Raid0 soon) LiteOn 24x burner Enermax 350watt PSU (voltage modded) Dell P1110 21" Sony FD Trinitron tube @ 1792x1344 85Hz
Yes, and it applies to Linux as well.But those are for unix?
whatz a -k string?
'man -k <string>' is the same as 'apropos <string>', which searches for the <string> in the whatis database. The whatis database stores a short description for each command/function that has a manpage. To see what I mean, try 'whatis cp'. Of course, there can be more than one command/function for a <string>, for example doing a 'whatis printf' should yield at least two entries--one for the built-in shell utility and one for the function in the C stdio.h library. The output should look something like this:
Code: Select all
[stu@stargate stu]$ whatis printf
printf (1) - format and print data
printf (3) - formatted output conversion
Linux is based on Minnix a versoin of Unix.
For a server I would Debian as Stef says or Free BSD. If you are new to *nix you need to do some reading to learn what it's all about and how to use it. I just started not too long ago and it is not M$ windows by far. As for Redhat distros I prefer Mandrake myself over RH. The learning curve is steeper but it is well worth it in the end.
From what I 've been learning Deb is harder to install but easier to maintain.
For a server I would Debian as Stef says or Free BSD. If you are new to *nix you need to do some reading to learn what it's all about and how to use it. I just started not too long ago and it is not M$ windows by far. As for Redhat distros I prefer Mandrake myself over RH. The learning curve is steeper but it is well worth it in the end.
From what I 've been learning Deb is harder to install but easier to maintain.
The instructions should be in the INSTALL or README file in the directory where you exploded the tarball or the installation directory.
If you installed as a package with anaconda, or rpm after the fact, you could use the services gui (I believe vnc is run thru xinetd?).
CLI, you could edit xinetd.conf and make sure you have an entry for vnc. Restart xinetd (kill xinetd's PID -HUP) and you should be happy --- xinetd doesn't require a reboot to re-read it's config. If it doesn't use xinetd, it should
Either way, locate the directory where it was installed and make sure you don't have a config file to play with.
Do you prefer VNC to ssh/scp/sftp?
Skye
EDIT - another useful tool for RH is locate. Run updatedb as root at the prompt (this builds the dabase). Then locate filename it's pretty smooth - searches the whole fs. VNC is probably in /usr/local, but in RH8 install, a lot of config files are in /etc, so make sure you find the REAADME or INSTALL files.
If you installed as a package with anaconda, or rpm after the fact, you could use the services gui (I believe vnc is run thru xinetd?).
CLI, you could edit xinetd.conf and make sure you have an entry for vnc. Restart xinetd (kill xinetd's PID -HUP) and you should be happy --- xinetd doesn't require a reboot to re-read it's config. If it doesn't use xinetd, it should
Either way, locate the directory where it was installed and make sure you don't have a config file to play with.
Do you prefer VNC to ssh/scp/sftp?
Skye
EDIT - another useful tool for RH is locate. Run updatedb as root at the prompt (this builds the dabase). Then locate filename it's pretty smooth - searches the whole fs. VNC is probably in /usr/local, but in RH8 install, a lot of config files are in /etc, so make sure you find the REAADME or INSTALL files.
anything is possible - nothing is free

Blisster wrote:It *would* be brokeback bay if I in fact went and hung out with Skye and co (did I mention he is teh hotness?)