From 6c0f34dd9e3d422f1111ada7a6638f839d5115cc Mon Sep 17 00:00:00 2001 From: heckeralt Date: Fri, 20 Sep 2024 15:29:30 -0400 Subject: [PATCH] Update start-linux.js --- start-linux.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start-linux.js b/start-linux.js index c0e5bfd..99a099a 100644 --- a/start-linux.js +++ b/start-linux.js @@ -1,7 +1,7 @@ const http = require('http'); const child = require("child_process"); let qemucmd = "qemu-system-x86_64 -vnc :1 -m 1G" -child.execSync() +child.execSync(qemucmd) http.createServer(function (req, res) { res.write('Server running at IP 127.0.0.1:5901 (VNC)'); //write a response to the client res.end(); //end the response