Adding/removing scripts to/from ubuntu startup


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. # Add
  2. update-rc.d script_name defaults
  3.  
  4. # Remove
  5. update-rc.d script_name remove
  6.  
  7. # Add with custom levels
  8. update-rc.d folding start 0123 stop 456

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.