Click to See Complete Forum and Search --> : where are redhat 7's config files?


mandreko
03-03-2001, 10:57 PM
you know things like the inetd.conf file, and such? i'm trying to configure my machine, and secure it. I just got wolverine (pretty cool) but i can't find where the config files are... did they use a new format or somethin?

flintstone
03-03-2001, 11:40 PM
RedHat does not use inetd.rc at all. You have three ways (that I know of) to configure your services for each runlevel.

1. (chkconfig --level <runlevel><servicename><on/off> to remove a service for that session.
To remove it permanently, use
chkconfig --del <servicename>

2. Use ncurses based
ntsysv --level<runlevel> to configure services.

3. Use tksysv if you are running a X session.

dante_d
03-04-2001, 11:03 AM
inetd.conf is in /etc
in RH7

If you have locate or slocate installed, issue the command updatedb. It takes a minute or two, but then you can find files quickly from anywhere in your filesystem using

locate [filename]

[ 04 March 2001: Message edited by: dante_d ]

flintstone
03-04-2001, 02:30 PM
Thanks for the tip :D
now maybe I can start figuring out more..

Charles-K
03-04-2001, 02:34 PM
Yes... thanks for the updatedb command... I learn something new everytime I come here.
:)

musthavemuzk
03-04-2001, 03:07 PM
do you have to be root to use the updatedb command?

dante_d
03-04-2001, 04:54 PM
do you have to be root to use the updatedb command?

Yes. At least on my system I do.