반응형
원격으로 Jetson nano에 접속하여 작업을 하고자 함.
# 환경
- 윈도우 10
- Jetson nano Ubuntu 18.04
# 윈도우 VNC 설치
아래 링크의 VNC를 설치함.
https://www.realvnc.com/en/connect/download/viewer/
Download VNC Viewer by RealVNC®
RealVNC® Viewer is the original VNC Viewer and the most secure way to connect to your devices remotely. Download VNC Viewer by RealVNC® now.
www.realvnc.com
# Jetson nano VNC 설정
- VNC 설정
$ sudo gedit /usr/share/glib-2.0/schemas/org.gnome.Vino.gschema.xml
위의 xml 파일에 아래의 텍스트 추가
<key name='enabled' type='b'>
<summary>Enable remote access to the desktop</summary>
<description>
If true, allows remote access to the desktop via the RFB
protocol. Users on remote machines may then connect to the
desktop using a VNC viewer.
</description>
<default>false</default>
</key>
- 아래의 명령어 입력
sudo glib-compile-schemas /usr/share/glib-2.0/schemas
gsettings set org.gnome.Vino require-encryption false
gsettings set org.gnome.Vino prompt-enabled false
- 시작 프로그램에 추가 명령어
$ /usr/lib/vino/vino-server
- 고정 IP로 설정
- 추가로 해상도 설정 명령어
$ xrandr --fb 1280x720 또는 $ xrandr -s 1600x1200
$ source ~/.xsessionrc
# 윈도우에서 접속
- 설치된 RealVNC 실행
- 접속 예시 : 192.168.x.x : 5900
반응형
'프로그래밍 > 작은 메모' 카테고리의 다른 글
| Jetson nano emmc 이미지 클론/백업 (0) | 2025.09.24 |
|---|---|
| Jetson nano samba 설치 (0) | 2025.09.23 |
| Jetson nano OpenCV 4.5 설치 (0) | 2025.09.19 |
| WSL에서 설치된 Ubuntu 버전 제거 (0) | 2025.09.17 |
| 텍스트 파일에 특정 단어가 포함된 라인 제거 방법 (Python) (1) | 2025.09.01 |