Ubuntu 11.10 에서 12.04 로 upgrade 한 뒤, synergy client 에서 shift, alt key 등 입력에 오류가 있어 연결이 끊겨져 버리는 현상이 발생되었다. 


환경은

Window(Synergy Server1.4.8), Ubuntu(Synergy Client-1.3.8) 이렇게 해서 사용했는데 upgrade 이 후,

bug가 생겨 ubuntu 한영 전환 시(shift + space) 연결이 끊어지는 것이다. 


그래서 window 를 client로 쓰고 ubuntu 를 server 로 변경했더니 문제는 window 에서 한/영 전환이 안되는 문제.. (patch 된 binary가 배포되어 써봤지만, 동작이 잘안됐음) 


그래서, ubuntu 에 synergy client 를 최신버전으로 upgrade 하여(1.4.8) 해보니 정상동작 되었다. ^^


매번 upgrade 같은 변경이 있으면 기존에 있던 설정을 다시 손봐야 하는 문제가 한개씩은 생기네

'Etc.' 카테고리의 다른 글

Youtube streaming 을 PC 로 download  (0) 2012.08.09
Ubuntu Video 가 푸르게(blue)로 나오는 현상 제거  (0) 2012.08.09
[영화] I Am Number Four  (0) 2011.02.28
Christmas 분위기???  (0) 2010.12.22
Best Diff Tools  (0) 2010.12.22
1. redmine installation

2. admin 계정 password 초기화
RAILS_ENV=production script/runner 'user = User.find(:first, :conditions => {:admin => true}) ; user.password, user.password_confirmation = "PASSWORD"; user.save!'

3. plugin uninstall
rake db:migrate:plugin RAILS_ENV=production NAME=<plugin name> VERSION=0
ruby script/plugin remove <plugin name>

4. reference site

gitolite install & setting

조금 더 써봐야 알겠지만, UI 도 이쁘고 간편하니 잘쓰면 좋을 듯.
http://www.redmine.org/ 이 사이트를 가서 살펴 본 후 마음에 들어 설치!

Ubuntu 11.10 에 설치 완료! git 은 연동하려다 실패.. 다 roll back 하고 그냥 있는 그대로 쓰련다 굳이 필요없을 듯. ㅋ 



'Development Tip' 카테고리의 다른 글

Ubuntu Console mode booting  (1) 2012.08.31
switch remote/branch by repo  (0) 2012.08.30
Cscope, Ctags 를 원하는 file만.  (0) 2012.02.23
Ubuntu 11.10 application : Terminator  (0) 2012.02.20
Android git mirror site  (0) 2011.09.30

대형 project일 경우, 모두 다 보는 것도 아니고 원하는 file만 등록하여 tagging 을 하는 것이 더 좋을 수도 있다. (ctags와 cscope을 하는데 시간도 많이 걸리고..)

원하는 file을 cscope.files 로 만든 다음, 
$ find <path> <type or name> -print > cscope.files
$ ctags -L cscope.files
$ cscope -I cscope.files

example)
$ find ./abc -name "*.[chS]" -print > cscope.files
$ find ./cdb -name "*.[chS]" -print >> cscope.files #추가할 경우
$ ctags -L cscope.files
$ cscope -I cscope.files

위와 같이 하면, 원하는 file만 등록하여 trace 할 수 있다. 



'Development Tip' 카테고리의 다른 글

switch remote/branch by repo  (0) 2012.08.30
redmine tip  (0) 2012.03.26
Ubuntu 11.10 application : Terminator  (0) 2012.02.20
Android git mirror site  (0) 2011.09.30
Per-process Namespace  (0) 2011.03.16

+ Recent posts