similar to: Question, how to coorelate snapshot ID's to the files that they represent?

Displaying 20 results from an estimated 100 matches similar to: "Question, how to coorelate snapshot ID's to the files that they represent?"

2013 May 30
0
Re: Question, how to coorelate snapshot ID's to the files that they represent?
On 05/30/13 17:33, vonNieda, Adam (USMS) wrote:> Hi folks, first post J > > I’m running Redhat 6 x64 with ibvirt-0.10.2-18 and > qemu-img-rhev-0.12.1.2-2.355 > > My question is, if I do something like the following.. > > [root@testbox ~]# virsh snapshot-list STIGtest > > Name Creation Time State > >
2013 Jun 25
2
Re: snapshot-create-as for a single disk not all disks
Thanks for you reply! Firstly, I'm very sorry I forgot introduce the scenarios in my experiments. Supposing a case, I have a virtual machine with two disks. One is mounted as a root partition and the other is data partition and the second disk is an iscsi lun, that is to say, not a local disk or image. Now the result wanted is that creating a snapshot for the root disk but not for the data
2013 Jun 26
2
Re: snapshot-create-as for a single disk not all disks
try snapshot-create-as like below: virsh snapshot-create-as vm --disk-only --diskspec "vda,snapshot=external" 2013/6/25 cmcc.dylan <dx10years@126.com> > > Hi, everyone, > I have found the API snapshotCreateXML() can create a snapshot for a > virtual machine, and the xml configuration file - snapshot.xml as folllows: > <domainsnapshot> >
2013 Sep 13
3
Regarding libvirt usage
Hi Team, I am using libvirt module to retrieve configuration of the virtual machines, Can you please tell me how to retrieve the disk space of the Virtual machines. In my KVM hyper i am running two virtual machines. Regards Manzoor
2013 Jun 22
2
snapshot-create-as for a single disk not all disks
Hi everyone! Is there any way to create snaphot for a single disk of a virtual machine. As I konw, "virsh snapshot-create-as domain_name snapshot_name --disk-only" traverses all block devices to create snapshot. However I don't want to create snapshot except for root partition. The version of qemu and libvirt I used is as follows: qemu-1.4.2 and libvrit-0.10.2
2013 Nov 06
3
Re: Problem using virt-sysprep with RBD images
Hello Richard, Haha, ok, here's a good one: I commented that if statement out at line 300, applied your patch (I see you updated the github of this code, perhaps that's the best place to grab the code from), and when I run virt-sysprep, I get the following parameter for my disk drive: >> qemu-system-x86_64: -drive
2013 Nov 06
2
Re: Problem using virt-sysprep with RBD images
Hello Richard, Thanks for the reply. Indeed this behaviour exists in 1.25.6. Grepping through the source [1], there are a number of files in "./po/*.po[t]?" that contain this message, but I think it's ./src/drives.c where the fail condition is actually detected / set. On line 300 there is an if statement that checks the first character is a slash: if (exportname[0] !=
2019 Mar 12
2
Clock skew on Win10
Hi, I'm having a problem with significant clock skew on fedora29 with qemu-system-x86-3.0.0 and ibvirt-daemon-kvm-4.7.0. This is on my desktop and appears to happen between suspends of the host each night. It appears like the time just stops while the guest is suspended, of course, but then doesn't update once the guest is resumed. I'm pretty sure time is configured correctly on the
2013 Sep 14
1
Re: Regarding libvirt usage
Hi Adam, Thanks for the reply. qemu-img info /VirtualMachines/KVM/machine.qcow2**** image: /VirtualMachines/KVM/machine.qcow2**** file format: qcow2**** virtual size: 250G (268435456000 bytes)**** disk size: 174G** cluster_size: 65536 How can i do this from remote host using libvirt module ? Started using and learning libvirt so dont know how to execute it . Thanks in
2013 Jun 25
0
Re: snapshot-create-as for a single disk not all disks
Hi, everyone, I have found the API snapshotCreateXML() can create a snapshot for a virtual machine, and the xml configuration file - snapshot.xml as folllows: <domainsnapshot> <name>snapshot01</name> <description>Snapshot of OS install and updates</description> <disks> <disk name='vda' snapshot='external'> <source
2014 Jan 25
0
CESA-2014:X001 Moderate Xen4CentOS libvirt Security Update
CentOS Errata and Security Advisory 2014:X001 (Xen4CentOS) The following updated files have been uploaded and are currently syncing to the mirrors: ( sha256sum Filename ) ----------------------------- X86_64 ----------------------------- dca0d401b7ac56172c4a004a412a4de308644d03c5cfd544a73aaf3675ca3e6b ibvirt-0.10.2.8-6.el6.centos.alt.x86_64.rpm
2013 Jun 26
0
Re: snapshot-create-as for a single disk not all disks
Thank you! But snapshot-create-as will traverse all disks of the virtual machine and create snapshots for all of them. In my case, I want to create snapshot for root disk. What's more. I understand "--diskspec" is a description of the disk. Do you mean it's used to specify a single disk to snapshot. 在 2013-06-26 09:10:31,"Gao Yongwei" <itxx00@gmail.com> 写道:
2014 Jan 25
0
CentOS-announce Digest, Vol 107, Issue 13
Send CentOS-announce mailing list submissions to centos-announce at centos.org To subscribe or unsubscribe via the World Wide Web, visit http://lists.centos.org/mailman/listinfo/centos-announce or, via email, send a message with subject or body 'help' to centos-announce-request at centos.org You can reach the person managing the list at centos-announce-owner at centos.org When
2020 Sep 30
4
Graficar una curva de tendencia potencial.
AF_E PS_E 90.838 2.206 83.139 1.751 134.272 3.710 84.043 2.076 105.184 2.788 157.249 3.783 50.280 1.027 96.973 2.355 123.582 3.398 60.417 1.236 123.501 3.315 90.128 1.566 193.783 5.167 116.036 2.994 100.289 2.216 56.943 1.106 102.272 2.692 145.579 3.810 53.105 1.202 127.212 3.061 102.838 2.383 126.352 2.723 13.661 0.190 164.352 4.870 159.945 4.160 54.382 0.884 128.253 3.598 181.208 4.767 145.118
2013 Nov 06
0
Re: Problem using virt-sysprep with RBD images
On Wed, Nov 06, 2013 at 02:25:54PM -0700, Jon wrote: > Hello Richard, > > Haha, ok, here's a good one: I commented that if statement out at line 300, > applied your patch (I see you updated the github of this code, perhaps > that's the best place to grab the code from), and when I run virt-sysprep, > I get the following parameter for my disk drive: > > >>
2013 Aug 09
4
qemu-kvm package?
I just did a clean net install of CentOS 6.4 and when I run virt-manager it says that qemu-kvm is missing, but when I try to install it with yum it says that there isn't a package with that name. Is something wrong with my configuration? Or what is causing this package to appear as not available? Thanks, Dave
2013 Nov 06
1
Re: Problem using virt-sysprep with RBD images
Hello Rich, Interesting. Thanks for the explanation. When you specify an rbd on the command line for virt-sysprep, do you expect the path to include the monitor address? e.g.: >> virt-sysprep -a rbd://host-name/pool-name/device-name If I understand correctly, libvirt is able to understand the ceph configuration, so when I create a device with qemu-img I only specify the protocol and
2013 Nov 11
2
qemu-kvm-rhev
I recently ran into some problems using certain oVirt (3.3) features on CentOS 6.4 hosts. The solution was to use the qemu-kvm-rhev version from the EL6 RHEV repository: http://ftp.redhat.com/pub/redhat/linux/enterprise/6Server/en/RHEV/SRPMS/qemu-kvm-rhev-0.12.1.2-2.355.el6_4.9.src.rpm It seems that this tree is not carried/built by CentOS. Are there any plans on the CentOS for carrying these
2013 May 28
3
Re: About the change of a VM's vcpu count in runtime?
On 05/28/2013 02:24 PM, Eric Blake wrote: >> So the question is: is there any method I can't find yet to change the >> vcpu count of a running vm dynamically? > > Wait for newer qemu and libvirt, or else pitch in and help write patches. You might not have to wait that long - if you could help test these patches, it would be appreciated:
2012 Jul 06
2
Anova Type II and Contrasts
the study design of the data I have to analyse is simple. There is 1 control group (CTRL) and 2 different treatment groups (TREAT_1 and TREAT_2). The data also includes 2 covariates COV1 and COV2. I have been asked to check if there is a linear or quadratic treatment effect in the data. I created a dummy data set to explain my situation: df1 <- data.frame( Observation =