Menu
Newbedev LogoNEWBEDEV Python Javascript Linux Cheat sheet
Newbedev LogoNEWBEDEV
  • Python 1
  • Javascript
  • Linux
  • Cheat sheet
  • Contact

service to start on boot doesn't work with update-rc.d command

For removing services you must use the -f parameter:

sudo update-rc.d -f <service> remove

For configuring startup on boot, try:

sudo update-rc.d <service> enable

See if the following symlink is created:

/etc/rc.2d/S20<service>

or something similar.

Tags:

Ubuntu

Startup

Upstart

Related

Does tail read the whole file? What is the most efficient way to move a large number of files that reside in a single directory? Draw On Screen Live mutt: save message to specific folder "grep: Unmatched [" error when using regex How to invoke a shell built-in explicitly? enable SMART for HP hard disk get age of given file Making ruby available to all users Hosts file: Is it incorrect to have the same IP address on multiple lines? How do I know if a serial port is actually transmitting data, without opening the device? How to tell Linux Kernel > 3.0 to completely ignore a failing disk?

Recent Posts

Pandas how to find column contains a certain value Recommended way to install multiple Python versions on Ubuntu 20.04 Build super fast web scraper with Python x100 than BeautifulSoup How to convert a SQL query result to a Pandas DataFrame in Python How to write a Pandas DataFrame to a .csv file in Python
© 2021 newbedevPrivacy Policy