top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How we can enable or disable startup service in Windows and Linux?

+1 vote
269 views
How we can enable or disable startup service in Windows and Linux?
posted Jul 20, 2015 by Amit Kumar Pandey

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
 
Best answer

Windows
There is a tool installed with Windows, called MSConfig, that allows you to quickly and easily see what's running at startup and disable the programs you prefer to run on our own after startup as needed.

Linux
On a redhat style system:

sudo chkconfig mysqld off 

On Debian:

sudo update-rc.d -f mysqld remove
answer Jul 20, 2015 by Salil Agrawal
Similar Questions
+1 vote

i have compiled a code in Linux (gcc compiler).. is it possible to run that binary on windows machine?

+3 votes
  • I have installed on windows v.3.6 I want to migrate it to linux with the latest version, what do you recommend my installation process should including to keep the db.
  • Another option is to keep Bugzilla on windows and to upgrade the version ? what do you recommend my installation process should including to keep the db. Is there an simple installer.
+2 votes

I recently installed Opennssh-server & mysql-server on my computer for development, but I require these services few time, I know I can start these service by using

sudo service start/stop/restart.

But how to disable them from starting on startup, becoz these tools made my computer bootup very slow.

...