[Bug 1935815] Re: virt-sysprep: /var/lib/libvirt/images/test-domain.img: Permission denied

2021-07-16 Thread Richard Jones
No it asks libvirt for the location of the disks and opens
them directly.  Libvirt doesn't really have a way to open
disks remotely (or rather, it does but it's very slow and
clunky and read-only).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1935815

Title:
  virt-sysprep: /var/lib/libvirt/images/test-domain.img: Permission
  denied

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1935815/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1935815] Re: virt-sysprep: /var/lib/libvirt/images/test-domain.img: Permission denied

2021-07-16 Thread Richard Jones
The error is pretty much what it says:

> /var/lib/libvirt/images/test-domain.img: Permission denied

We asked libvirt for the path to the disk image, and then we tried to
open it and failed because presumably the permissions on the disk
image aren't compatible with the current user.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1935815

Title:
  virt-sysprep: /var/lib/libvirt/images/test-domain.img: Permission
  denied

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1935815/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1933490] Re: libguestfs doesn't work

2021-06-24 Thread Richard Jones
s/reduce/recurse/

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1933490

Title:
  libguestfs doesn't work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1933490/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1933490] Re: libguestfs doesn't work

2021-06-24 Thread Richard Jones
> guestfsd: error while loading shared libraries: libkeyutils.so.1:
cannot open shared object file: No such file or directory

This is a new one to me.  The missing library comes from something
called "keyutils" that as far as I know we don't use directly.  It may
be an indirect dependency of another library.

A workaround would be something like this:

  echo '/usr/lib/libkeyutils.so*' > /usr/lib/guestfs/supermin.d/zz-
keyutils

(You might need to adjust the paths)

It would be interesting to find out exactly which binary or library needs
this library, which you can do by unpacking guestfsd (probably in
/usr/lib/guestfs/supermin.d/daemon.tar.gz) and examining it with
the "eu-readelf -d" command, looking for NEEDED lines.  You'll probaby
need to reduce through all the dependent libraries, since as I say
I don't think guestfsd itself needs this library.

Also it would be interesting to know if this bug happens with libguestfs
is built from sources.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1933490

Title:
  libguestfs doesn't work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1933490/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1927863] Re: virt-v2v missing in ubuntu 21.04 (and 20.10)

2021-05-09 Thread Richard Jones
Upstream, virt-v2v (and guestfs-tools) have both been split out into
separate projects, so they must both be packaged separately now.  In
Fedora we now have:

https://src.fedoraproject.org/rpms/libguestfs
https://src.fedoraproject.org/rpms/guestfs-tools
https://src.fedoraproject.org/rpms/virt-v2v

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1927863

Title:
  virt-v2v missing in ubuntu 21.04 (and 20.10)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1927863/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1904554] Re: gzip filter is missing thus completely broken

2020-11-18 Thread Richard Jones
Thanks Shasheen for alerting me to this bug.  We did indeed
change the original gzip plugin to a filter in nbdkit 1.22
(see https://libguestfs.org/nbdkit-release-notes-1.22.1.html#Filters)
However it seems as if Ubuntu is not packaging anything
beyond nbdkit 1.16.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1904554

Title:
  gzip filter is missing thus completely broken

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nbdkit/+bug/1904554/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1891906] Re: mount option does not work in guestmount

2020-09-07 Thread Richard Jones
I'm afraid I don't know the answer but I can give some pointers to the code
so you can work out what's going on:

https://github.com/libguestfs/libguestfs/blob/master/fuse/guestmount.c

This is the program that is supposed to parse the -o options from
the command line.  It adds them to a list of options (fuse_options)
that are passed to the libguestfs mount_local_* APIs.  You should be
able to see the arguments being passed through to the API if you use
guestmount -x

https://github.com/libguestfs/libguestfs/blob/master/lib/fuse.c

This is where the API gets implemented.  It's supposed to only pass
the options through to fuse_opt_add_arg where fuse does the rest.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1891906

Title:
  mount option does not work in guestmount

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1891906/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1891906] Re: mount option does not work in guestmount

2020-08-17 Thread Richard Jones
Have you got the version of guestmount (guestmount --version)?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1891906

Title:
  mount option does not work in guestmount

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1891906/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1864164] Re: virt-customize fails with "host cpu (x86_64) and guest arch (s390x) are not compatible" when running on s390x host

2020-02-24 Thread Richard Jones
I'm pretty sure there was a bug about this, but I can't find it.

The bug was something to do with the fact that the tarball contains already
libguestfs-1.40.2/common/mlstdutils/guestfs_config.ml
The configure script writes the new guestfs_config.ml into the build
directory, but the actual build was pulling the copy from the source
directory (ie. the one from the tarball).

I'll ask my colleague if he remembers that bug.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1864164

Title:
  virt-customize fails with "host cpu (x86_64) and guest arch (s390x)
  are not compatible" when running on s390x host

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-z-systems/+bug/1864164/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1864164] Re: virt-customize fails with "host cpu (x86_64) and guest arch (s390x) are not compatible" when running on s390x host

2020-02-24 Thread Richard Jones
Yes, Pino found it, it was this one:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=946594#46

** Bug watch added: Debian Bug tracker #946594
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=946594

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1864164

Title:
  virt-customize fails with "host cpu (x86_64) and guest arch (s390x)
  are not compatible" when running on s390x host

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-z-systems/+bug/1864164/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1864164] Re: virt-customize fails with "host cpu (x86_64) and guest arch (s390x) are not compatible" when running on s390x host

2020-02-21 Thread Richard Jones
I couldn't yet find build logs for Ubuntu, but for Debian they are correct
(https://buildd.debian.org/status/logs.php?pkg=libguestfs=1%3A1.40.2-7%2Bb1=s390x).

You should see in the ./configure step:

checking host CPU and C ABI... s390x
...
config.status: creating common/mlstdutils/guestfs_config.ml

This would put the string "s390x" into Guestfs_config.host_cpu, which would
be copied to virt-customize and printed in that error message.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1864164

Title:
  virt-customize fails with "host cpu (x86_64) and guest arch (s390x)
  are not compatible" when running on s390x host

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-z-systems/+bug/1864164/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1864164] Re: virt-customize fails with "host cpu (x86_64) and guest arch (s390x) are not compatible" when running on s390x host

2020-02-21 Thread Richard Jones
Is there a way to see the build log from when libguestfs was built?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1864164

Title:
  virt-customize fails with "host cpu (x86_64) and guest arch (s390x)
  are not compatible" when running on s390x host

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-z-systems/+bug/1864164/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1864164] Re: virt-customize fails with "host cpu (x86_64) and guest arch (s390x) are not compatible" when running on s390x host

2020-02-21 Thread Richard Jones
As the error says:

 virt-customize: error: host cpu (x86_64) and guest arch (s390x) are not
compatible, so you cannot use command line options that involve running
commands in the guest. Use --firstboot scripts instead.

I don't believe this is a bug.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1864164

Title:
  virt-customize fails with "host cpu (x86_64) and guest arch (s390x)
  are not compatible" when running on s390x host

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-z-systems/+bug/1864164/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1824236] Re: supermin/liguestfs fails to configure network

2019-05-31 Thread Richard Jones
It doesn't delete the system file, just a copy in a private tree.  This
code can never run outside the appliance.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1824236

Title:
  supermin/liguestfs fails to configure network

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1824236/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1824236] Re: supermin/liguestfs fails to configure network

2019-04-18 Thread Richard Jones
I posted a potential fix here:
https://www.redhat.com/archives/libguestfs/2019-April/msg00129.html

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1824236

Title:
  supermin/liguestfs fails to configure network

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/supermin/+bug/1824236/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1813662] Re: Cannot build VM

2019-01-29 Thread Richard Jones
You can choose arbitrary kernels by setting the SUPERMIN_* environment
variables.  See:
http://libguestfs.org/supermin.1.html#ENVIRONMENT-VARIABLES
http://libguestfs.org/guestfs-faq.1.html#how-can-i-compile-and-install-libguestfs-if-my-distro-doesnt-have-new-enough-qemu-supermin-kernel

There's already a kernel inside 
http://libguestfs.org/download/builder/ubuntu-18.04.xz
but how would you access it without libguestfs?  And it wouldn't work
for non-Linux cases (we support Windows too).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1813662

Title:
  Cannot build VM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1813662/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1813662] Re: Cannot build VM

2019-01-29 Thread Richard Jones
It's how it works: http://libguestfs.org/guestfs-
internals.1.html#architecture

It doesn't need access to the running kernel (nor to live kernel memory),
but to a kernel image, and the kernel image in /boot is convenient for
that purpose.  Anyway this works fine on every other Linux distro except
Ubuntu (even Debian) so IMO it's still an Ubuntu problem that can only be
fixed by Ubuntu developers.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1813662

Title:
  Cannot build VM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1813662/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1813662] Re: Cannot build VM

2019-01-29 Thread Richard Jones
The problem is that the kernel isn't readable by non-root for
voodoo reasons.  (I don't agree this is a sane configuration)

This affects several programs and needs to be fixed either by
making the kernels readable, or by having Ubuntu developers
change the libguestfs packaging so it triggers chmod +r on the
kernel every time the kernel is upgraded.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1813662

Title:
  Cannot build VM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1813662/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1813662] Re: Cannot build VM

2019-01-28 Thread Richard Jones
This looks like an instance of our old favourite:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/759725

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1813662

Title:
  Cannot build VM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1813662/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1793056] Re: On Ubuntu 18.04 virt-copy-out fails with "tar: This does not look like a tar archive"

2018-09-19 Thread Richard Jones
That probably deletes the original packages file, which isn't good.  Would
definitely suggest creating a new file in the supermin.d directory.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1793056

Title:
  On Ubuntu 18.04 virt-copy-out fails with "tar: This does not look like
  a tar archive"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1793056/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1793056] Re: On Ubuntu 18.04 virt-copy-out fails with "tar: This does not look like a tar archive"

2018-09-18 Thread Richard Jones
I should add that there is a simple end user workaround:

echo dash > /usr/lib/guestfs/supermin.d/zz-lp-1793056

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1793056

Title:
  On Ubuntu 18.04 virt-copy-out fails with "tar: This does not look like
  a tar archive"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1793056/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1793056] Re: On Ubuntu 18.04 virt-copy-out fails with "tar: This does not look like a tar archive"

2018-09-18 Thread Richard Jones
I bisected this to:

commit 0cca7f9061455d29a7f893e715028cd3e75c19fd
Author: Pino Toscano 
Date:   Mon Feb 19 14:46:32 2018 +0100

appliance: include dash for Debian distros

(https://github.com/libguestfs/libguestfs/commit/0cca7f9061455d29a7f893e715028cd3e75c19fd)

This commit cherry picks cleanly on top of 1.36.  I have verified that
cherry picking this commit on top of 1.36 fixes the bug on Ubuntu 18.04.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1793056

Title:
  On Ubuntu 18.04 virt-copy-out fails with "tar: This does not look like
  a tar archive"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1793056/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1793056] Re: On Ubuntu 18.04 virt-copy-out fails with "tar: This does not look like a tar archive"

2018-09-18 Thread Richard Jones
I've been playing with this on an Ubuntu 18.04 machine this morning.
Firstly I can confirm the bug with libguestfs0 1:1.36.13-1ubuntu3.1.
Secondly I can confirm this does NOT affect libguestfs 1.39.9 built from
source (from git).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1793056

Title:
  On Ubuntu 18.04 virt-copy-out fails with "tar: This does not look like
  a tar archive"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1793056/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1768085] Re: virt-customize: dhclient can't get IP address

2018-04-30 Thread Richard Jones
The difference with and without --network is in the qemu command line, 
basically whether
we set up a user network or not:

https://github.com/libguestfs/libguestfs/blob/bd4e99cc134dd20cb1f16ac11e44810de30b973a/lib
/launch-direct.c#L674

I'm guessing that ‘dhclient eth0’ only "works" without the network
because it fails to find eth0.

Fairly sure this will be some problem with the Ubuntu dhclient program.

One thing you could do (building from libguestfs source) is edit
`appliance/init` and `appliance/packagelist.in`.  In the first file put
`strace` in front of the `dhclient` line.  In the second file, add
`strace` so the strace package gets added to the appliance.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1768085

Title:
  virt-customize: dhclient can't get IP address

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1768085/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1768085] Re: virt-customize: dhclient can't get IP address

2018-04-30 Thread Richard Jones
I'm not sure, but can you try a few simple tests:

$ virt-rescue --scratch --network -v -x
$ virt-rescue --scratch -v -x

Do those commands fail in the same way?  Does it make a difference if the
--network option is present?

Also it might be worth using the latest version 1.38.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1768085

Title:
  virt-customize: dhclient can't get IP address

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1768085/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1743300] Re: libguestfs not work anymore with 4.13.0-26-generic #29~16.04.2-Ubuntu

2018-01-18 Thread Richard Jones
Backporting the commit is perfectly fine, it's only a small change
needed to work around a change (regression, really) in the ext4 kernel
module.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1743300

Title:
  libguestfs not work anymore with 4.13.0-26-generic #29~16.04.2-Ubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/supermin/+bug/1743300/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1743300] Re: libguestfs not work anymore with 4.13.0-26-generic #29~16.04.2-Ubuntu

2018-01-16 Thread Richard Jones
You've truncated the full log, but I'm going to bet the problem is this
6+ month old bug in supermin which Ubuntu hasn't fixed yet:

https://github.com/libguestfs/supermin/commit/158854e3ba4be7f6b8d81f662ddad98358ede1de

Solutions in decreasing order of preference:

 - Upgrade supermin to latest.

 - Backport just the above patch to supermin.

 - Go back to < 4.13 kernel.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1743300

Title:
  libguestfs not work anymore with 4.13.0-26-generic #29~16.04.2-Ubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-hwe/+bug/1743300/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1615337] Re: libguestfs uses aug_get to get /files/etc/fstab/X/opt instead /files/etc/fstab/X/opt[Y]

2017-11-07 Thread Richard Jones
Someone's going to need to step up and become a maintainer, because
there is currently no libguestfs maintainer for Ubuntu.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1615337

Title:
  libguestfs uses aug_get to get /files/etc/fstab/X/opt instead
  /files/etc/fstab/X/opt[Y]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1615337/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1722800] Re: The libguestfs-zfs does not add ZFS support at all

2017-10-11 Thread Richard Jones
BTW since this is not an Ubuntu bug, but is going to require actual
upstream work, it may be better to discuss on the upstream list
(https://www.redhat.com/mailman/listinfo/libguestfs).  If you wish you
can post on the upstream list without needing to subscribe, although
your first message will be delayed for a few hours in moderation.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1722800

Title:
  The libguestfs-zfs does not add ZFS support at all

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1722800/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1722800] Re: The libguestfs-zfs does not add ZFS support at all

2017-10-11 Thread Richard Jones
This is (sort of) working as designed, but also an upstream bug.  Libguestfs 
doesn't
have transparent ZFS support upstream, because AFAIK it's not possible to just 
mount
a ZFS filesystem on a mountpoint.

Upstream, ZFS support currently only applies to virt-rescue.  ie. You can use 
‘zfs’
commands in the virt-rescue environment, manually.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1722800

Title:
  The libguestfs-zfs does not add ZFS support at all

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1722800/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1632405] Re: virt-customize enters infinite loop: dhclient-script: cannot open /etc/fstab

2016-11-05 Thread Richard Jones
You could backport
https://github.com/libguestfs/libguestfs/commit/fd60be95091a1923e108f72caf251f5549eeccd0

However note this is a bug in Ubuntu's dhclient-script package, and
ultimately it should be fixed in Ubuntu.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1632405

Title:
  virt-customize enters infinite loop: dhclient-script: cannot open
  /etc/fstab

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1632405/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1624264] Re: Dashboard take 5-10 secs for OpenStack operations

2016-10-20 Thread Richard Jones
The Horizon team is aware that those panels incur a significant delay
when loading or performing some actions. We are actively migrating the
interface over to a more client-side approach which reduces the per-
action (page load or otherwise) overhead significantly. If you wish to
see this in action, please look at the reimplemented Containers or
Images panels.

The effort to complete those reimplementations is ongoing.

** Changed in: horizon
   Status: New => Triaged

** Changed in: horizon
   Importance: Undecided => High

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1624264

Title:
  Dashboard take 5-10 secs for OpenStack operations

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1624264/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1632405] Re: virt-customize enters infinite loop: dhclient-script: cannot open /etc/fstab

2016-10-11 Thread Richard Jones
This is a bug in Ubuntu which we have had to work around in libguestfs.
It is indeed worked around in libguestfs 1.34.

See also:
https://www.redhat.com/archives/libguestfs/2015-December/msg00036.html
https://bugzilla.redhat.com/show_bug.cgi?id=1224795
https://github.com/libguestfs/libguestfs/commit/fd60be95091a1923e108f72caf251f5549eeccd0

** Bug watch added: Red Hat Bugzilla #1224795
   https://bugzilla.redhat.com/show_bug.cgi?id=1224795

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1632405

Title:
  virt-customize enters infinite loop: dhclient-script: cannot open
  /etc/fstab

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1632405/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1615337] Re: libguestfs uses aug_get to get /files/etc/fstab/X/opt instead /files/etc/fstab/X/opt[Y]

2016-08-25 Thread Richard Jones
Fixed upstream in
https://github.com/libguestfs/libguestfs/commit/738c3bf4fdce569858369b2d2ce3879bf4b75f50
which will appear in libguestfs >= 1.35.2 and >= 1.34.1.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1615337

Title:
  libguestfs uses aug_get to get /files/etc/fstab/X/opt instead
  /files/etc/fstab/X/opt[Y]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1615337/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1615337] Re: libguestfs uses aug_get to get /files/etc/fstab/X/opt instead /files/etc/fstab/X/opt[Y]

2016-08-25 Thread Richard Jones
Patch posted:
https://www.redhat.com/archives/libguestfs/2016-August/msg00133.html

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1615337

Title:
  libguestfs uses aug_get to get /files/etc/fstab/X/opt instead
  /files/etc/fstab/X/opt[Y]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1615337/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1615337] Re: libguestfs uses aug_get to get /files/etc/fstab/X/opt instead /files/etc/fstab/X/opt[Y]

2016-08-25 Thread Richard Jones
Reproducer for this is:

$ virt-builder fedora-24

$ rm fedora-24-copy
$ truncate -s20G fedora-24-copy
$ virt-resize fedora-24.img fedora-24-copy

$ guestfish -a fedora-24-copy -i
> list-filesystems 
/dev/sda1: ext4
/dev/sda2: swap
/dev/sda3: xfs
/dev/sda4: unknown
> mkfs btrfs /dev/sda4
> list-filesystems 
/dev/sda1: ext4
/dev/sda2: swap
/dev/sda3: xfs
/dev/sda4: btrfs
> emacs /etc/fstab

... Add an extra fstab entry at the end of the file:

/dev/sda4 /home btrfs rw,user 0 0

... It doesn't matter what the options field says as long as there are
at least 2 options.

> exit

$ virt-inspector fedora-24-copy 
libguestfs: error: aug_get: aug_get: /files/etc/fstab/4/opt: Too many matches 
for path expression: There are 2 nodes matching /files/etc/fstab/4/opt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1615337

Title:
  libguestfs uses aug_get to get /files/etc/fstab/X/opt instead
  /files/etc/fstab/X/opt[Y]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1615337/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1524446] Re: virt-builder does not include template to install ubuntu xenial

2015-12-09 Thread Richard Jones
These days virt-builder can read the simplestreams format, which IIUC is
suppose to allow virt-builder to read the metadata that Ubuntu already
posts.  Probably best to talk to Pino Toscano about this since he added
the support.

https://github.com/libguestfs/libguestfs/commit/b024aef6fb2d7219782c6cd00e6c703e161f839d

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1524446

Title:
  virt-builder does not include template to install ubuntu xenial

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1524446/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1368819] Re: libguestfs-tools requires curl, not currently a dependency

2015-10-15 Thread Richard Jones
ubuntu@trusty:~$ virt-builder --list
virt-builder: index is corrupt: os-version 'fedora-21' appears two or more times

This is fixed further along the 1.24 stable branch.
(https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1433750)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1368819

Title:
  libguestfs-tools requires curl, not currently a dependency

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1368819/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1498618] Re: FTBFS in trusty

2015-09-23 Thread Richard Jones
For the MRU, the conditions are:

- upstream supports micro-version updates to stable releases

Yes.  Upstream policy for stable commits is
http://libguestfs.org/guestfs.3.html#libguestfs-version-numbers

- upstream has a sufficiently high level of regression testing for their
stable releases

Yes.  The 'make check-release' rule is run on every release (development
and stable releases), and it includes a very large test suite run under
a variety of conditions and on multiple architectures.

- regression tests are always run on the update before it is released
(e.g. by being enabled in the package's build)

No - the Ubuntu package does not run the full test suite, although it
could and probably should do.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1498618

Title:
  FTBFS in trusty

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1498618/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1498618] Re: FTBFS in trusty

2015-09-22 Thread Richard Jones
This was fixed a (really) long time ago:
https://github.com/libguestfs/libguestfs/commit/101d728e80cce73b882aac7af457013491d03311

This would also be a good time for Ubuntu to update libguestfs to a
version that doesn't have known security issues (but is on the same
stable branch).  See my comment here:
https://bugzilla.redhat.com/show_bug.cgi?id=1194472#c2

** Bug watch added: Red Hat Bugzilla #1194472
   https://bugzilla.redhat.com/show_bug.cgi?id=1194472

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1498618

Title:
  FTBFS in trusty

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1498618/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1481994] Re: ml2c_lc now undefined in dllgettextStub.so due to gcc 5

2015-08-06 Thread Richard Jones
Same issue reported on Debian: https://bugs.debian.org/cgi-
bin/bugreport.cgi?bug=794732

** Bug watch added: Debian Bug tracker #794732
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=794732

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1481994

Title:
  ml2c_lc now undefined in dllgettextStub.so due to gcc 5

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ocaml-gettext/+bug/1481994/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1481994] Re: ftbfs in wily

2015-08-06 Thread Richard Jones
/usr/lib/ocaml/gettext-stub/libgettextStub.a(gettextStubCompat_stubs.o): In 
function `gettextStubCompat_setlocale':
(.text+0x1b9): undefined reference to `ml2c_lc'

The function 'ml2c_lc' is a function defined in ocaml-gettext
(specifically in the file ./libgettext-stub-
ocaml/gettextStubCompat_stubs.c) so it looks as if the bug should be
reassigned to ocaml-gettext.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1481994

Title:
  ftbfs in wily

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1481994/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 925785]

2015-07-21 Thread Richard Jones
This bug -- or something remarkably similar to it -- has reappeared in
1.17.2 (latest X package in Fedora 22).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/925785

Title:
  Starting to scroll is erratic with edge scrolling on touchpad or mouse
  scrollwheels

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-server/+bug/925785/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1417051] Re: bug in dependency resolution while installing libguestfs-tools

2015-05-13 Thread Richard Jones
This is basically a duplicate of https://bugs.launchpad.net/bugs/1053911

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1417051

Title:
  bug in dependency resolution while installing libguestfs-tools

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/zfsutils/+bug/1417051/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1053911] Re: libguestfs-tools shouldn't have hard dependency on zfs-fuse daemon

2015-05-13 Thread Richard Jones
It's fixed in Ubuntu 14.10 onwards.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1053911

Title:
  libguestfs-tools shouldn't have hard dependency on zfs-fuse daemon

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1053911/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1053911] Re: libguestfs-tools shouldn't have hard dependency on zfs-fuse daemon

2015-05-13 Thread Richard Jones
libguestfs-zfs is an optional package.  Don't install it if you don't
require ZFS support.  So yes, I believe it is genuinely fixed in 14.10
onwards.

As for LTS, you'll need to persuade the Ubuntu maintainers to fix this
bug.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1053911

Title:
  libguestfs-tools shouldn't have hard dependency on zfs-fuse daemon

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1053911/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1453542] Re: 15.04 with 3.19.0-17 kernel boot failure

2015-05-11 Thread richard jones
On my Acer Aspire 5920 I installed and successfully booted :
linux-image-3.19.8-031908-generic_3.19.8-031908.201505110938_amd64.
So this boot bug may be fixed.
I may have scrambled my grub as I needed to run grub-mkconfig to get the grub 
start menu updated to include the new kernel.
Part of my bios update journey requested above but not yet complete. Required 
an old 2008 vintage windows HDD to be resurrected.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1453542

Title:
  15.04 with 3.19.0-17 kernel boot failure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1453542/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1453302] Re: Linux kernel freeze (it seems in current/3.19.0-17) on Dell Inspiron 1525

2015-05-10 Thread richard jones
Very pleased to help immensely, though I need a little more hand holding...
What would you like the new report to say? Please excuse my dumb response! 
Thanks

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1453302

Title:
  Linux kernel freeze (it seems in current/3.19.0-17) on Dell Inspiron
  1525

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1453302/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1453542] [NEW] 15.04 with 3.19.0-17 kernel boot failure

2015-05-10 Thread richard jones
Public bug reported:

An Acer Aspire 5920 with Ubuntu 15.04 kernel 3.19.0-17-generic fails boot up 
going unresponsive very early in the sequence.
I installed the upstream kernel packages on my Acer Aspire 5920 laptop:
linux-headers-4.1.0-040100rc2-generic_4.1.0-040100rc2.201505032335_amd64.deb
linux-image-4.1.0-040100rc2-generic_4.1.0-040100rc2.201505032335_amd64.deb
The machine booted successfully 3 times with warnings about installed packages 
having unmet dependencies.
uname -r command confirmed that the expected kernel was running: 
4.1.0-040100rc2-generic

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: linux-image-3.19.0-16-generic 3.19.0-16.16
ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
Uname: Linux 3.19.0-16-generic x86_64
ApportVersion: 2.17.2-0ubuntu1
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  richard1880 F pulseaudio
CurrentDesktop: Unity
Date: Mon May 11 00:49:15 2015
HibernationDevice: RESUME=UUID=f08d2e82-db26-49b2-b688-4df3cc5f0762
InstallationDate: Installed on 2015-01-08 (122 days ago)
InstallationMedia: Ubuntu 14.04.1 LTS Trusty Tahr - Release amd64 (20140722.2)
MachineType: Acer, inc. Aspire 5920
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-16-generic 
root=UUID=bf544740-121f-4cd5-90fe-07cbe21fd0a2 ro quiet splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-3.19.0-16-generic N/A
 linux-backports-modules-3.19.0-16-generic  N/A
 linux-firmware 1.143
SourcePackage: linux
UpgradeStatus: Upgraded to vivid on 2015-04-24 (16 days ago)
dmi.bios.date: 03/14/2008
dmi.bios.vendor: Acer
dmi.bios.version: v1.3811
dmi.board.name: Chapala
dmi.board.vendor: Acer, Inc.
dmi.board.version: Not Applicable
dmi.chassis.type: 1
dmi.chassis.vendor: Acer, Inc.
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnAcer:bvrv1.3811:bd03/14/2008:svnAcer,inc.:pnAspire5920:pvrNotApplicable:rvnAcer,Inc.:rnChapala:rvrNotApplicable:cvnAcer,Inc.:ct1:cvrN/A:
dmi.product.name: Aspire 5920
dmi.product.version: Not Applicable
dmi.sys.vendor: Acer, inc.

** Affects: linux (Ubuntu)
 Importance: Low
 Status: Incomplete


** Tags: amd64 apport-bug bios-outdated-3813 vivid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1453542

Title:
  15.04 with 3.19.0-17 kernel boot failure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1453542/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1453302] Re: Linux kernel freeze (it seems in current/3.19.0-17) on Dell Inspiron 1525

2015-05-10 Thread richard jones
I installed the upstream kernel packages on my Acer Aspire 5920 laptop: 
linux-headers-4.1.0-040100rc2-generic_4.1.0-040100rc2.201505032335_amd64.deb
linux-image-4.1.0-040100rc2-generic_4.1.0-040100rc2.201505032335_amd64.deb
The machine booted successfully 3 times with warnings about installed packages 
having unmet dependencies.
uname -r command confirmed that the expected kernel was running: 
4.1.0-040100rc2-generic

Hope that helps. Cheers Richard

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1453302

Title:
  Linux kernel freeze (it seems in current/3.19.0-17) on Dell Inspiron
  1525

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1453302/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1453302] Re: Linux kernel freeze (it seems in current/3.19.0-17) on Dell Inspiron 1525

2015-05-10 Thread richard jones
I think I have the same problem on an Acer Aspire 5920 laptop. The
machine hangs very early in the boot process on Ubuntu
3.19.0-17-generic, but boots successfully using recovery mode, or
booting 3.19.0-16-generic. Let me know if I can provide further info. I
may need detailed instructions. Thanks.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1453302

Title:
  Linux kernel freeze (it seems in current/3.19.0-17) on Dell Inspiron
  1525

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1453302/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1453302] Re: Linux kernel freeze (it seems in current/3.19.0-17) on Dell Inspiron 1525

2015-05-10 Thread richard jones
Additional info. Possibly irrelevant.

Using Firefox I have noticed a screen corruption that seems to occur
after some time idle. The same problem occurred on Ubuntu 14.04. It
suggests to me that somewhere deep in the graphics driver something is
amiss.

To use the Google Chrome browser I have had to un-check 'Use hardware
acceleration when available' to prevent the browser from crashing.

Attached is the dmesg output from a successful boot of 3.19.0-16-generic
which may be helpful. Whether booting successfully or not just before
the grub menu the following is reported: ACPI PCC Probe Failed. This is
apparently benign.



** Attachment added: Output of dmesg command
   
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1453302/+attachment/4394792/+files/dmesg.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1453302

Title:
  Linux kernel freeze (it seems in current/3.19.0-17) on Dell Inspiron
  1525

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1453302/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1444444] Re: virtual machine with ubuntu hangs on boot

2015-04-23 Thread Richard Jones
What's the precise virt-builder command line you are using?

Did you read the `virt-builder --notes ubuntu-xxx' output?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/144

Title:
  virtual machine with ubuntu hangs on boot

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/144/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1433750] Re: Current virt-builder index breaks version 1.26

2015-03-18 Thread Richard Jones
Updating along the stable branch to 1.24.9 is sufficient.

https://bugzilla.redhat.com/show_bug.cgi?id=1194472#c2

** Bug watch added: Red Hat Bugzilla #1194472
   https://bugzilla.redhat.com/show_bug.cgi?id=1194472

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1433750

Title:
  Current virt-builder index breaks version  1.26

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1433750/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1431994] Re: libguestfs fails to build the Go bindings on arm64 and ppc64el

2015-03-15 Thread Richard Jones
Thanks.

I'm now using:

go version go1.4.2 gccgo (GCC) 5.0.0 20150313 (Red Hat 5.0.0-0.19)
linux/arm64

and it compiles and the test suite works fine.  I don't see the bug that
you're seeing on Ubuntu.

Anyway - I will enable golang support in Fedora Rawhide on all
architectures and see how it goes.  This will also help to catch
regressions in future.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1431994

Title:
  libguestfs fails to build the Go bindings on arm64 and ppc64el

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1431994/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1431994] Re: libguestfs fails to build the Go bindings on arm64 and ppc64el

2015-03-14 Thread Richard Jones
Does golang actually exist for aarch64?  I'm trying to compile it but it
just complains about:

go tool dist: unknown architecture: aarch64

On Fedora we have gccgo:

go version go1.4 gccgo (GCC) 5.0.0 20150226 (Red Hat 5.0.0-0.18)
linux/arm64

But it seems we need some other package called 'golang' which doesn't
exist and doesn't compile as above.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1431994

Title:
  libguestfs fails to build the Go bindings on arm64 and ppc64el

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1431994/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1431994] Re: libguestfs fails to build the Go bindings on arm64 and ppc64el

2015-03-14 Thread Richard Jones
OK ignore the previous comment, apparently gcc-go should be enough.  But
as you say it cannot compile the golang bindings on aarch64.  Is there
some guidance about how cgo bindings need to be changed for 1.4?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1431994

Title:
  libguestfs fails to build the Go bindings on arm64 and ppc64el

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1431994/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1417051] Re: bug in dependency resolution while installing libguestfs-tools

2015-02-03 Thread Richard Jones
Which version of libguestfs?

In Debian libguestfs, the zfs dependency has been split out into a
separate package (libguestfs-zfs).  So it's likely that Ubuntu needs to
sync with the Debian package.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1417051

Title:
  bug in dependency resolution while installing libguestfs-tools

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/zfsutils/+bug/1417051/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1053911] Re: libguestfs-tools shouldn't have hard dependency on zfs-fuse daemon

2014-12-30 Thread Richard Jones
It is fixed in the Debian package vrrsion = 1.26. Ubuntu just needs to
import the latest Debian package.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1053911

Title:
  libguestfs-tools shouldn't have hard dependency on zfs-fuse daemon

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1053911/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1368819] Re: libguestfs-tools requires curl, not currently a dependency

2014-09-12 Thread Richard Jones
Tis true.  1.26/1.27 added the following dependencies for virt-builder:

xz
curl
gpg

and for virt-v2v:

gawk
gzip
curl
virsh
strip

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1368819

Title:
  libguestfs-tools requires curl, not currently a dependency

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1368819/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1053911] Re: libguestfs-tools shouldn't have hard dependency on zfs-fuse daemon

2014-05-10 Thread Richard Jones
People following this bug may also be interested in this Debian bug:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=747440

** Bug watch added: Debian Bug tracker #747440
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=747440

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1053911

Title:
  libguestfs-tools shouldn't have hard dependency on zfs-fuse daemon

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1053911/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1053911] Re: libguestfs-tools shouldn't have hard dependency on zfs-fuse daemon

2014-03-31 Thread Richard Jones
This has been essentially solved upstream for a while now.  If Ubuntu
upgrades to libguestfs 1.26 / supermin 5.1.6, then you can split the
dependencies into subpackages.

For further information, see:

https://www.redhat.com/archives/libguestfs/2014-March/msg00171.html
http://rwmj.wordpress.com/2014/02/26/new-in-libguestfs-1-25-38/#content
http://rwmj.wordpress.com/2014/03/20/analysis-of-the-size-of-libguestfs-dependencies/#content
Fedora split: 
http://pkgs.fedoraproject.org/cgit/libguestfs.git/tree/libguestfs.spec?id=be0e44eab5b015b78373c15f07c9cbdb127ebfb1#n858

I'm still waiting on Hilko to include the patch above in the Debian
package, but it certainly worked for me when I tried it.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1053911

Title:
  libguestfs-tools shouldn't have hard dependency on zfs-fuse daemon

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1053911/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1186228] Re: guestmount does not work

2013-12-25 Thread Richard Jones
The kernel permissions problem is an Ubuntu bug
(https://bugs.launchpad.net/ubuntu/+source/linux/+bug/759725).

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to seabios in Ubuntu.
https://bugs.launchpad.net/bugs/1186228

Title:
  guestmount does not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1186228/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1186228] Re: guestmount does not work

2013-12-25 Thread Richard Jones
The kernel permissions problem is an Ubuntu bug
(https://bugs.launchpad.net/ubuntu/+source/linux/+bug/759725).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1186228

Title:
  guestmount does not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1186228/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1186228] Re: guestmount does not work

2013-12-24 Thread Richard Jones
To diagnose this what you have to do:

(1) Run libguestfs-test-tool

It will (presumably) fail.  It will also print out an febootstrap-
supermin-helper command line (or in newer versions, a supermin-helper
command line).  In the comment above, it printed out:

febootstrap-supermin-helper --verbose -f ext2
/usr/lib/guestfs/supermin.d i686 /var/tmp/guestfs.t3yS8p/kernel
/var/tmp/guestfs.t3yS8p/initrd /var/tmp/guestfs.t3yS8p/root

(But note that your command line will be different).

(2) Modify the command line slightly.  The 'kernel', 'initrd', and
'root' options are *output* files.  You want those to be on /var/tmp.
Also add -v -v -v.  So you'd end up with something like:

febootstrap-supermin-helper --verbose -v -v -v -f ext2
/usr/lib/guestfs/supermin.d i686 /var/tmp/kernel /var/tmp/initrd
/var/tmp/root

Run that command and it will print out lots of very detailed debugging
information about what supermin-helper is trying to do.

Most likely (assuming you've not run out of disk space) it's because
there's some symlink or parent directory missing, which you can fix by
adding the right missing directory to /usr/lib/guestfs/supermin.d/00
-missing-dir (see the supermin-helper man page).

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to seabios in Ubuntu.
https://bugs.launchpad.net/bugs/1186228

Title:
  guestmount does not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1186228/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1186228] Re: guestmount does not work

2013-12-24 Thread Richard Jones
For example, you could add a file /usr/lib/guestfs/supermin.d/00
-missing-dir containing two lines:

/
/lib

(assuming /lib was the missing directory)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to seabios in Ubuntu.
https://bugs.launchpad.net/bugs/1186228

Title:
  guestmount does not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1186228/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1186228] Re: guestmount does not work

2013-12-24 Thread Richard Jones
For example, you could add a file /usr/lib/guestfs/supermin.d/00
-missing-dir containing two lines:

/
/lib

(assuming /lib was the missing directory)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1186228

Title:
  guestmount does not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1186228/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1186228] Re: guestmount does not work

2013-12-24 Thread Richard Jones
To diagnose this what you have to do:

(1) Run libguestfs-test-tool

It will (presumably) fail.  It will also print out an febootstrap-
supermin-helper command line (or in newer versions, a supermin-helper
command line).  In the comment above, it printed out:

febootstrap-supermin-helper --verbose -f ext2
/usr/lib/guestfs/supermin.d i686 /var/tmp/guestfs.t3yS8p/kernel
/var/tmp/guestfs.t3yS8p/initrd /var/tmp/guestfs.t3yS8p/root

(But note that your command line will be different).

(2) Modify the command line slightly.  The 'kernel', 'initrd', and
'root' options are *output* files.  You want those to be on /var/tmp.
Also add -v -v -v.  So you'd end up with something like:

febootstrap-supermin-helper --verbose -v -v -v -f ext2
/usr/lib/guestfs/supermin.d i686 /var/tmp/kernel /var/tmp/initrd
/var/tmp/root

Run that command and it will print out lots of very detailed debugging
information about what supermin-helper is trying to do.

Most likely (assuming you've not run out of disk space) it's because
there's some symlink or parent directory missing, which you can fix by
adding the right missing directory to /usr/lib/guestfs/supermin.d/00
-missing-dir (see the supermin-helper man page).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1186228

Title:
  guestmount does not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1186228/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1053911] Re: libguestfs-tools shouldn't have hard dependency on zfs-fuse daemon

2013-12-12 Thread Richard Jones
Although you can force install stuff, it would be better to drop the
zfs-fuse dependency from the Debian/Ubuntu package.  You will lose some
functionality (the ability to handle ZFS disks).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1053911

Title:
  libguestfs-tools shouldn't have hard dependency on zfs-fuse daemon

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1053911/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1243190] Re: Failed to connect to virtio-serial channel

2013-12-08 Thread Richard Jones
The libguestfs-test-tool output (comment 25) looks fine to me.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1243190

Title:
  Failed to connect to virtio-serial channel

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1243190/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1243190] Re: Failed to connect to virtio-serial channel

2013-11-19 Thread Richard Jones
This doesn't look happy.  If configure and/or autogen.sh are not
executable, it seems to indicate that permissions got badly screwed up
somewhere along the way :-(  Also the *.sh scripts mentioned in comment
18 ought to be executable.  If they're not, it would explain why the
tests completely fail like that.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1243190

Title:
  Failed to connect to virtio-serial channel

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1243190/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1243190] Re: Failed to connect to virtio-serial channel

2013-10-30 Thread Richard Jones
BTW 1.22.7 upstream doesn't contain commit 
ec6f9ee542e0e9ad0109a7522e83ea07b2f8a002
which is the fix for this bug, unless it has been added separately in
the Debian package.

I'd prefer everyone switched to 1.24 :-)

I'm also worried that 1.23.33 may not contain a fix for CVE-2013-4419
http://libguestfs.org/guestfs.3.html#cve-2013-4419
(Upstream 1.23.33 certainly doesn't, but you may have added it as a patch).


** CVE added: http://www.cve.mitre.org/cgi-
bin/cvename.cgi?name=2013-4419

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1243190

Title:
  Failed to connect to virtio-serial channel

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1243190/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1243190] Re: Broken libguestfs package in sauce

2013-10-22 Thread Richard Jones
OK, 1.22.4.  I'm fairly sure that's the patch that would fix this.

Also note that 1.22.4 is vulnerable to at least one, possibly two CVEs.
Would advise updating to 1.22.7, and ideally to 1.24.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1243190

Title:
  Broken libguestfs package in sauce

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1243190/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1243190] Re: Broken libguestfs package in sauce

2013-10-22 Thread Richard Jones
Which version of libguestfs is this?

I'm fairly sure that you want this patch:
https://github.com/libguestfs/libguestfs/commit/ec6f9ee542e0e9ad0109a7522e83ea07b2f8a002

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1243190

Title:
  Broken libguestfs package in sauce

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1243190/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1174654] Re: qemu-system-x86_64 takes 100% CPU after host machine resumed from suspend to ram

2013-07-31 Thread Richard Jones
** Description changed:

  I have Windows XP SP3  inside qemu VM. All works fine in 12.10. But
  after upgraiding to 13.04 i have to restart the VM each time i resuming
  my host machine, because qemu process starts to take CPU cycles and OS
  inside VM is very slow and sluggish. However it's still controllable and
  could be shutdown by itself.
  
  According to the taskmgr any active process takes 99% CPU. It's not
- stucked on some single process.
+ stuck on some single process.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu in Ubuntu.
https://bugs.launchpad.net/bugs/1174654

Title:
  qemu-system-x86_64 takes 100% CPU after host machine resumed from
  suspend to ram

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1174654/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1174654] Re: qemu-system-x86_64 takes 100% CPU after host machine resumed from suspend to ram

2013-07-31 Thread Richard Jones
** Description changed:

  I have Windows XP SP3  inside qemu VM. All works fine in 12.10. But
  after upgraiding to 13.04 i have to restart the VM each time i resuming
  my host machine, because qemu process starts to take CPU cycles and OS
  inside VM is very slow and sluggish. However it's still controllable and
  could be shutdown by itself.
  
  According to the taskmgr any active process takes 99% CPU. It's not
- stucked on some single process.
+ stuck on some single process.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1174654

Title:
  qemu-system-x86_64 takes 100% CPU after host machine resumed from
  suspend to ram

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1174654/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1186228] Re: guestmount does not work

2013-05-31 Thread Richard Jones
 febootstrap-supermin-helper: ext2: parent directory not found: /lib:
File not found by ext2_lookup

This error usually indicates that you've run out of disk space on the
host.  What is the output of:

  df -h /var/tmp


** Bug watch added: Red Hat Bugzilla #965524
   https://bugzilla.redhat.com/show_bug.cgi?id=965524

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1186228

Title:
  guestmount does not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1186228/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1186228] Re: guestmount does not work

2013-05-31 Thread Richard Jones
.. which, if it is that, then it's related to this upstream bug:
https://bugzilla.redhat.com/show_bug.cgi?id=965524

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1186228

Title:
  guestmount does not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libguestfs/+bug/1186228/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1010418] [NEW] system not displaying incomming Skype video

2012-06-08 Thread Richard Jones
Public bug reported:

Skype 2.2.0.35, Operating System Ubuntu 12.04 LTS; Not displaying
incomming video. Displays outgoing video, tried all tick boxes in
options. dmesg says 'Skype is using obsolete setsockopt SO_BSDCOMPAT.
Help?

** Affects: skype (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1010418

Title:
  system not displaying incomming  Skype video

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/skype/+bug/1010418/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 541595] Re: [Master] package failed to install/upgrade: package is already installed and configured

2012-06-07 Thread Richard Jones
Ok. so what do I do about this?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/541595

Title:
  [Master] package failed to install/upgrade: package is already
  installed and configured

To manage notifications about this bug go to:
https://bugs.launchpad.net/dpkg/+bug/541595/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 541595] Re: [Master] package failed to install/upgrade: package is already installed and configured

2012-06-07 Thread Richard Jones
Solved using the following terminal commands:
 sudo apt-get clean all
 sudo apt-get update
 sudo apt-get -f install
 sudo apt-get autoremove

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/541595

Title:
  [Master] package failed to install/upgrade: package is already
  installed and configured

To manage notifications about this bug go to:
https://bugs.launchpad.net/dpkg/+bug/541595/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 878249] [NEW] package nautilus-data 1:2.32.2.1-0ubuntu13 failed to install/upgrade: ErrorMessage: package nautilus-data is already installed and configured

2011-10-19 Thread Richard Jones
Public bug reported:

Package failed to install on upgrade from 11.04 to 12.04 (System Info'
described as Ubuntu 11.10)

currently Ubuntu Software Centre does not operate - gives error messages
and does not repair.

ProblemType: Package
DistroRelease: Ubuntu 11.10
Package: nautilus-data 1:2.32.2.1-0ubuntu13
ProcVersionSignature: Ubuntu 2.6.38-11.50-generic 2.6.38.8
Uname: Linux 2.6.38-11-generic i686
ApportVersion: 1.23-0ubuntu3
Architecture: i386
Date: Tue Oct 18 15:44:43 2011
ErrorMessage: ErrorMessage: package nautilus-data is already installed and 
configured
PackageArchitecture: all
SourcePackage: dpkg
Title: package nautilus-data 1:2.32.2.1-0ubuntu13 failed to install/upgrade: 
ErrorMessage: package nautilus-data is already installed and configured
UpgradeStatus: Upgraded to oneiric on 2011-10-18 (0 days ago)

** Affects: dpkg (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 oneiric

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/878249

Title:
  package nautilus-data 1:2.32.2.1-0ubuntu13 failed to install/upgrade:
  ErrorMessage: package nautilus-data is already installed and
  configured

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dpkg/+bug/878249/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 878249] Re: package nautilus-data 1:2.32.2.1-0ubuntu13 failed to install/upgrade: ErrorMessage: package nautilus-data is already installed and configured

2011-10-19 Thread Richard Jones
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/878249

Title:
  package nautilus-data 1:2.32.2.1-0ubuntu13 failed to install/upgrade:
  ErrorMessage: package nautilus-data is already installed and
  configured

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dpkg/+bug/878249/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 324451] Re: gcalctool returns wrong answer, drops '0'

2009-02-21 Thread Richard Jones
Many thanks for looking at this bug Christophe,

I'm not quite sure what you mean 'by instance on a virtual machine'
I have ubuntu 8.04.2 installed at home which also shows the bug.
Maybe you could point me to the exact downloads that you wish me to perform
to achieve the test that you suggest and I'll get it sorted. Meanwhile I'll
download 9.04 i386 iso and try that on a spare drive.

Cheers

Richard

On Sat, 21 Feb 2009 09:50:46 -, Christophe Sauthier \(huats\)
christophe.sauth...@gmail.com wrote:
 Can you try the development version of Ubuntu (jaunty) by instance on a
 virtual machine (anyway not on your production or every day computer
 since it is still in development), and let us know if you still
 encounter that ?
 


-- 
gcalctool returns wrong answer, drops '0'
https://bugs.launchpad.net/bugs/324451
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 324451] Re: gcalctool returns wrong answer, drops '0'

2009-02-21 Thread Richard Jones
To check that this bug was fixed:
I downloaded Ubuntu jaunty (development branch) 9.04 i386.iso
Installed in NZ timezone US keyboard.
Test cases
Help About reports gcalctool 5.25.5
30*60=1800 pass selecting 0,9 significant places and show trailing zeros
Download most recent gcalctool
Help About reports gcalctool 5.25.91
30*60=1800 pass on all selections 0-9 significant places and show trailing zeros
1011- 651 = 360 pass on all selections 0-9 significant places and show trailing 
zeros
This bug appears to be fixed in the 9.04 development branch.
Let me know if there is more to do.
Thanks

-- 
gcalctool returns wrong answer, drops '0'
https://bugs.launchpad.net/bugs/324451
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 324451] Re: gcalctool returns wrong answer, drops '0'

2009-02-17 Thread Richard Jones
I think I can re-create this bug by selecting 'Acc' '0 significant places' in 
scientific view.
1011- 651 = 36 Wrong
selecting 'Acc' '9 significant places corrects the answer to 360
30 * 60 = 1800 correct
select 'Acc' '0 significant places' changes the answer immediately to 18 
(wrong) without recalculation.
tick 'Show Trailing Zeros' changes 18 to 1800 (correct) again without 
re-calculation.
gcalctool 5.7.32 does not appear to have this bug

-- 
gcalctool returns wrong answer, drops '0'
https://bugs.launchpad.net/bugs/324451
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 324451] Re: gcalctool returns wrong answer, drops '0'

2009-02-17 Thread Richard Jones
Sorry. Version details were in my duplicate bug report.
Version with bug is gcalctool 5.24.1 using ubuntu 8.10 i386
In scientific view I have 'Degrees', 'Dec' and 'Fix' selected.
System-Administration-System monitor the command line field shows 'gcalctool'.

-- 
gcalctool returns wrong answer, drops '0'
https://bugs.launchpad.net/bugs/324451
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 330216] [NEW] Std install basic view, 30*60=18, Fixed acc Reset to Default

2009-02-16 Thread Richard Jones
Public bug reported:

Binary package hint: gcalctool

Description:Ubuntu 8.10
Release:8.10
gcalctool:
  Installed: 5.24.1-0ubuntu1
  Candidate: 5.24.1-0ubuntu1
  Version table:
 *** 5.24.1-0ubuntu1 0
500 http://nz.archive.ubuntu.com intrepid/main Packages
100 /var/lib/dpkg/status
On startup in Basic view 30*60=18, expected 1800
Using scientific view Acc, Reset to Default fixes the problem for the session, 
but it sometimes reverts to 30*60=18 when opening a new calculator, but 
sometimes it starts correctly and 30*60=1800.
CPU us a quad core:
[0.612574] CPU3: Intel(R) Core(TM)2 Quad CPUQ6600  @ 2.40GHz stepping 0b
[0.612588] checking TSC synchronization [CPU#0 - CPU#3]: passed.
[0.616038] Brought up 4 CPUs
[0.616064] CPU0 attaching sched-domain:
[0.616078]   domain 1: span 0-3 level CPU
[0.616085] CPU1 attaching sched-domain:
[0.616091]   domain 1: span 0-3 level CPU
[0.616097] CPU2 attaching sched-domain:
[0.616103]   domain 1: span 0-3 level CPU
[0.616109] CPU3 attaching sched-domain:
[0.616115]   domain 1: span 0-3 level CPU
[1.188847] Switched to high resolution mode on CPU 2
[1.191719] Switched to high resolution mode on CPU 3
[1.192035] Switched to high resolution mode on CPU 1
[1.192232] Switched to high resolution mode on CPU 0
[1.861733] ACPI: Processor [CPU0] (supports 8 throttling states)
[1.861980] ACPI: Processor [CPU1] (supports 8 throttling states)
[1.862203] ACPI: Processor [CPU2] (supports 8 throttling states)
[1.862423] ACPI: Processor [CPU3] (supports 8 throttling states)

ProblemType: Bug
Architecture: i386
DistroRelease: Ubuntu 8.10
ExecutablePath: /usr/bin/gcalctool
Package: gcalctool 5.24.1-0ubuntu1
ProcEnviron:
 
PATH=/home/username/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=en_NZ.UTF-8
 SHELL=/bin/bash
SourcePackage: gcalctool
Uname: Linux 2.6.27-11-generic i686

** Affects: gcalctool (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug

-- 
Std install basic view, 30*60=18, Fixed acc Reset to Default
https://bugs.launchpad.net/bugs/330216
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 330216] Re: Std install basic view, 30*60=18, Fixed acc Reset to Default

2009-02-16 Thread Richard Jones

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/22700607/Dependencies.txt

** Attachment added: ProcMaps.txt
   http://launchpadlibrarian.net/22700608/ProcMaps.txt

** Attachment added: ProcStatus.txt
   http://launchpadlibrarian.net/22700609/ProcStatus.txt

-- 
Std install basic view, 30*60=18, Fixed acc Reset to Default
https://bugs.launchpad.net/bugs/330216
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 90678] 'dvbnet -help' and 'dvbnet --help' segfaults

2007-03-08 Thread Richard Jones
Public bug reported:

When invoked from the command line 'dvbnet -help' and 'dvbnet --help'
segfaults and creates a core dump.

ProblemType: Crash
Architecture: i386
CrashCounter: 1
Date: Fri Mar  9 08:03:01 2007
DistroRelease: Ubuntu 7.04
ExecutablePath: /usr/bin/dvbnet
Package: dvb-utils 1.1.1-2
PackageArchitecture: i386
ProcCmdline: dvbnet --help
ProcCwd: /home/richard
ProcEnviron:
 SHELL=/bin/bash
 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=en_NZ.UTF-8
Signal: 11
SourcePackage: linuxtv-dvb-apps
StacktraceTop:
 strlen () from /lib/tls/i686/cmov/libc.so.6
 vfprintf () from /lib/tls/i686/cmov/libc.so.6
 ?? () from /lib/tls/i686/cmov/libc.so.6
 ?? ()
 _IO_stdin_used ()
Uname: Linux SatelliteRx 2.6.20-9-generic #2 SMP Mon Feb 26 03:01:44 UTC 2007 
i686 GNU/Linux
UserGroups: adm admin audio cdrom dialout dip floppy lpadmin netdev plugdev 
powerdev scanner video

** Affects: linuxtv-dvb-apps (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
'dvbnet -help' and 'dvbnet --help' segfaults
https://launchpad.net/bugs/90678

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 90678] Re: 'dvbnet -help' and 'dvbnet --help' segfaults

2007-03-08 Thread Richard Jones

** Attachment added: CoreDump.gz
   http://librarian.launchpad.net/6691813/CoreDump.gz

** Attachment added: Dependencies.txt
   http://librarian.launchpad.net/6691814/Dependencies.txt

** Attachment added: Disassembly.txt
   http://librarian.launchpad.net/6691815/Disassembly.txt

** Attachment added: ProcMaps.txt
   http://librarian.launchpad.net/6691816/ProcMaps.txt

** Attachment added: ProcStatus.txt
   http://librarian.launchpad.net/6691817/ProcStatus.txt

** Attachment added: Registers.txt
   http://librarian.launchpad.net/6691818/Registers.txt

** Attachment added: Stacktrace.txt
   http://librarian.launchpad.net/6691819/Stacktrace.txt

** Attachment added: ThreadStacktrace.txt
   http://librarian.launchpad.net/6691820/ThreadStacktrace.txt

-- 
'dvbnet -help' and 'dvbnet --help' segfaults
https://launchpad.net/bugs/90678

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs