Tagged Questions
0
votes
0answers
16 views
upstart-monitor with CLI option fails to start in Ubuntu Server 13.04
When I try starting upstart-monitor on Ubuntu Server 13.04. I get the following error:
Traceback (most recent call last):
File "/usr/bin/upstart-monitor", line 195, in <module>
class ...
1
vote
1answer
74 views
How to change hostname via kernel command line on ubuntu 12
I booted a guest vm on xen, and I want to assign guest-domU's hostname in config file.
like this
...
extra='ip=::::myguest-vm-hostname::dhcp'
...
It is a kernel command line to setting netboot ...
0
votes
1answer
33 views
Upstart event when network connectivity to a specific server is available?
Is there a way in upstart to code an event to start when network connectivity to a specific machine becomes available? Something based on a ping result would work in my case. The task being started ...
0
votes
1answer
53 views
Can't start Rails app with upstart [closed]
I can manually start my Rails app with rails server -e production, but if I try via upstart, my app doesn't run.
https://github.com/mcandre/doesrailswork/blob/master/upstart.conf
2
votes
2answers
444 views
Automatically mounting Truecrypt volumes at user login time
I need to mount a Truecrypt volume automatically at user login time. This volume is specific for each user.
I'm not sure how to proceed since I'm not extremely familiar with Linux and the various ...
2
votes
0answers
171 views
upstart node.js cant save files, wrong permissions?
I got my own linode server the other day and moved a small nodejs / express I was playing around with over from an aws linux. Everything works great, but if I launch the app with upstart it doesnt run ...
2
votes
1answer
370 views
How to depend on an upstart job from an init script on Ubuntu 12.04
I am using Ubuntu 12.04 LTS and this system uses primarily upstart jobs. Unfortunately my system also depends on a manually compiled dbmail server, which only has a init script, but no upstart script.
...
2
votes
2answers
141 views
Upstart script for Sphinx
I am trying to get Sphinx running with Upstart on Ubuntu, but the only script I've found isn't working and seems to be more complex than I require.
Could someone provide me with a basic Sphinx ...
1
vote
0answers
331 views
Wireless network interface ra0 does not start at boot
I recently installed USB Wireless Adapter based on Ralink RT5370 chip on my Ubuntu 10.04.
Manufacturer drivers are installed properly and now I have ra0 wireless interface configured in ...
3
votes
0answers
460 views
Starting Redmine at boot using upstart on Ubuntu
So after installing redmine from the repositories on Ubuntu 12.04, i've tried to create an upstart script (see below) so it would start up at boot time.
While
service redmine start
does start ...
0
votes
2answers
793 views
Writing simple upstart script
I'm trying to write a simple upstart script for my ubuntu server, which starts vnc4server. But it does not work.
Here's the script:
# vnc-server.conf
start on runlevel [2345]
stop on runlevel ...
3
votes
1answer
1k views
How to correctly shutdown ubuntu in single-user mode?
I have searched a lot,only to found that many people came across this problem.
By adding rw init=/bin/bash to the end of the vmlinuz line,I can enter the single-user mode of UBUNTU 10.04 LTS but,when ...
21
votes
6answers
48k views
How do you disable an upstart service in ubuntu 10.10?
In 10.10 upstart is being used instead of sysvinit.
It's possible to remove annoying upstart services which you do not want by removing the appropriate file in /etc/init/blah.conf
However, this ...
3
votes
3answers
2k views
Ubuntu, control the init startup
Ubuntu uses upstart instead of sysvinit. However there are still runlevels and the links in them.
I have installed tor and it has added itself to the startup of the OS. Now I want to remove it and ...
3
votes
1answer
4k views
How to make PostgreSQL start at boot time in Ubuntu?
Every time I boot my computer, I need to start Posgtres manually via
sudo /etc/init.d/postgresql-8.4 start
It was an easy task to make it start automatically with Init in place: just add a symlink ...
3
votes
1answer
836 views
Kill Infinite loop at Upstart's run level
One of my applications is at a infinite loop in the runlevel 1 by printing No protocol specified continuously after running startx -- :1.
The run level does not listen to my commands given at the run ...
0
votes
2answers
1k views
Linux: How to start Skype (or other program) only when I'm online?
I've added Skype to my "Startup applications" list, so that it starts automatically after I log in. (This is on Ubuntu 9.04 Jaunty, with the Gnome desktop)
However, I frequently use my laptop ...
50
votes
7answers
15k views
Running upstart jobs as unprivileged users
What's the canonical way to have an upstart job change its userid and run the script as an unprivileged user?
Obviously one can use su or sudo, but this seems hacky (and can generate needless log ...