Tagged Questions
3
votes
1answer
77 views
.override file isn't working
I have a file /etc/init/boinc-client.override with the single line manual that I use to prevent the BOINC client from starting up. (I don't want it hogging CPU time away from Folding@Home, for now ...
1
vote
1answer
1k views
How do I get Upstart to start my Mediatomb service?
I've been struggling, trying to get my Mediatomb server to start automatically on Upstart run level 2. I can't figure it out. I guess Upstart is still new to me and I don't understand it. I even ...
4
votes
2answers
6k views
How to start jenkins?
I installed jenkins via sudo apt-get install jenkins. However, it doesn't start up. Tried to start it manually using sudo /etc/init.d/jenkins start. But it says this message when I try to start it ...
2
votes
4answers
2k views
Upstart script for a transmission-daemon executed as a normal user
I have done a script to start transmission-daemon as a normal user:
start on filesystem
stop on runlevel [!2345]
respawn
respawn limit 10 5
pre-start script
test -x /usr/bin/transmission-daemon ...
130
votes
6answers
116k views
What's the recommended way to enable / disable services?
I read about how to enable and disable services in Ubuntu and it seems that there are different possibilities to manage them.
The first method I found is update-rc.d to add new services to startup, ...
1
vote
1answer
367 views
Translating inittab line to Ubuntu 9.04 jaunty system equivalent
I'm trying to use runit on my SheevaPlug running Ubuntu 9.04 Jaunty. There is a helpful tutorial at TechRepublic (Use runit to supervise Linux services) that walks through the process of setting it ...