summary refs log tree commit diff stats
path: root/gitlab/issues_text/target_missing/host_missing/accel_missing/1413
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-06-01 21:35:14 +0200
committerChristian Krinitsin <mail@krinitsin.com>2025-06-01 21:35:14 +0200
commit3e4c5a6261770bced301b5e74233e7866166ea5b (patch)
tree9379fddaba693ef8a045da06efee8529baa5f6f4 /gitlab/issues_text/target_missing/host_missing/accel_missing/1413
parente5634e2806195bee44407853c4bf8776f7abfa4f (diff)
downloadqemu-analysis-3e4c5a6261770bced301b5e74233e7866166ea5b.tar.gz
qemu-analysis-3e4c5a6261770bced301b5e74233e7866166ea5b.zip
clean up repository
Diffstat (limited to 'gitlab/issues_text/target_missing/host_missing/accel_missing/1413')
-rw-r--r--gitlab/issues_text/target_missing/host_missing/accel_missing/141322
1 files changed, 0 insertions, 22 deletions
diff --git a/gitlab/issues_text/target_missing/host_missing/accel_missing/1413 b/gitlab/issues_text/target_missing/host_missing/accel_missing/1413
deleted file mode 100644
index a2f985fdd..000000000
--- a/gitlab/issues_text/target_missing/host_missing/accel_missing/1413
+++ /dev/null
@@ -1,22 +0,0 @@
-I tried to use qemu-nbd in the shell script, but it seems that qemu-nbd has some delay.
-Description of problem:
-
-Steps to reproduce:
-1.
-```
-cat ~/test.sh
-#!/bin/bash
-qemu-nbd -c /dev/nbd0 $1
-mount -t ntfs3 -o uid=1000,gid=1000 /dev/disk/by-label/OS /mnt/OS
-```
-2.
-```
-sudo ~/test.sh ~/VM/win7_i386.qcow2
-mount: /mnt/OS: special device /dev/disk/by-label/OS does not exist.
-       dmesg(1) may have more information after failed mount system call.
-
-```
-Additional information:
-But when I added a one-second delay between qemu-nbd and mount commands, the problem was solved.
-
-The qemu-img convert command also has a similar problem. It seems that these commands have a certain delay. Is this in line with expectations?