VNC

From Hack Sphere Labs Wiki
Revision as of 08:28, 16 June 2015 by Webdawg (talk | contribs) (VNC)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

VNC

aptitude install vncserver openbox menu autocutsel

  • For copy paste:
nano ~/.vnc/xstartup

add

autocutsel -fork


vnccheck

#!/bin/sh
if ps uxww | grep Xtightvnc | grep -v grep ; then
  exit 0
else
  /usr/bin/vncserver &
  exit 0
fi