Hype-2/functions/fvnc.py

26 lines
885 B
Python
Raw Permalink Normal View History

2023-10-17 08:03:51 +00:00
from config import *
from xml.etree import ElementTree as ET
from flask import request, Response
import os
def get_vnc_port(vm_name):
dom = conn.lookupByName(vm_name)
vm_xml = dom.XMLDesc(0)
et_xml = ET.fromstring(vm_xml)
graphics = et_xml.find('./devices/graphics')
vnc_port = graphics.get('port')
return vnc_port
def kill_consoles():
os.system('kill -9 $(ps -edf | grep websockify | grep -v grep | awk \'{ print $2 }\')')
os.system('for i in $(ps -edf | grep pyxterm | grep -v grep | awk \'{ print $2 }\');do kill -9 $i;done')
def socket_connect(vm_name):
kill_consoles()
vm_port = get_vnc_port(vm_name)
os.system('websockify -D --web=/usr/share/novnc/ 6080 localhost:'+vm_port)
2023-10-18 10:21:48 +00:00
def pyxterm_connect(path,lxc_name):
2023-10-17 08:03:51 +00:00
kill_consoles()
2023-10-18 10:21:48 +00:00
os.system('python3 '+path+'/pyxterm.py --command \'lxc-attach\' --cmd-args \''+lxc_name+'\' &')