summary refs log tree commit diff stats
path: root/results/classifier/deepseek-r1:14b/output/hypervisor/2205
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-07-03 19:39:53 +0200
committerChristian Krinitsin <mail@krinitsin.com>2025-07-03 19:39:53 +0200
commitdee4dcba78baf712cab403d47d9db319ab7f95d6 (patch)
tree418478faf06786701a56268672f73d6b0b4eb239 /results/classifier/deepseek-r1:14b/output/hypervisor/2205
parent4d9e26c0333abd39bdbd039dcdb30ed429c475ba (diff)
downloadqemu-analysis-dee4dcba78baf712cab403d47d9db319ab7f95d6.tar.gz
qemu-analysis-dee4dcba78baf712cab403d47d9db319ab7f95d6.zip
restructure results
Diffstat (limited to 'results/classifier/deepseek-r1:14b/output/hypervisor/2205')
-rw-r--r--results/classifier/deepseek-r1:14b/output/hypervisor/220551
1 files changed, 51 insertions, 0 deletions
diff --git a/results/classifier/deepseek-r1:14b/output/hypervisor/2205 b/results/classifier/deepseek-r1:14b/output/hypervisor/2205
new file mode 100644
index 000000000..010d3e81a
--- /dev/null
+++ b/results/classifier/deepseek-r1:14b/output/hypervisor/2205
@@ -0,0 +1,51 @@
+
+9p rootfs issues
+Description of problem:
+I've created qemu guest per https://wiki.qemu.org/Documentation/9p_root_fs guidelines. debootstrap fails on this guest.
+Steps to reproduce:
+```
+root@ubuntu-dev:~# debootstrap --arch amd64 --variant=minbase noble /var/tmp/new_root/
+I: Retrieving InRelease 
+I: Checking Release signature
+E: Error executing gpgv to check Release signature
+root@ubuntu-dev:~# 
+```
+Additional information:
+I noticed, that gpg key extracted by debootstrap from the InRelease is corrupted:
+```
+root@ubuntu-dev:~# head /var/tmp/new_root/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_noble_Release.gpg
+-----BEGIN PGP SIGNATURE-----
+-----BEGIN PGP SIGNATURE-----
+
+-----BEGIN PGP SIGNATURE-----
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAEBCgAdFiEE9uyzdiR07anSG3Aihxkg0ZkbyTwFAmXkbkUACgkQhxkg0Zkb
+-----BEGIN PGP SIGNATURE-----
+-----BEGIN PGP SIGNATURE-----
+
+root@ubuntu-dev:~# 
+```
+I also noticed that on the 9p filesystem appending to files corrupts them:
+```
+root@ubuntu-dev:~# echo 1 >/var/tmp/test
+root@ubuntu-dev:~# cat /var/tmp/test
+1
+root@ubuntu-dev:~# echo 2 >>/var/tmp/test
+root@ubuntu-dev:~# cat /var/tmp/test
+1
+1
+2
+root@ubuntu-dev:~# 
+```
+This is not happening on the tmpfs:
+```
+root@ubuntu-dev:~# echo 1 >/tmp/test
+root@ubuntu-dev:~# cat /tmp/test
+1
+root@ubuntu-dev:~# echo 2 >>/tmp/test
+root@ubuntu-dev:~# cat /tmp/test
+1
+2
+root@ubuntu-dev:~# 
+```