구글 크롬 원격데스트탑에서 우분투로 접속시 사이드바가 없는 경우.
해결:
참조: https://productforums.google.com/forum/#!msg/chrome/LJgIh-IJ9Lk/Vajx_Q9OxdoJ
참조: https://superuser.com/questions/778028/configuring-chrome-remote-desktop-with-ubuntu-gnome-14-04/850359#850359
1. 원격데스크탑 실행종료
/opt/google/chrome-remote-
2. 기존 설정 백업
sudo cp /opt/google/chrome-remote-
3. 설정파일 수정하기
sudo gedit /opt/google/chrome-
화면크기 수정하기
DEFAULT_SIZES = "1920x1080" (내가보는 모니터 해상도)
기존 모니터가 원격에서 보이도록 수정
FIRST_X_DISPLAY_NUMBER = 0
다음을 주석처리
#while os.path.exists(X_LOCK_
# display += 1
다음을 주석처리 후 삽입
def launch_session(self, x_args):
self._init_child_env()
self._setup_pulseaudio()
self._setup_gnubby()
#self._launch_x_server(x_args)
#self._launch_x_session()
display = self.get_unused_display_number()
self.child_env["DISPLAY"] = ":%d" % display
4. 원격데스크탑 재실행
/opt/google/chrome-remote-