On Thu, 2004-01-29 at 11:52, Eric Rose wrote: > When I attempt to edit the services running on my machine using the > command: > > #/usr/bin/redhat-config-services & > > Nothing happens > > (well I get a pid, and then a > [1]+ Done /usr/bin/redhat-config-services) > > Is there any way I can figure out what is killing my > redhat-config-services? Use "strace" on it. # strace /usr/bin/redhat-config-services This will show all the system calls that the executable makes, and may give you a hint about what is causing it to fail. For what it's worth, it "works fine for me" (tm). Cheers, Ben