Raspberry Pi의 TightVNC 서버에서 로컬 클립 보드와 복사 / 붙여 넣기를 처리 할 수없는 것 같습니다. 내가 무엇을 할 수 있을지?
Raspberry Pi의 TightVNC 서버에서 로컬 클립 보드와 복사 / 붙여 넣기를 처리 할 수없는 것 같습니다. 내가 무엇을 할 수 있을지?
답변:
먼저 자동 절단 설치 ( sudo apt-get install autocutsel
)
그런 다음 /home/pi/.vnc/xstartup ( nano /home/pi/.vnc/xstartup
)을 열고 다음 과 같이 착용 autocutsel -fork
하십시오.
#!/bin/sh
xrdb $HOME/.Xresources
xsetroot -solid grey
autocutsel -fork
#x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
#x-window-manager &
# Fix to make GNOME work
export XKL_XMODMAP_DISABLE=1
/etc/X11/Xsession
그런 다음 vnc 서버를 다시 시작한 후에 작동합니다.
VNC 서버를 중지하려면
vncserver –kill :1 (pick your display)
VNC 서버를 시작하려면 :
vncserver :1 –geometry 1024x600 –depth 24
autocutsel -fork
복사 / 과거가 작동하기 위해 자동 시작이 xstartup에서 맨 먼저 오도록해야했습니다.
# Makes copy/past work - must come before RANDR 'fix'
#vncconfig -iconic &
autocutsel -s CLIPBOARD -fork
autocutsel -s PRIMARY -fork
# Get's rid of RANDR missing errors
export XKL_XMODMAP_DISABLE=1
/etc/X11/Xsession