From 9260319e7411ff8281700a532caa436f40120ec4 Mon Sep 17 00:00:00 2001 From: Christian Krinitsin Date: Fri, 30 May 2025 16:52:07 +0200 Subject: gitlab scraper: download in toml and text format --- .../target_missing/host_missing/accel_missing/2437 | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 gitlab/issues_text/target_missing/host_missing/accel_missing/2437 (limited to 'gitlab/issues_text/target_missing/host_missing/accel_missing/2437') diff --git a/gitlab/issues_text/target_missing/host_missing/accel_missing/2437 b/gitlab/issues_text/target_missing/host_missing/accel_missing/2437 new file mode 100644 index 000000000..8809e7138 --- /dev/null +++ b/gitlab/issues_text/target_missing/host_missing/accel_missing/2437 @@ -0,0 +1,37 @@ +qm terminal VMID return "Inappropriate ioctl for device" when spawned by an another process +Description of problem: +as i dont want to mess with vnc i want to use qm terminal to interact with my vms and it doesnt work im currently using nodejs as a test heres the code if anybody wanna try it +```js +import { spawn } from "child_process"; +var child = spawn('qm', ["terminal", "100"]); + +child.stdout.setEncoding('utf8'); +child.stdin.setDefaultEncoding("utf8"); +child.stdout.on('data', function (data) { + console.log('stdout: ' + data.trim()); +}); + +child.stderr.setEncoding('utf8'); +child.stderr.on('data', function (data) { + console.log('stderr: ' + data.trim()); +}); + +child.on('close', function (code) { + console.log('closing code: ' + code); +}); + +setInterval(() => { + child.stdin.write("\n"); +}, 5000); +``` +its just spawning qm terminal and sending return every 5 seconds + +it seems to start but crash + +"Inappropriate ioctl for device" + +![image](/uploads/dd1306f1b6437814cc90c9d1be0fcd3b/image.png){width=478 height=48} + +maybe its not the place to put that but i have no clue so here am i + +At least i tryed spawning something else my code is working -- cgit 1.4.1