Created
October 20, 2015 19:09
-
-
Save zushane/92ad5c2d070c0dc4caab to your computer and use it in GitHub Desktop.
systemd Xvfb startup configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copy this file to /etc/systemd/system/xvfb.service | |
# Then execute: | |
# systemctl enable /etc/systemd/system/xvfb.service | |
# systemctl start xvfb.service | |
[Unit] | |
Description=X Virtual Frame Buffer Service | |
After=network.target | |
[Service] | |
ExecStart=/usr/bin/Xvfb :99 -screen 0 1024x768x24 | |
[Install] | |
WantedBy=multi-user.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment