본문 바로가기
AI/Jetson NANO

VNC 설정

by N2info 2022. 12. 7.

1. 우리는 2가지만 사용합니다!

2. 젯슨나노 세팅을 해보자!

순서대로 따라해보세요! :

  • 젯슨나노에서 터미널(cmd)창 열기 :
  • 입력 :
    sudo vi /usr/share/glib-2.0/schemas/org.gnome.Vino.gschema.xml
  • 해당 파일을 고쳐줘야합니다.
  • 지금 켜신 화면은 vi 화면입니다. 일반 텍스트 입력창과 다릅니다.
  • 가장 밑으로 내려서 뒤에 i를 눌러 엔터를 누릅니다.
    그렇게 이것을 복사 붙여넣기 합니다.
<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>
  • 그렇게 esc를 누르시고 :wq를 입력하고 엔터 누른 후 빠져나옵니다.
  • 터미널 창에 이것들을 한줄씩 넣고 엔터를 쳐봅시다.
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
  • 해상도 고정 명령어 ( 1280x 720) _ 실행안됨?
xrandr --fb 1280x720 
source ~/.xsessionrc

- 시작프로그램 설정하기!

  • 젯슨 나노 상단에 우분투 버튼 클릭후 'start' 입력 후 'startup 어플리케이션 ~~' 들어가기
  • Add 누르고 차례로 입력후 Add 하고 Close
    이름(자유) : Vino VNsudo nano /usr/share/glib-2.0/schemas/org.gnome.Vino.gschema.xmlC Server
    명령 : /usr/lib/vino/vino-server
    설명(자유) : Vino VNC Server

젯슨나노를 재부팅 하세요!

--설정 만져주기

  • 이제 젯슨나노에서 DesktopSharing이라는 설정을 사용할 수 있게 되었습니다.
  • Sharing 에서 Allow other users to view your desktop 을 체크합니다.
  • 아래 Security 에서 Require the user to enter this password 에서 하고싶은 비밀번호 입력
  • 설정 끄으으읕!!!!!!!!!!
  • 연결성공!

원본출처 : https://velog.io/@psh4204/Jetson-nano-3.-VNC-%EC%84%A4%EC%A0%95

 

[Jetson nano] 3. VNC 설정

VNC를 하는법을 알아볼까요?

velog.io