VMware on ubuntu: remove from init.d

Step-by-Step descriptions of how to do things.
Post Reply
User avatar
^rooker
Site Admin
Posts: 1481
Joined: Fri Aug 29, 2003 8:39 pm

VMware on ubuntu: remove from init.d

Post by ^rooker »

I wanted to have vmware installed on my computer, but didn't want the virtual machines to be running EVERY time my system boots up, but vmware installs itself so that it links start/stop scripts here:
/etc/rc0.d/K08vmware
/etc/rc2.d/S90vmware
/etc/rc2.d/K08vmware
/etc/rc3.d/S90vmware
/etc/rc3.d/K08vmware
/etc/rc5.d/S90vmware
/etc/rc5.d/K08vmware
/etc/rc6.d/K08vmware
Use "update-rc.d" for removing the links to the "/etc/init.d/vmware" startup script, by executing:

Code: Select all

update-rc.d -f vmware remove
Without the "-f" option, update-rc.d will complain that /etc/init.d/vmware still exists. Since I wanted to keep the startup script for manual startup, I used this "force" option.

The output will look like this:
Removing any system startup links for /etc/init.d/vmware ...
/etc/rc0.d/K08vmware
/etc/rc2.d/S90vmware
/etc/rc2.d/K08vmware
/etc/rc3.d/S90vmware
/etc/rc3.d/K08vmware
/etc/rc5.d/S90vmware
/etc/rc5.d/K08vmware
/etc/rc6.d/K08vmware
Note: For some strange reason, the vmware startup script does not show up when using "bum" (boot up manager) - will check that...
Jumping out of an airplane is not a basic instinct. Neither is breathing underwater. But put the two together and you're traveling through space!
Post Reply