blob: 6c7c1add9725c0864f1217f3c147850e5f57997d (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/bash
echo "remmina" >> ~/.vnc/passwd
# Start the vnc server while only accepting connections through the unix-socket.
# This will prompt the user for a password
vncserver -rfbport=5555 -localhost no -Log *:stderr:100 -xstartup /usr/bin/xterm
tail -f ~/.vnc/*.log
|