Skip to content
Snippets Groups Projects
Commit 8ad8d123 authored by TheTechromancer's avatar TheTechromancer
Browse files

clarified installation process

parent d3213e54
No related branches found
No related tags found
No related merge requests found
# systemd .service files
In Linux, these example systemd services will automatically start the Fadecandy server and one of the Python example scripts on boot.
### Installation Procedure
1. Ensure that the __fcserver__ executable resides in the directory specified in the .service file (/opt/fadecandy/server/ in this example)
2. Copy the .service files into the /etc/systemd/system/ directory
~~~
$ cp fadecandy.service example-leds.service /etc/systemd/system/
~~~
3. Enable the services
~~~
$ systemctl enable fadecandy.service
$ systemctl enable example-leds.service
~~~
4. Start the services
~~~
$ systemctl start fadecandy.service
$ systemctl start example-leds.service
~~~
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment