[Ubuntu] VNC 설정

Krystal·2022년 1월 24일
0

1. Install TigerVNC Server

🍕 Tiger VNC 패키지 설치

$ sudo apt-get install tigervnc-standalone-server tigervnc-xorg-extension

🍕 VNC 암호 설정

$ vncpasswd
Password:
Verify:
Would you like to enter a view-only password (y/n)? n

🍕 VNC 서버 실행

$ vncserver -localhost no

🍕 실행중인 VNC 서버 확인

$ vncserver -list 

2. VNC 구성

🍕 VNC 인스턴스 종료

$ vncserver -kill :1

🍕 Gnome 설정

  • .vnc 디렉토리 안에 xstartup을 생성하여 수행
$ nano ~/.vnc/xstartup

아래의 스크립트 추가

#!/bin/sh
exec /etc/vnc/xstartup
xrdb $HOME/.Xresources
vncconfig -iconic &
dbus-launch --exit-with-session gnome-session &

파일의 실행 권한 부여

$ chmod u+x  ~/.vnc/xstartup 

3. VNC Client 접속

🍕 VNC Viewer 실행

VNC Viewer Download

🍕 VNC Viewer 접속

bilab@bilab-desktop:~$ vncserver -list

TigerVNC server sessions:

X DISPLAY #	RFB PORT #	PROCESS ID
:1		5901		8207

ex) 10.0.1.49::5901로 접속

profile
🚀Be an active developer

0개의 댓글