Parece que mi servidor TightVNC en Raspberry Pi no puede manejar copiar / pegar entre él y mis portapapeles locales. ¿Que puedo hacer?
23
Primero instale autocutsel ( sudo apt-get install autocutsel
)
Luego abra su /home/pi/.vnc/xstartup ( nano /home/pi/.vnc/xstartup
) y póngalo autocutsel -fork
así:
#!/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
Entonces funcionará después de reiniciar el servidor vnc
Para detener el servidor VNC:
vncserver –kill :1 (pick your display)
Para iniciar el servidor VNC:
vncserver :1 –geometry 1024x600 –depth 24
autocutsel -fork
Tenía que asegurarme de que mi autocutsel llega PRIMERO en xstartup para que copy / past funcione
fuente