크롬 원격데스크탑 Ubuntu 20.04에서 설정


설치법 20.04 기준

  • chrome 브라우져 설치
  • headless 설치

  • 다시 (1)번으로 돌아가서 명령어를 ubuntu terminal에 복사 붙여넣기로 실행

    • PIN number 설정
  • 다른컴퓨터에서 연결 시도
    필자는 맥에서 chrome-remote deskptop 응용으로 접속 시도하면 아래와 같이 성공적으로 화면이 나온다.
    스크린샷 2021-03-02 오후 1.49.41

Trobuleshooting (문제해결)

연결시 검정화면으로 아무것도 보이지 않을 때

하위버전 ubuntu의 경우 desktop-environment가 remote-desktop을 지원하지 않아서 그럴 수 있다.
이경우 다른 라이트한 환경을 설치해 준다.

  • xfce 환경 설치
    터미널만 사용
    sudo apt install x-terminal-emulator
    sudo apt install xfce4-terminal
    
    GUI 사용
    sudo apt install xfce4
    sudo apt install dbus-x11
    

Color Profile 생성 권한 요청 문제 해결

sudo mkdir -p /etc/polkit-1/localauthority/50-local.d/

sudo vi /etc/polkit-1/localauthority/50-local.d/color.pkla

# 아래 내용 입력
[Allow colord for all users]
Identity=unix-user:*
Action=org.freedesktop.color-manager.create-device;org.freedesktop.color-manager.create-profile;org.freedesktop.color-manager.delete-device;org.freedesktop.color-manager.delete-profile;org.freedesktop.color-manager.modify-device;org.freedesktop.color-manager.modify-profile
ResultAny=yes
ResultInactive=yes
ResultActive=yes

참조


+ Recent posts