blob: c2b546a4bb6777e3a034b53703999119e1f4671f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# ServerVM
Graphical Interface for Servers
apt install novnc psmisc x11vnc tigervnc-standalone-server xterm terminator wget dbus-x11 python-py python3-pip xfce4 xorg -y
__________
###### (OLD) Copy and paste the novnc_proxy into novnc directory:
wget https://github.com/cristiancmoises/servervm/blob/main/novnc_proxy && mv novncproxy /usr/share/novnc/utils/
###### (OLD)Start NOVNC
/usr/share/novnc/utils/novnc_proxy --listen 8080 --vnc localhost:5901
__________
# StartVnc Server
tigervncserver -geometry 1366x768 -xstartup /usr/bin/terminator
# (NEW)
/usr/share/novnc/utils/launch.sh --listen 8080 --vnc localhost:5901
# Access Your Server:
http://SERVERIP:8080/vnc.html
# Kill the connection:
fuser -k 8080/tcp
|