up vote 5 down vote favorite
3
share [g+] share [fb]

Im using Fedora 10 with Synergy from Windows 7

When ever i use my keyboard through synergy and type @ i get the Omega Sign

Any ideas, or someone had similar problems?

link|improve this question
feedback

5 Answers

up vote 5 down vote accepted

I had problems with @, <, and >, so I did the following:

Code:

xmodmap -e "keycode 53 = x X greater greater greater greater"
xmodmap -e "keycode 52 = z Z less less less less"
xmodmap -e "keycode 24 = q Q at at at at"

Which solved those three... though I have no idea why the problem occurs in the first place.

link|improve this answer
My keyboard on the linux machine works fine, Its on Synergy that it fails. – whoami Dec 2 '09 at 12:00
@Systech +1 Nice work around! – nbolton Jan 12 '10 at 5:48
@Systech I just added your work around to our bug tracker. – nbolton Jan 13 '10 at 17:38
@nbolton Thanks dude – admintech Sep 24 '10 at 9:57
feedback

This is a known issue, and we're working on it right now. There are several work arounds however, so if you take a peek at that issue, you may find something. If you have a Google account, you can star the issue to get a notification when it's fixed.

link|improve this answer
feedback

pobably a keycode translation problem. Have a look at the synergy configuration. You should use the same language settings as locally

link|improve this answer
i cant find the synergy config on fedora any ideas? – whoami Dec 2 '09 at 12:01
There are two possible locations for the synergy server config file, either ~/.synergy.conf or /etc/synergy.conf - however, this will not help fix the issue, since it's a software bug and not a config problem. – nbolton Jan 12 '10 at 5:47
feedback

locate synergy.conf, its probably in /etc

link|improve this answer
The synergy server config is also located at ~/.synergy.conf (but modifying the config is unlikely fix the problem). – nbolton Jan 12 '10 at 5:49
feedback

Create a file ~/.Xmodmap and add the following to it:

keycode 53 = x X greater greater greater greater
keycode 52 = z Z less less less less
keycode 24 = q Q at at at at

You can activate it straight away with:

xmodmap ~/.Xmodmap

I believe this will activate automatically when you reboot - but I hardly ever reboot, so haven't tested this.

Thanks (and +1) to Systech's answer for the contents of the file, and thanks to this page for instructions on how to make it persist across reboots.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.