728x90
반응형
아래와 같이 vnc server 를 연결했을 때 회색 화면으로 뜨는 문제가 발생한다.
실행될 Application 이 아무것도 없어서 뜨는 문제이다. ~/.vnc/xstartup 파일을 수정해주면 된다.
0. process kill
해당 번호를 지워주면 된다.
vncserver -kill :2
1. 패키지 설치
sudo apt install gnome-session-flashback
2. ~/.vnc/xstartup 내용 변경
vi ~/.vnc/xstartup
#!/bin/sh
# Uncomment the following two lines for normal desktop:
# unset SESSION_MANAGER
# exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
x-window-manager &
exec /usr/bin/startxfce4 &
# 아래 내용 추가 하였음
#!/bin/sh
autocutsel -fork
xrdb $HOME/.Xresources
xsetroot -solid grey
export XKL_XMODMAP_DISABLE=1
export XDG_CURRENT_DESKTOP="GNOME-Flashback:Unity"
export XDG_MENU_PREFIX="gnome-flashback-"
unset DBUS_SESSION_BUS_ADDRESS
gnome-session --session=gnome-flashback-metacity --disable-acceleration-check --debug &
3. vncserver 다시 실행
vncserver :2 -geometry 1920x1080 -depth 24
참고자료 : https://askubuntu.com/questions/1205687/ubuntu-18-04-vnc-grey-screen
728x90
반응형
'삽질 기록' 카테고리의 다른 글
Linux 환경에서 OpenCV의 VideoCapture 사용 시 Webcam이 죽어도 읽히지 않을 때 (0) | 2021.06.25 |
---|---|
Input type (torch.cuda.DoubleTensor) and weight type (torch.cuda.FloatTensor) should be the same (0) | 2021.06.24 |
Pytorch 에서의 TopK error (k not in range for dimension) (0) | 2021.05.10 |
VNC viewer 에서 Pycharm 실행 시 DISPLAY 문제 (0) | 2021.05.10 |
docker 에서 authentication required 문제 (0) | 2021.03.08 |