From: "Richard W.M. Jones" <rjones@redhat.com>
To: Max Reitz <mreitz@redhat.com>
Cc: qemu-block@nongnu.org, Kevin Wolf <kwolf@redhat.com>,
Jeff Cody <jcody@redhat.com>,
qemu-stable@nongnu.org, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 0/4] block/curl: Fix FTP
Date: Wed, 26 Oct 2016 10:44:02 +0100 [thread overview]
Message-ID: <20161026094402.GE27578@redhat.com> (raw)
In-Reply-To: <20161025025431.24714-1-mreitz@redhat.com>
As well as testing patch 2 on its own, I also tested all 4 patches
together on top of current qemu from git.
In summary, it seems to work fine and doesn't break http or https as
far as I can tell.
Rich.
$ http_proxy= LIBGUESTFS_BACKEND=direct LIBGUESTFS_HV=~/d/qemu/x86_64-softmmu/qemu-system-x86_64 guestfish -a http://onuma.home.annexia.org/media/installers/Fedora-23-Cloud-x86_64/Fedora-Cloud-Base-23-20151030.x86_64.qcow2 --ro -i
Welcome to guestfish, the guest filesystem shell for
editing virtual machine filesystems and disk images.
Type: 'help' for help on commands
'man' to read the manual
'quit' to quit the shell
Operating system: Fedora 23 (Cloud Edition)
/dev/sda1 mounted on /
><fs> ll /
total 84
dr-xr-xr-x. 18 root root 4096 Oct 30 2015 .
drwxr-xr-x 19 root root 4096 Oct 26 09:42 ..
lrwxrwxrwx. 1 root root 7 Sep 10 2015 bin -> usr/bin
dr-xr-xr-x. 5 root root 4096 Oct 30 2015 boot
drwxr-xr-x. 2 root root 4096 Oct 30 2015 dev
drwxr-xr-x. 68 root root 4096 Oct 30 2015 etc
drwxr-xr-x. 2 root root 4096 Oct 30 2015 home
lrwxrwxrwx. 1 root root 7 Sep 10 2015 lib -> usr/lib
lrwxrwxrwx. 1 root root 9 Sep 10 2015 lib64 -> usr/lib64
drwx------. 2 root root 16384 Oct 30 2015 lost+found
drwxr-xr-x. 2 root root 4096 Sep 10 2015 media
drwxr-xr-x. 2 root root 4096 Sep 10 2015 mnt
drwxr-xr-x. 2 root root 4096 Sep 10 2015 opt
drwxr-xr-x. 2 root root 4096 Oct 30 2015 proc
dr-xr-x---. 2 root root 4096 Oct 30 2015 root
drwxr-xr-x. 2 root root 4096 Oct 30 2015 run
lrwxrwxrwx. 1 root root 8 Sep 10 2015 sbin -> usr/sbin
drwxr-xr-x. 2 root root 4096 Sep 10 2015 srv
drwxr-xr-x. 2 root root 4096 Oct 30 2015 sys
drwxrwxrwt. 7 root root 4096 Oct 30 2015 tmp
drwxr-xr-x. 12 root root 4096 Oct 30 2015 usr
drwxr-xr-x. 18 root root 4096 Oct 30 2015 var
><fs> find / | wc -l
26532
><fs> exit
$ http_proxy= https_proxy= LIBGUESTFS_BACKEND=direct LIBGUESTFS_HV=~/d/qemu/x86_64-softmmu/qemu-system-x86_64 guestfish -a https://download.fedoraproject.org/pub/fedora/linux/releases/24/CloudImages/x86_64/images/Fedora-Cloud-Base-24-1.2.x86_64.qcow2 --ro -i
Welcome to guestfish, the guest filesystem shell for
editing virtual machine filesystems and disk images.
Type: 'help' for help on commands
'man' to read the manual
'quit' to quit the shell
Operating system: Fedora 24 (Cloud Edition)
/dev/sda1 mounted on /
><fs> ll /
total 84
dr-xr-xr-x. 18 root root 4096 Jun 14 16:24 .
drwxr-xr-x 19 root root 4096 Oct 26 09:42 ..
lrwxrwxrwx. 1 root root 7 Feb 3 2016 bin -> usr/bin
dr-xr-xr-x. 4 root root 4096 Jun 14 16:24 boot
drwxr-xr-x. 2 root root 4096 Jun 14 16:20 dev
drwxr-xr-x. 67 root root 4096 Jun 14 16:25 etc
drwxr-xr-x. 2 root root 4096 Jun 14 16:24 home
lrwxrwxrwx. 1 root root 7 Feb 3 2016 lib -> usr/lib
lrwxrwxrwx. 1 root root 9 Feb 3 2016 lib64 -> usr/lib64
drwx------. 2 root root 16384 Jun 14 16:20 lost+found
drwxr-xr-x. 2 root root 4096 Feb 3 2016 media
drwxr-xr-x. 2 root root 4096 Feb 3 2016 mnt
drwxr-xr-x. 2 root root 4096 Feb 3 2016 opt
drwxr-xr-x. 2 root root 4096 Jun 14 16:20 proc
dr-xr-x---. 2 root root 4096 Jun 14 16:26 root
drwxr-xr-x. 2 root root 4096 Jun 14 16:20 run
lrwxrwxrwx. 1 root root 8 Feb 3 2016 sbin -> usr/sbin
drwxr-xr-x. 2 root root 4096 Feb 3 2016 srv
drwxr-xr-x. 2 root root 4096 Jun 14 16:20 sys
drwxrwxrwt. 7 root root 4096 Jun 14 16:26 tmp
drwxr-xr-x. 12 root root 4096 Jun 14 16:20 usr
drwxr-xr-x. 19 root root 4096 Jun 14 16:20 var
><fs> find / | wc -l
25817
><fs>
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
Read my programming and virtualization blog: http://rwmj.wordpress.com
libguestfs lets you edit virtual machines. Supports shell scripting,
bindings from many languages. http://libguestfs.org
next prev parent reply other threads:[~2016-10-26 9:44 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-25 2:54 [Qemu-devel] [PATCH 0/4] block/curl: Fix FTP Max Reitz
2016-10-25 2:54 ` [Qemu-devel] [PATCH 1/4] block/curl: Use BDRV_SECTOR_SIZE Max Reitz
2016-10-25 18:31 ` Eric Blake
2016-10-26 14:39 ` Max Reitz
2016-10-26 9:31 ` Richard W.M. Jones
2016-10-25 2:54 ` [Qemu-devel] [PATCH 2/4] block/curl: Fix return value from curl_read_cb Max Reitz
2016-10-25 18:37 ` Eric Blake
2016-10-26 9:17 ` Kevin Wolf
2016-11-01 9:58 ` Matthew Booth
2016-10-26 14:43 ` Max Reitz
2016-10-26 9:38 ` Richard W.M. Jones
2016-10-25 2:54 ` [Qemu-devel] [PATCH 3/4] block/curl: Remember all sockets Max Reitz
2016-10-25 2:54 ` [Qemu-devel] [PATCH 4/4] block/curl: Do not wait for data beyond EOF Max Reitz
2016-10-26 9:44 ` Richard W.M. Jones [this message]
2016-11-15 3:47 ` [Qemu-devel] [PATCH 0/4] block/curl: Fix FTP Jeff Cody
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20161026094402.GE27578@redhat.com \
--to=rjones@redhat.com \
--cc=jcody@redhat.com \
--cc=kwolf@redhat.com \
--cc=mreitz@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-stable@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.