Sample configuration file
youngseok7_lee:
magpie-desktop:
super = meta
end
section: links
youngseok7_lee:
left = magpie-desktop
magpie-desktop:
right = youngseok7_lee
end
section: options
switchDelay = 0
end
Make a directory in /etc to store the configuration:
sudo mkdir /etc/synergy
sudo gedit /etc/synergy/synergy.conf
edit /etc/gdm/Init/Default:
sudo gedit /etc/gdm/Init/Default
SYNERGYS=`gdmwhich synergys`
if [ x$SYNERGYS != x ] ; then
$SYNERGYS --config /etc/synergy/synergy.conf
fi
edited /etc/gdm/Init/Default:
sudo gedit /etc/gdm/PreSession/Default
SYNERGYS=`gdmwhich synergys`
if [ x$SYNERGYS != x ] ; then
$SYNERGYS --config /etc/synergy/synergy.conf
fi
The synergy server should now startup and run whenever your gdm session does.
Starting the Synergy CLIENT on boot up.
Let us know how you get on.
NOTE:
The <address of server machine> will probably be an ip address that looks something like 192.168.0.1 (DON'T put in the exact string <address of server machine>)
To make the client run when gdm runs, but before anyone has logged in:
edit /etc/gdm/Init/Default:
sudo gedit /etc/gdm/Init/Default
SYNERGYC=`gdmwhich synergyc`
if [ x$SYNERGYC != x ] ; then
$SYNERGYC <address of server machine>
fi
edited /etc/gdm/Init/Default:
sudo gedit /etc/gdm/PreSession/Default
SYNERGYC=`gdmwhich synergyc`
if [ x$SYNERGYC != x ] ; then
$SYNERGYC <address of server machine>
fi
The synergy client should now startup and run whenever your gdm session does.
NOTE:
The <address of server machine> will probably be an ip address that looks something like 192.168.0.1 (DON'T put in the exact string <address of server machine>)
'Development > 기타' 카테고리의 다른 글
Window7에서 아이콘이 깨질때 (0) | 2012.06.17 |
---|---|
유용한 C program (0) | 2012.06.17 |
Mulplication without using '*' operator (0) | 2010.12.21 |
Mobile XE 설정하기 (0) | 2010.08.24 |
[GPS]GPS모듈 구현중 (0) | 2009.12.14 |