After I got my desktop up and running full time, I decided that I wanted to use it as my Synergy server instead of as a Synergy client (see here for how to setup as a client). If you would like to learn more about what Synergy is then you can visit my previous post here or you can visit the Synergy website.
TABLE OF CONTENTS:
DIRECTIONS
The following directions were verified to work on my Fedora 20 64-bit system. Hopefully your experience will be the same, though your mileage may vary. I cannot guarantee exactly what will happen with your system, and I take no responsibility for any issues this causes. Follow these at your own risk.
If you do not understand what a certain command or component might be doing, then I suggest you research it to fully understand what changes you are making to your system.
Install and Configure Synergy Server
If you don’t have it already, you’re going to need to download and install Synergy.
- Download — Go to http://synergy-project.org/download/?list and grab the appropriate file for your version of Linux. In my case with Fedora 20 64-bit, http://synergy-project.org/download/?file=synergy-1.5.0-r2278-Linux-x86_64.rpm. Or via command line:
$ wget http://synergy-project.org/download/?file=synergy-1.5.0-r2278-Linux-x86_64.rpm
- Install — Go to where you downloaded the file, and install it.
$ cd ~/Downloads/ $ sudo yum -y localinstall synergy-1.5.0-r2278-Linux-x86_64.rpm
- Get a working configuration — Open the Synergy GUI (in command line type: synergy) and edit your settings so Synergy clients can successfully connect to this system (your Synergy server). Verify you can swipe your mouse over to one of the clients and use the mouse and keyboard on that system correctly.
- Copy the command used by synergys to run your server — Run the following command and look for the line that starts with /usr/bin/synergys:
$ ps -eo command | grep -v grep | grep synergys
Note: The line should look something like
/usr/bin/synergys -f –no-tray –debug INFO –name YourHostName -c /tmp/<tmpFileName> –address :24800
Note: If you use synergy’s built-in encryption then the option –crypto-pass <yourPasswordHash> will also be present. Example:
/usr/bin/synergys -f –no-tray –debug INFO –name YourHostName –crypto-pass <passHashHere> -c /tmp/<tmpFileName> –address :24800 - Click ‘File’, then click ‘Save configuration as…’ and choose a location and name to save your file (ex: /home/yourUser/.synergy.conf)
- Now stop synergy and close it.
Verify systemd User Instance is Running
We just need to check that your systemd user instance is starting on boot. This should be the default action of your system.
- Find your userid — At the command line type the following command, and look for “uid=####(username)”, where #### is any number, most likely 1000 (doesn’t have to be 1000, whatever is there is your userid).
$ id
- Make sure a sytemd user instance has been created for your user
$ sudo systemctl status user@####.service
Create systemd user service for synergys
Now we need to create the synergys.service file to use for our systemd user instance. Creating this service will cause the synergys service to start once you log in to your system.
- Create appropriate directory
$ mkdir -p ~/.config/systemd/user
- Using your favorite text editor, create the file ~/.config/systemd/user/synergys.serviceTo understand what any of the switches in the synergys commmand do, run ‘synergys –help’ from a command line.Copy and paste the following config into the file. In the ExecStart= line, put the entire command you found above. If you would like to have synergys log to a specific file (instead of logging to the default journald log), add the -l option after the -d option (ex: -l /path/to/log-file/writeable/by/your/user). Also make sure to specify the Synergy configuration file you saved earlier with the -c option (place it after the –crypto-pass option).Note: In the config below I replaced the long options with their respective short options. For example, I replaced –name with -n.
[Unit] Description=Synergy server service After=display-manager.service [Service] ExecStart=/usr/bin/synergys -f -d INFO -n pcName --crypto-pass passwordHashHere -c /home/yourUser/.synergy.conf -a :24800 Restart=on-failure [Install] WantedBy=graphical.target
- Save your file.
- Make your user instance aware of the service, and verify you can start, restart, and stop it:
$ systemctl --user daemon-reload $ systemctl --user start synergys.service $ systemctl --user restart synergys.service $ systemctl --user stop synergys.service
Create synergys.desktop Autostart File
Now we need to create our synergys.desktop file, which will run once we log in to our system.
- Create the file ~/.config/autostart/synergys.desktop
- Copy and paste the config below into the file, then save your file.
[Desktop Entry] Name=Synergys GenericName=Software KVM Comment=Share your keyboard and mouse over a network Exec=systemctl --user start synergys.service Terminal=false Type=Application Icon=/usr/share/icons/synergy.ico Categories=Utility StartupNotify=true X-GNOME-Autostart-enabled=true
Wrapping Up
You should now be able to reboot your system, log in, and then use your mouse and keyboard to control your Synergy clients. Please see the references below which helped me to create this guide. If you have any questions or comments, leave them below!
References
- http://kezhong.wordpress.com/2011/11/19/creating-my-own-systemd-service-files-on-fedora-16x86_64/
- http://fedoraproject.org/wiki/Systemd#How_do_I_customize_a_unit_file.2F_add_a_custom_unit_file.3F
- http://0pointer.de/public/systemd-man/systemd.service.html
- http://0pointer.de/public/systemd-man/systemd.exec.html
- http://0pointer.de/public/systemd-man/systemd.unit.html
Thanks for this excellent guide. I configured synergys on Fedora 22, but it kept crashing, while if I was running it from a terminal it worked just fine. I figured out that the DISPLAY environment variable was set to 0.0 in case I used systemd while in the terminal this variable was set to .1 .
So the solution was to add an extra line to the [Service] section of the synergys.service file that told systemd what display setting to use:
[Service]
Environment=DISPLAY=:1
ExecStart=/usr/bin/synergys -f
Restart=on-failure
After this modification everything worked as expected.
Glad you found it useful, and thank you for the information to get it working in Fedora 22!