similar to: Installing Libguestfs

Displaying 20 results from an estimated 20000 matches similar to: "Installing Libguestfs"

2015 Jan 12
2
Re: Installing Libguestfs
I used libguestfs for transferring files from host OS to guest VM. It worked successfully. But since the tool being very huge and has many more functionalities, which my project doesn't need. I just want to use the functionality provided by virt-copy-in. Can you please tell where will I get the code which virt-copy-in uses internally? I have libguestfs folder. In that which files are used for
2015 Jan 12
0
Re: Installing Libguestfs
And yes the guest is running. We are creating folder of files and want to transfer all files present in that folder. We have host OS as ubuntu and want to transfer files in one particular folder to guest VM which also has ubuntu as guest OS. On Mon, Jan 12, 2015 at 7:54 PM, Priyanka Naik <prnk.nk1@gmail.com> wrote: > I used libguestfs for transferring files from host OS to guest VM. It
2014 Dec 17
1
Communication between Host and Guest
We wanted to migrate the process from host machine to guest machine using virtio serial. We have already completed with dumping and restoring processes. We wanted to transfer those dumped files to guest so that they could be restored back, using virtio serial. I found many stuff related to virtio serial but couldn't get the code for transferring files. Can you provide us with the links which
2014 Dec 31
0
Re: Installing Libguestfs
On Tue, Dec 30, 2014 at 01:58:20PM +0530, Priyanka Naik wrote: > I want to transfer files between host and guest. What are the ways to > transfer these files? Is libguestfs the only way to transfer files between > host and guest? The question is under-specified. If you provide details of your requirements, we can answer better. - What host? - What guest? - Which direction? - Is the
2014 Sep 18
2
Re: Need Help
Hello Richard, One more question, you mentioned that "hot plugging" is supported from *CentOS 7 *and gave me a link. That link says "In libguestfs ≥ 1.20, you may add drives and remove after calling "guestfs_launch" <http://libguestfs.org/guestfs.3.html#guestfs_launch>. There are some restrictions, see below. This is called*hotplugging*." When I executed
2014 Sep 17
2
Re: Need Help
On Wed, Sep 17, 2014 at 08:52:57PM +0530, Priyanka Ranjan wrote: > Many Thanks Richard for your reply. > > # /usr/libexec/qemu-kvm -nographic -machine accel=kvm:tcg -device \? > > open /dev/kvm: No such file or directory > failed to initialize KVM: Operation not permitted > Back to tcg accelerator. > Could not allocate dynamic translator buffer > > I tried
2014 Sep 17
2
Re: Need Help
On Wed, Sep 17, 2014 at 07:59:03PM +0530, Priyanka Ranjan wrote: > libguestfs: command: run: /usr/libexec/qemu-kvm > libguestfs: command: run: \ -nographic > libguestfs: command: run: \ -machine accel=kvm:tcg > libguestfs: command: run: \ -device ? > libguestfs: error: /usr/libexec/qemu-kvm exited with error status 1, see > debug messages above > libguestfs: trace: launch = -1
2014 Sep 12
2
Need Help
Hello Experts, I need a help from you . I am using CentOS 6.4 and using guestfish to modify an ESX image. I am adding a disk, executing "run" command and mounting it. the "run" command is taking around 50 seconds . Is there any way to minimize it. If we can not minimize it then Can we create and keep the guestfish virtual shell open so that we can just add a disk , mount
2007 Jul 13
3
THANK YOU: Updating R version
Based on the feedback received, I did the following: a) moved my lib sub-directory from the existing installed R version to c:\myRLib b) installed the updated R version c) created .Renviron file in the home directory (C:\R-2.5.1) with the line R_LIBS=c:/myRLib d) used .libPaths() command to confirm that the new R installation was recognizing the myRLib sub-directory e) deleted my old R
2018 Apr 09
2
Clang option for reordering sections in .text
Hi , I would like to know if there is any way to reorder functions in the object file in order to improve code locality by implementing subsections .text.hot. GCC controls this behavior with '-f(no)-reorder-functions' flag, is there any way to do so in clang? Regards, Priyanka -------------- next part -------------- An HTML attachment was scrubbed... URL:
2019 Dec 21
2
accessing stack frame after returning from the function
Hello, I have a few general questions. 1. Whether the memory contents assigned for a function are accessible after we return from that function? If yes, how can we access it? 2. Does llvm delete the stackframe assigned for a specific function, after we return from that function? 3. If not, how can we delete the stackframe or clear the memory content after we return from the function? Where do
2014 Sep 13
2
Re: Need Help
Thanks a lot Rechard for your inputs. On Fri, Sep 12, 2014 at 11:23 PM, Richard W.M. Jones <rjones@redhat.com> wrote: > On Fri, Sep 12, 2014 at 10:40:14PM +0530, Priyanka Ranjan wrote: > > Hello Experts, > > > > I need a help from you . I am using CentOS 6.4 and using guestfish > > to modify an ESX image. > > > > I am adding a disk, executing
2019 Oct 25
3
register spilling and printing live variables
Hello, I have studied register allocation in theoretical aspects and exploring the same in the implementation level. I need a minimal testcase for register spilling to analyze spilling procedure in llvm. I tried with a testcase taking 20 variables but all the 20 variables are getting stored in the stack using %rbp. Maybe my live variable analysis is wrong. Please help me with a minimal testcase
2020 Feb 12
2
tool options to generate spill code
Hello, For the following test case, reg.c #include <stdio.h> int getinput() { static int u=10; return u++; } int main() { int a,b,c,d,e,f,g; a=getinput(); b=getinput(); c=getinput(); d=getinput(); e=getinput(); f=getinput(); g=getinput(); printf("%d %d %d %d %d %d %d\n",a,b,c,d,e,f,g); a=b=c=d=e=f=g=0; return 0; } *1.
2013 Mar 08
2
Gsoc-2013
Hi, I am Chinmay Naik, an undergraduate in Computer Science at Bangalore Institute of Technology, Bangalore. I am an experienced programmer and good with C,C++,Python,Java,OpenGL and would love to participate in Gsoc-13. >From the ideas listed, i am interested to work on the project "posting list encoding improvements". I am a newbie to Xapian but would like to get involved and get a
2015 Jun 24
1
Conditional statements in libguestfs
Hi Experts, I am writing a guestfish script . I want to implement conditional logic inside guestfish script. For example , if state.tgz exists in image do something else if onetime.tgz exists in the image do someotherthing . Is it possible to do this within guestfish script. I tried to search a solution for this in guestfish doucmentation but couldn't find anything useful. Thanks in advance
2020 Jan 02
6
error in building llvm with default options
hello, I am trying to build LLVM with default options. I am getting the following error message after make. [100%] Building C object tools/llvm-c-test/CMakeFiles/llvm-c-test.dir/metadata.c.o [100%] Building C object tools/llvm-c-test/CMakeFiles/llvm-c-test.dir/module.c.o [100%] Building C object tools/llvm-c-test/CMakeFiles/llvm-c-test.dir/object.c.o [100%] Building C object
2005 Nov 29
3
Is it possible to backup database using rsync?
Hi everyone, I want to back up my database using log files. 1. Is it possible to backup database using rsync? 2. Can it copy redo log file which are open? 3. It has any special feature to handle redo log files of database while copying? Urgent help needed..... regards Harish Naik
2020 Jan 02
2
error in building llvm with default options
Various options for reducing memory usage when building LLVM: * Don't use bfd-ld, at least use gold, probably use lld if you have it available * With Ninja and/or CMake there's some way to specify the maximum number of concurrent linkactions - lower this to fit in your available memory * If you're building with debug info: Use Split DWARF On Thu, Jan 2, 2020 at 5:21 AM Kókai Péter
2017 Dec 24
1
Libvirt not terminating SSH processes
Hi LibVirt team, I am facing an issue with libvert. I am closing a "qemu+ssh" connection but the initiated ssh process are going into sleep mode and not getting killed upon closing the connection. Can you please help me figure out the issue ? -- With Kind Regards Priyanka Gupta