Xvfb and systemd

Issues related to applications and software problems
Post Reply
WEP11
Posts: 3
Joined: 2014/07/23 18:43:13

Xvfb and systemd

Post by WEP11 » 2014/10/18 17:39:36

I have created a new Xvfb service that works for a while, but shuts down the display after a while. The service is enabled.
I used this to help me make the service: https://wiki.archlinux.org/index.php/Systemd/Services

Here is my service (/etc/systemd/system/Xvfb.service):

Code: Select all

[Unit]
Description=Xvfb headless plotting
After=network.target
[Service]
User=ldm
SyslogIdentifier=%p
ExecStart=/usr/bin/Xvfb :1 -screen 0 1280x1024x24

[Install]
WantedBy=multi-user.target
Any ideas?

Post Reply