diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-06-01 21:35:14 +0200 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-06-01 21:35:14 +0200 |
| commit | 3e4c5a6261770bced301b5e74233e7866166ea5b (patch) | |
| tree | 9379fddaba693ef8a045da06efee8529baa5f6f4 /gitlab/issues_text/target_missing/host_missing/accel_missing/2205 | |
| parent | e5634e2806195bee44407853c4bf8776f7abfa4f (diff) | |
| download | qemu-analysis-3e4c5a6261770bced301b5e74233e7866166ea5b.tar.gz qemu-analysis-3e4c5a6261770bced301b5e74233e7866166ea5b.zip | |
clean up repository
Diffstat (limited to 'gitlab/issues_text/target_missing/host_missing/accel_missing/2205')
| -rw-r--r-- | gitlab/issues_text/target_missing/host_missing/accel_missing/2205 | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/gitlab/issues_text/target_missing/host_missing/accel_missing/2205 b/gitlab/issues_text/target_missing/host_missing/accel_missing/2205 deleted file mode 100644 index e7661af17..000000000 --- a/gitlab/issues_text/target_missing/host_missing/accel_missing/2205 +++ /dev/null @@ -1,50 +0,0 @@ -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:~# -``` |