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