From a514e36bc1b36b348fa489d285834c3db8adc33b Mon Sep 17 00:00:00 2001 From: heckeralt Date: Fri, 20 Sep 2024 15:29:15 -0400 Subject: [PATCH] Update start-linux.js --- start-linux.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/start-linux.js b/start-linux.js index 59e8b96..c0e5bfd 100644 --- a/start-linux.js +++ b/start-linux.js @@ -1,7 +1,8 @@ const http = require('http'); const child = require("child_process"); -//create a server object: +let qemucmd = "qemu-system-x86_64 -vnc :1 -m 1G" +child.execSync() http.createServer(function (req, res) { - res.write('SSH working at IP: this.is.a.test'); //write a response to the client + res.write('Server running at IP 127.0.0.1:5901 (VNC)'); //write a response to the client res.end(); //end the response }).listen(8080); //the server object listens on port 8080 \ No newline at end of file