diff options
Diffstat (limited to 'results/classifier/108/graphic/2437')
| -rw-r--r-- | results/classifier/108/graphic/2437 | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/results/classifier/108/graphic/2437 b/results/classifier/108/graphic/2437 new file mode 100644 index 000000000..2d5545134 --- /dev/null +++ b/results/classifier/108/graphic/2437 @@ -0,0 +1,52 @@ +graphic: 0.989 +device: 0.968 +other: 0.960 +performance: 0.889 +PID: 0.886 +network: 0.874 +debug: 0.777 +semantic: 0.772 +socket: 0.768 +boot: 0.668 +permissions: 0.653 +files: 0.652 +vnc: 0.582 +KVM: 0.568 + +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" + +{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 |