The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
15 views

Booting the Kernel Devkit8000

Hello everyone, I was wondering... What is the system / program booting the kernel when it conveys responsibility to user space on DevKit8000 system? 1. Systemd 2. upstart 3. sysinit
-2
votes
0answers
14 views

systemd sshd sshkey fail while manualy sshd works [closed]

I have a weird issue with my sshd on my Fedora 17. First, sshd works fine with sshkey auth with my main user "bob" on my server. I created a new user "git" but I failed to ssh on it. So a largely ...
1
vote
1answer
165 views

I have a SysV init script on Fedora 18. How can I make it start after the network is ready?

I have a SysV init script on Fedora 18. Fedora 18 uses systemd (and apparently, there is no way to switch back to SysV). My script requires the network to be ready. Currently, at the time the script ...
0
votes
3answers
101 views

Start ruby rake task on server boot

I am have a couple of rails rake tasks that I need them to start on server bootup. I have been looking to make them run as traditional services using systemd. The service file is created under ...
1
vote
1answer
102 views

Plone and systemctl

I tried to integrate Plone with a systemctl based startup (on openSUSE 12.3) As a first attempt I have a very simple plone.service file [Unit] Description=Plone content management system ...
0
votes
1answer
589 views

linux start up script in systemd

Can I do This start up service below, there are no errors showing once run, but the server script below does not run! ln /lib/systemd/aquarium.service aquarium.service systemctl daemon-reload ...
0
votes
2answers
396 views

Virtualbox Headless: not starting via systemd

Already tried this Topic but doesn't solved it I have placed a file called vbox.service under /lib/systemd/system/vbox.service with the following content: [Unit] Description=Virtualbox Headless VM ...
2
votes
0answers
52 views

Restricting D-Bus access to the logged-in user via ConsoleKit or systemd [closed]

I need to restrict the client of a D-Bus service to only the user logged into the system locally, via ConsoleKit or systemd. How must I configure or write the D-Bus service to do so?
2
votes
1answer
96 views

Start systemd service from C/C++ application or call a D-Bus service

I have a .service for a process that i don't want to start at boot-time, but to call it somehow from another already running application, at a given time. The other option would be to put a D-Bus ...
2
votes
1answer
228 views

Qt GUI instance autostarted with systemd does not respond to input

I have an embedded Linux board that uses systemd for startup processes. I also have a GUI written in Qt that I can launch just fine from the command line and interact with using the board's ...
6
votes
1answer
892 views

Python daemon and systemd service

I have simple Python script with work as a daemon. I am trying to create systemd script to be able to start this script during startup. Current systemd script [Unit] Description=Text ...
8
votes
2answers
352 views

How can I turn either a Unix POSIX file descriptor or standard input Handle into a Socket?

In inetd and systemd type systems, it is possible for the system to bind a socket and launch the application with the socket already existing, for example to provide socket based service starting. I ...
2
votes
2answers
272 views

How to reload the mojolicious built-in webserver daemon?

I copied this systemd service file from the lighttpd-package and adapted it to make systemd start the mojolicious built-in server daemon. Can I keep the ExecReload and the KillSignal setting for the ...
2
votes
1answer
498 views

Units from non root user (for commands start/stop/enable/disable)

I want to execute my scripts at boot time through systemd (OS is Fedora Core 16) from some non-root user (e.g. michael). I don't need root privileges - I only want to run at boot time and at shutdown ...