How do i disable kudzu without using chkconfig


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers How do i disable kudzu without using chkconfig
# 1  
Old 02-21-2011
How do i disable kudzu without using chkconfig

How do i disable kudzu without using chkconfig?

Code:
/sbin/chkconfig --level 3 kudzu off

Is there any other way of doing it .
for example by modifying parameter of any file.

Basically i want kudzu to be disabled during the first run of the machine after installation.
I have full access to the filesystem without starting the machine(its a virtual machine).
# 2  
Old 02-21-2011
Since you want this automated I assume that you're doing multiple installs. And chkconfig is used mostly by RPM based distributions, most of which use Anaconda. So why not write an autoinstall script and put the command in the post install section?
# 3  
Old 02-21-2011
Pludi
I modified /etc/rc.sysinit file and added following line at the end of rc.sysinit

Code:
mv /etc/init.d/kudzu /tmp/

I have got the desire effect but not sure if its a best way to do it.
all i need is to move kudzu file back to init.d directory on OS startup.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Will Chkconfig works for normal user apart from root user

Hi, I am trying to schedule a script that starts on reboot.I came across chkconfig utility to schedule scripts on reboot. Problem here is can i how to use this chkconfig to schedule a script that runs a s normal user. Or if there is any other function to schedule on reboot as normal user... (4 Replies)
Discussion started by: praveena kotapa
4 Replies

2. UNIX for Dummies Questions & Answers

Any equalant command for KUDZU in RHEL6

in RHEL5 we use KUDZU to detect the device drivers, is their any eualant command in RHEL6? (3 Replies)
Discussion started by: Sashi Kanth A
3 Replies

3. Red Hat

SSL/TLS renegotiation DoS -how to disable? Is it advisable to disable?

Hi all Expertise, I have following issue to solve, SSL / TLS Renegotiation DoS (low) 222.225.12.13 Ease of Exploitation Moderate Port 443/tcp Family Miscellaneous Following is the problem description:------------------ Description The remote service encrypts traffic using TLS / SSL and... (2 Replies)
Discussion started by: manalisharmabe
2 Replies

4. Shell Programming and Scripting

Perl script with "chkconfig --list" cmd

Hi everybody; I try to code a script perl to list all services that are active "ON" with a chkconfig -- list the problem is that code list all services which are active or not. #!/usr/bin/perl use strict; use warnings; open(FILE,"-|") || exec "chkconfig --list |grep ON";... (2 Replies)
Discussion started by: bassma
2 Replies

5. Solaris

Chkconfig & SMF

Hi I have been told to migrate linux init scripts to solaris 10. i am reading about the chkconfig & SMF ( I came to know that SMF is used in Sol 10 for service management ). The only thing i could not find out ( Because i dont have root access ) is how the links are created in rcX.d directory? ... (6 Replies)
Discussion started by: zedex
6 Replies

6. Shell Programming and Scripting

How to disable Enable/Disable Tab Key

Hi All, I have bash script, so what is sintax script in bash for Enable and Disable Tab Key. Thanks for your help.:( Thanks, Rico (1 Reply)
Discussion started by: carnegiex
1 Replies

7. Red Hat

chkconfig error

I'm just trying to disable some of un used services. when i try that I'm getting following error. This is just for one "gpm" service failed to make symlink /etc/rc3.d/K15gpm: Read-only file system failed to make symlink /etc/rc4.d/K15gpm: Read-only file system failed to make symlink... (1 Reply)
Discussion started by: s_linux
1 Replies

8. Solaris

Solaris 8 how do I enable and disable services? (equivalent of chkconfig on Linux)

I've successfully installed syslog-ng and chkconfig using the packages from the OpenCSW project, these packages install under /opt/csw. I now need to disable the default syslog daemon and enable the new service created by the OpenCSW package (/etc/init.d/cswsyslog_ng). Is there any good way to... (3 Replies)
Discussion started by: aussieos
3 Replies

9. UNIX for Advanced & Expert Users

chkconfig utility in solaris 10

I want to use chkconfig utility to simplify service management on Solaris 10. However, I couldn't find this utility. I tried " man chkconfig", the system return as " No manual entry for chkconfig". So what does this mean and how to find this utility on solaris 10? Thanks for your help. Happy New... (8 Replies)
Discussion started by: duke0001
8 Replies

10. Red Hat

attempting to install chkconfig 1.3.5

Hi there everyone, I'm using redhat 7.3 at the moment and am currently trying to install chkconfig-1.3.5-3.i386.rpm , but when I type this command: rpm -Uvh chkconfig-1.3.5-3.i386.rpm I get the following error: error: failed dependencies: chkconfig = 1.2.24 is needed by... (3 Replies)
Discussion started by: redhat_newb101
3 Replies
Login or Register to Ask a Question