먼저 vnc 설치
RealVNC 무료버전은 업데이트된지 너무 오래되었고, 더이상 업데이트되지도 않을 것 같아 대체 프로그램을 생각함.
VNC는 현재 난립한 상태로 보이며 종류가 엄청 많다.
대략, UltraVNC, TightVNC, TigerVNC 정도 테스트 해봤고 이중 TigerVNC를 사용하기로 했다.
UltraVNC는 파일전송이 가능해 매력적이었으나, 사용하는데 좀 무겁고 느렸음
아직 모든 VNC는 한글입력에 문제있음. 소스수정을 하면 되나, 그러긴 싫다.
이하 테스트를 위해 이곳저곳을 둘러보며 정리했던 내용
TigerVNC 기능점검: 파일전송, 원격지 copy/paste, 속도, 안정성, 그래픽 민첩성
Virtual Network Computing (VNC) 비교
원문: http://www.dbuggr.com/milly/vnc-viewer-comparison-tightvnc-ultravnc-realvnc/
RealVNC: http://www.realvnc.com - free버전만 무료
최초개발자가 작성하여 시장에서 가장 오래 사용됨.
무료버전은 다른 무료VNC에 비해 기능이 떨어지고, 개발이 더이상 진행되는것 같지 않음
상용화의 목적이 강해 대략 좋지 않음
TightVNC: http://www.tightvnc.com - 완전 무료
서버-클라이언트간 VNC 압축 방식을 개선
RealVNC의 대안으로 좋으나, 그래픽과 성능이 가끔 병맛이 됨
로컬-원격지간 복사/붙여넣기를 지원
개발이 활발함
UltraVNC: http://www.uvnc.com - 완전 무료
기존 VNC에 파일전송, 채팅 기능을 추가
위의 2 VNC보다 빠르며, 향상된 그래픽을 제공하고 파일전송과 채팅을 지원함
로컬-원격지간 복사/붙여넣기를 지원
TigerVNC: http://tigervnc.org - 위 3개를 아우르는 차세대(?) VNC
tigervnc > realvnc > tightvnc > ultravnc > turbovnc(?) > winvnc
realvnc: 속도
tightvnc, ultravnc: 파일전송, 로컬-원격지간 복사/붙여넣기 지원
기타
tigervnc: realvnc의 변종으로, tightVNC의 기능중 많은 부분을 흡수
turbovnc
winvnc
먼저 크롬때문에 apt-get install 이 아래 에러와 함께 설치가 안된다면
google-chrome-stable : Depends: libappindicator1 but it is not going to be installed
sudo apt-get update
sudo apt-get -f install
First install autocutsel.
Now, you need to modify the file ~/.vnc/xstartup.
Add the following lines to it:
1 2 | export XKL_XMODMAP_DISABLE=1 autocutsel -fork |
The file finally looks like this:
1 2 3 4 5 6 | #!/bin/sh xrdb $HOME/.Xresources xsetroot -solid grey export XKL_XMODMAP_DISABLE=1 autocutsel -fork /etc/X11/Xsession |
You may need to install autocutsel
First install autocutsel (sudo apt-get install autocutsel
)
Then open your /home/pi/.vnc/xstartup (nano /home/pi/.vnc/xstartup
) and put autocutsel -fork
on it like this:
12345678910 #!/bin/sh xrdb $HOME/.Xresourcesxsetroot -solid greyautocutsel -fork#x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &#x-window-manager &# Fix to make GNOME workexport XKL_XMODMAP_DISABLE=1/etc/X11/Xsession
Then it will work after restart of the vnc server
To Stop VNC Server:
vncserver –kill :1 (pick your display)
To Start VNC Server:
vncserver :1 –geometry 1024x600 –depth 24
autocutsel 다운
Download
This software is released under the GNU GPL.
News
ref : https://m.blog.naver.com/PostView.nhn?blogId=myunggyu&logNo=60136003809&proxyReferer=https%3A%2F%2Fwww.google.co.kr%2F
ref: https://askubuntu.com/questions/787725/ubuntu-16-google-chrome-stable-depends-libappindicator1-but-it-is-not-going
ref : https://blog.droidzone.in/2015/04/11/allow-copy-and-paste-between-tightvnc-server-and-client/
ref : https://www.nongnu.org/autocutsel/
'서버(Server) > Linux' 카테고리의 다른 글
ubuntu 와 window 간의 복사 붙여넣기 세팅 (viritual box) (0) | 2018.06.02 |
---|---|
Ubuntu & install Visual studio code, 실행이 안되는 경우 (0) | 2018.06.02 |
Linux, 현재 디렉토리를 터미널에서 열기, find 명령어 (0) | 2018.06.01 |
PS 명령어의 상세설명 (0) | 2018.05.28 |
리눅스 디렉토리 구조와 윈도우 (1) | 2018.05.28 |