- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: How to stop a driver process
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2007 09:10 PM
01-11-2007 09:10 PM
How to stop a driver process
There is a driver process for a special modem in server. The driver process start up when system boot.
The customer don't want the process starting at boot.
How disable it?
I don't know whether the process has a script in RC*.d. If there is no the script, how to disable it?
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2007 09:20 PM
01-11-2007 09:20 PM
Re: How to stop a driver process
please check/ grep in /sbin/init.d directory for the startup file. If there is one find the link in /sbin/rc?.d and remove it.
You can also check /etc/rc.log.
If there is not entry, check /etc/inetd.conf file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2007 09:41 PM
01-11-2007 09:41 PM
Re: How to stop a driver process
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2007 10:14 PM
01-11-2007 10:14 PM
Re: How to stop a driver process
How would you disable a process (apart from the
crude method of running a cron job that checks
for the process and kills it periodically) unless you
know how it is created ? Most of the processes
that are created by RC script could be disabled by
setting some parameter in some configuration file
IF the driver provides that option. If the driver
can't operate properly without the process,
obviously it will not provide the option to disable
it. Also, why the customer does not want the
process (i.e does it take too much of time/space) ?
What's the driver and the process name and what
does the process do ? Unless you understand
these, killing the process might create some bigger
problem for your customer than solve any.
If accessing the customer machine is a problem,
can you install the driver on your local system
and figure out how the process is created ?
- Biswajit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2007 12:29 AM
01-12-2007 12:29 AM
Re: How to stop a driver process
The place where de config file might be:
/etc/rc.config.d
Other solutions could be:
find / -name *process_name*
Maybe than offers you any clue where the process is being started from
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2007 04:19 AM
01-12-2007 04:19 AM
Re: How to stop a driver process
For HP-UX, the script is in /sbin/init.d directory. There are 2 links to this script. ll /sbin/rc*/|grep process_name to find the links and remove these to links; or you may want to set it not to auto start by going /etc/rc.config.d, look for the process_name file and update the file to not start at each boot if there is a control file for that process.
Good luck.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2007 10:09 AM
01-12-2007 10:09 AM
Re: How to stop a driver process
Bill Hassell, sysadmin