search for: debirf

Displaying 18 results from an estimated 18 matches for "debirf".

Did you mean: debian
2009 Jul 08
1
fedoostrap or deboostrap requirement
Hi, While trying to ./configure libguestfs on gentoo fails since it requires feboostrap or deboostrap Can this be made optional and not as necessary requirement, since there are still many useful uses for libguestfs besides bootstrapping, which can be used on distros like gentoo. Thanks Alex
2009 Jul 30
2
Re: error when compiling libguestfs on Ubuntu 9.04
> Install debian-archive-keyring: > > http://packages.debian.org/sid/debian-archive-keyring > > Debirf wants to pass it to debootstrap for verification. The other > possibility is to try to build an Ubuntu based appliance instead of a > Debian based one with: > > /configure --with-repo=karmic --with-mirror=<your_ubuntu_mirror> Hi, I just got the same issue, and tried your advices...
2010 May 20
1
[PATCH ubuntu repost] Ubuntu: Revert install-kernel to debirf default script.
...ml_on_red_hat_and_fedora -------------- next part -------------- >From 88fa32d2cfff312ab976a5677467b87f0bd85aa9 Mon Sep 17 00:00:00 2001 From: Richard Jones <rjones at ubuntu910x64.home.annexia.org> Date: Mon, 21 Dec 2009 15:50:59 +0000 Subject: [PATCH 1/5] Ubuntu: Revert install-kernel to debirf default script. --- appliance/Makefile.am | 1 + appliance/debian/modules/install-kernel | 1 + appliance/debian/modules/install_kernel | 68 ------------------------------- 3 files changed, 2 insertions(+), 68 deletions(-) create mode 120000 appliance/debian/modules/in...
2009 Nov 04
3
[PATCH x 3] Three small fixes for Debian
These small fixes are required to fix the build and tests on Debian (using the debootstrap/debirf appliance). There is currently another bug in the Debian tests which I'm looking into. hexdump always fails as follows: libguestfs: error: hexdump: hexdump: /test123: hexdump: /sysroot/test123: Bad file descriptor Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat....
2010 Nov 05
2
Debian based appliance
Hi, just a short heads up about the current status of libguestfs on Debian: Current git master builds and works fine on Debian sid. The only change you have to make is to use a custom kernel instead of the one in squeeze/sid by pointing DEBIRF_KERNEL_PACKAGE in appliance/debian/debirf.conf to something recent enough (>= 2.6.35) like: DEBIRF_KERNEL_PACKAGE=/foo/linux-image-2.6.36-rc7+_2.6.36-rc7+-20_i386.deb Otherwise libguesfsd quits early since the virtio-serial device won't be created in the guest. Cheers, -- Guido
2009 Jul 24
1
Re: error when compiling libguestfs on Ubuntu 9.04
...ra-11.i686': No such file or directory > make[2]: [../initramfs/fakeroot.log] Error 1 (ignored) > if ! bash make.sh; then rm -f ../initramfs/fakeroot.log; exit 1; fi > + '[' DEBIAN = REDHAT ']' > + '[' DEBIAN = DEBIAN ']' > + cd ../appliance > + debirf make -n debian > Loading profile 'debian'... > Cannot read keyring '/usr/share/keyrings/debian-archive-keyring.gpg' > for debootstrap verification. > make[2]: *** [../initramfs/fakeroot.log] Error 1 > make[2]: Leaving directory > `/home/quynh/projects/libguestfs/li...
2009 Dec 21
4
libguestfs on Ubuntu
...ME file and install the long list of dependencies, all of which are in the Ubuntu repositories. http://git.annexia.org/?p=libguestfs.git;a=summary http://libguestfs.org/README.txt (2) I'm going to post patches as follow-ups to this email, of which most/all will be required. (3) You will need debirf 0.25. I installed it from: http://gb.archive.ubuntu.com/ubuntu/pool/universe/d/debirf/ (4) This is how I'm configuring: ./autogen.sh \ --with-readline \ --with-repo=karmic \ --with-mirror=http://gb.archive.ubuntu.com/ubuntu/ \ --enable-debug-command (5) make (6) 'make check...
2010 Oct 23
1
[PATCH] Make appliance-building work on systems with default library search paths differing from the appliance's
...k to... but in the appliance's lib/, 64-bit libraries are found in lib64! To work around this for good, explicitly set LD_LIBRARY_PATH appropriately for the bitness of the current environment (and, technically, for the distro of the appliance we're building, but that just means a change to debirf is needed as well: this fix only handles Fedora- appliance-on-Debian/Ubuntu-system, not vice versa). (Note: it is quite possible that this is better implemented inside febootstrap: but it works here.) --- appliance/make.sh.in | 63 +++++++++++++++++++++++++++++++++++-------------- 1 files chang...
2010 May 20
1
[PATCH ubuntu repost] Ubuntu: Use apt-get instead of aptitude when installing guestfsd.
Previously posted here: http://www.redhat.com/archives/libguestfs/2009-December/msg00041.html I can't get aptitude to work under debirf (not on Ubuntu anyway), so using apt-get is necessary for me. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones virt-df lists disk usage of guests without needing to install any software inside the virtual machine. Supports Linux and Windows. http://et.redha...
2010 May 20
1
[PATCH ubuntu] ubuntu: Remove two FUSE packages from the default list.
...f packages which were missing in Ubuntu Karmic. However with the patch I just posted: https://www.redhat.com/archives/libguestfs/2010-May/msg00132.html we don't need to remove packages just because they are missing. But there is still one package which is present but doesn't install under debirf, 'fuse-utils', which is a dep of ntfs-3g and zfs-fuse. Therefore this patch removes these two packages from the list. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones virt-p2v converts physical machines to virtual machines. Boot with a live CD or ov...
2011 Nov 02
1
Building PXE Bootable images using the libguestfs toolchain
As part of the oVirt Node[1] project, I'm going to P.O.C. a version of the node using febootstrap 2.x instead of livecd-creator. The main reasons in doing this is for allowing a r/w root filesystem without some hacky overlayfs and just to see if it can be done. On IRC, rwmjones mentioned a few issues he ran into with febootstrap 2.x where some rpms had %post scripts which aren't really
2010 Aug 26
4
[REPOST] guestfsd core capture, and virt-rescue clean shutdown
This is a repost of a previously posted set. It's been updated following review comments. [PATCH 1/4] Add a core_pattern debug command Added missing return statements. [PATCH 2/4] Call sync after guestfsd exits Remove redundant sleep 1; sync [PATCH 3/4] Shut down the appliance cleanly [PATCH 4/4] Ignore launch() error in virt-rescue These were previously 2 patches. They are otherwise
2010 Aug 03
3
Generate coredumps of the guestfs appliance
[PATCH 1/3] Add a core_pattern debug command The first patch is just a rework of Rich's earlier core dump patch. It turns it into a debug subcommand so it can be called at any time. This also has the advantage of explicitly labelling an extremely untidy API as debug. [PATCH 2/3] Call sync after guestfsd exits The second patch seems to be required for cores to be dumped reliably. I was able to
2010 Sep 21
1
[PATCH] Fix appliance build dependency problem
...+ b/appliance/make.sh.in @@ -168,10 +168,6 @@ __EOF__ ls -lh $koutput - # Now directly run the update script to copy/update the daemon in the - # initramfs. - cd appliance && bash update.sh - elif [ "@DIST@" = "DEBIAN" ]; then cd @top_builddir@/appliance debirf make -n debian -- 1.7.2.3
2010 Dec 04
2
Rethinking appliance building
...--------+ +--------------------------+ | list of | ========> | calculate supermin | | packages | | base image and hostfiles | +------------------+ +--------------------------+ This completely eliminates fakeroot, fakechroot, {fe,de}bootstrap, debirf from the equation, and means that we can support any packaging system provided it supports some set of basic operations like downloading packages and listing files from packages. The details are more complex (only a little), but I have reimplemented febootstrap as a general cross-distro supermin a...
2009 Aug 05
1
syntax-check changes
...rf $(top_builddir)/initramfs - diff --git a/appliance/debian/modules/y0_install-guestfsd b/appliance/debian/modules/y0_install-guestfsd index 17bbbdc..c95e4f0 100755 --- a/appliance/debian/modules/y0_install-guestfsd +++ b/appliance/debian/modules/y0_install-guestfsd @@ -30,4 +30,3 @@ rm -rf "$DEBIRF_ROOT"/usr/share/man/ echo $PWD install -o root -g root -m 0755 ../daemon/guestfsd "$DEBIRF_ROOT"/sbin/guestfsd install -o root -g root -m 0755 init "$DEBIRF_ROOT"/sbin/init - diff --git a/appliance/make.sh.in b/appliance/make.sh.in index a132ed8..d76c961 100755 --- a/app...
2010 Sep 21
1
Proposed timetable for libguestfs 1.6
...Check for virtio-serial support in qemu. 9cab7e3 pardus: Check for cpio in configure. 17b50a3 Update Spanish translation (RHBZ#633357). a403e74 build: Add run-test-tool-locally to EXTRA_DIST. 2b1e36d Version 1.5.13. 7419335 appliance: Disable setting scheduler to noop. 3deebe5 ubuntu: Remove bogus debirf file. 75f0a92 ubuntu: Add linux-image to the packagelist. 93ae3fa ubuntu: /proc can be a symlink da107cf build: 'make quickcheck' rule now uses new run-test-tool-locally script. 9f653ed build: hivex is required. f565e71 Version 1.5.12. e903739 build: require Augeas for library. 67fd3a7 gene...
2009 Aug 03
1
[PATCH 1/2] Convert all TABs-as-indentation to spaces.
...echroot],[fakechroot],[no]) + [fakechroot],[fakechroot],[no]) test "x$FAKECHROOT" = "xno" && \ AC_MSG_ERROR([fakechroot must be installed]) @@ -184,9 +184,9 @@ if test "x$FEBOOTSTRAP" != "xno"; then else # check for debootstrap and debirf AC_CHECK_PROG([DEBOOTSTRAP], - [debootstrap],[debootstrap],[no]) + [debootstrap],[debootstrap],[no]) test "x$DEBOOTSTRAP" = "xno" && \ - AC_MSG_ERROR([Either febootstrap or debootstrap must be installed]) + AC_MSG_ERROR([Either febootstrap or debootst...