Displaying 20 results from an estimated 11000 matches similar to: "Can I update a specific package with virt-customize/virt-sysprep"
2016 Sep 09
2
DNF update
On Fri, 9 Sep 2016, Always Learning wrote:
>
> On Thu, 2016-09-08 at 23:22 +0100, J Martin Rushton wrote:
>
>> Under Fedora23 issuing a yum command gets you a warning, then it
>> automatically runs the appropriate dnf command.
>
> Can you tell us the DNF for:-
>
> yum update
> yum groupinstall
> yum reinstall
> yum erase
DNF isn't used on CentOS.
2016 Feb 15
3
glib2 head file error when build libvirt with wireshark support
I compile the latest libvirt from fedora rawhide, but failed.
The version of my software:
wireshark-devel-2.0.1-2.fc24.x86_64
glib2-2.47.5-2.fc24.x86_64
gcc-5.1.1-4.fc23.x86_64
binutils-2.26-10.fc24.x86_64
The error as following:
# ./autogen.sh --prefix=/usr && make
.....
wireshark/src/plugin.c:5:21: fatal error: gmodule.h: No such file or directory
compilation terminated.
Makefile:2442:
2014 Aug 19
2
Using virt-sysprep and virt-customize with LXC containers: is it possible?
I'm setting up a system to run LXC containers with ZFS on Linux (Ubuntu
14.04). I intend to set up a base image which I'd like to clone to create
other containers from. virt-sysprep and virt-customize seem ideal for the
task: I obviously could mount and work with the rootfs from each container
directly, but the libguestfs tools have a bunch of pre-existing recipes
that would surely be much
2015 Aug 04
1
[PATCH] customize: Make dnf upgrade to the latest versions of packages.
I discovered that 'dnf upgrade' doesn't actually upgrade to the latest
versions of packages unless you also supply the '--best' flag.
This also changes update -> upgrade, since apparently 'dnf update'
is deprecated.
---
customize/customize_run.ml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/customize/customize_run.ml
2017 Jan 11
2
Finding the run script to execute virt-sysprep or other commands
Hi ,
I have downloaded the tar file of libguestfs. There is a run.in
file , is this the script described in README file which I have to run to
get started without installing the libguestfs ?
Thank you ,
Aditya S
2015 Aug 27
1
[PATCH] customize: Use setarch when running commands on i686 guest (RHBZ#1256405).
When running (eg) dnf on a 32 bit i686 guest when the host is 64 bit
x86_64, dnf believes it is running on a 64 bit machine and so tries to
install x86_64 packages. We can 'trick' dnf into believing it's a 32
bit machine using the setarch program.
$ virt-builder fedora-22 --arch i686 --install 'gperf'
...
[ 27.4] Installing packages: gperf
...
Running transaction test
Error:
2015 Aug 27
1
[PATCH v2] customize: Use setarch when running commands on i686 guest
v2: Fix problem when running multiple commands.
2016 Jul 21
1
[PATCH] customize: use --noconfirm when installing Arch Linux packages
Otherwise the installation will fail right away, since pacman by default
asks for confirmation of the operation.
---
customize/customize_run.ml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/customize/customize_run.ml b/customize/customize_run.ml
index 6f0d615..3e759a2 100644
--- a/customize/customize_run.ml
+++ b/customize/customize_run.ml
@@ -117,7 +117,7 @@ exec >>%s
2017 Jan 11
1
Re: Finding the run script to execute virt-sysprep or other commands
Hi ,
I have installed the libguestfs-1.35.19 after running ./configure
it says
configure: error: supermin >= 5.1 must be installed, your version is
too old
but ubuntu14.04 trusty has the latest version as 4.1.6-1 as
given here https://launchpad.net/ubuntu/+source/supermin
The configure as a result was not successful and the run file not
generated yet.
2014 Dec 05
3
[PATCH] customize, sysprep: add a short SELinux note
Add a short paragraph about SELinux, mostly to point to the
documentation about it provided in the documentation of virt-builder.
---
customize/virt-customize.pod | 8 ++++++++
sysprep/virt-sysprep.pod | 8 ++++++++
2 files changed, 16 insertions(+)
diff --git a/customize/virt-customize.pod b/customize/virt-customize.pod
index a666be7..8dbdfef 100644
--- a/customize/virt-customize.pod
+++
2015 Nov 10
0
[PATCH] customize, dib, resize, sysprep: Use 'may' pattern in various places.
---
customize/customize_main.ml | 5 ++---
dib/dib.ml | 5 ++---
resize/resize.ml | 13 ++-----------
sysprep/sysprep_operation.ml | 5 +----
4 files changed, 7 insertions(+), 21 deletions(-)
diff --git a/customize/customize_main.ml b/customize/customize_main.ml
index e161e82..13d40bc 100644
--- a/customize/customize_main.ml
+++ b/customize/customize_main.ml
@@
2012 Aug 16
5
[PATCH 0/4] Add customization capabilities to virt-sysprep
In the TODO file there's a discussion of perhaps writing a new
'virt-customize' tool. I think it's probably better (or at any rate,
easier) to just add this functionality into virt-sysprep. That is
what this small series of patches aims to achieve.
Note these are not very well tested at the moment.
The first patch adds a generic and useful '--firstboot' flag. The
2018 Feb 12
0
[PATCH] customize, sysprep, v2v: handle Kali Linux as Debian
Kali Linux is a Debian derivative, so add basic support for it by using
most of the Debian code paths. The only exception is the crypto
algorithm for passwords in passwd, which is always assumed as SHA512
(as Kali Linux is relatively new).
---
customize/firstboot.ml | 2 +-
customize/hostname.ml | 2 +-
customize/password.ml | 2 +-
2017 Mar 14
2
Re: virt-customize fail to inject firstboot script when running it from script.
Figured it out.
The generated script had CRLF line termination. When we have removed the \r from the end if line everything started to work.
Thanks for the help.
Regards,
Peter
> On 14 Mar 2017, at 17:00, Richard W.M. Jones <rjones@redhat.com> wrote:
>
> On Tue, Mar 14, 2017 at 04:46:41PM +0200, Keresztes Péter-Zoltán wrote:
>> We are enforcing #!/bin/bash at the beginning
2016 Jun 07
1
[PATCH] customize: Add --uninstall operation.
---
customize/customize_run.ml | 30 ++++++++++++++++++++++++++++++
generator/customize.ml | 17 +++++++++++++++--
2 files changed, 45 insertions(+), 2 deletions(-)
diff --git a/customize/customize_run.ml b/customize/customize_run.ml
index c9d9d7d..b2506d1 100644
--- a/customize/customize_run.ml
+++ b/customize/customize_run.ml
@@ -151,6 +151,31 @@ exec >>%s 2>&1
| pm ->
2017 Mar 14
2
Re: virt-customize fail to inject firstboot script when running it from script.
We are enforcing #!/bin/bash at the beginning of the scripts and bash is installed in every guest.
Regards,
Peter
2017. márc. 14. dátummal, 16:14 időpontban Richard W.M. Jones <rjones@redhat.com> írta:
>> On Tue, Mar 14, 2017 at 03:45:34PM +0200, Keresztes Péter-Zoltán wrote:
>> I am running libguestfs version 1.34.2
>
> As far as I know, this version should contain
2012 Feb 29
1
[PATCH] virt-sysprep: add the hostname and net_hwaddr support for rhel
Add the support for rhel.
Change the hostname and delete the HWADDR for rhel.
Signed-off-by: Wanlong Gao <gaowanlong at cn.fujitsu.com>
---
clone/virt-sysprep.in | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/clone/virt-sysprep.in b/clone/virt-sysprep.in
index 833a31d..d505532 100644
--- a/clone/virt-sysprep.in
+++ b/clone/virt-sysprep.in
@@ -273,7 +273,7 @@ fi
2014 Jan 07
0
Re: Issue with virt-sysprep
On Tue, Jan 07, 2014 at 10:06:16AM +0000, Graeme Lambert wrote:
> Hi,
>
> I'm trying to run virt-sysprep against a disk in Ceph RBD storage
> but I appear to be unable to do so.
>
> The commands (bold) and outputs I've had are:
>
> On Ceph node:
> *virt-sysprep -a rbd://localhost/libvirt-pool/ubuntu-12-04-beanstalk001*
> libguestfs: new guestfs handle
2014 Jan 21
0
virt-builder & virt-sysprep: Avoiding SELinux relabelling
On Tue, 21 Jan 2014, Richard W.M. Jones wrote:
> A common problem that people have with virt-builder and virt-sysprep
> is which guests that use SELinux, like Fedora and RHEL. In both cases
> we touch /.autorelabel in the guest, which means the guest has to
> reboot once during its first boot.
... snip much analysis ...
> (4) It can touch '/.autorelabel' which causes an
2016 Oct 07
1
Re: Quick question regarding the "--firstboot" parameter within virt-sysprep
On Fri, Oct 07, 2016 at 04:42:21PM -0400, Charlie Drage wrote:
> I apologize if this is not the appropriate place to contact you..
Adding the mailing list.
> Got a weird issue!
>
> So when I use --firstboot via virt-sysprep on a host, it's totally fine.
>
> However..
>
> In this scenario:
> 1. virt-sysprep an offline image
> 2. transfer said image from one