application for KVM

 
Thread Tools Search this Thread
Special Forums UNIX and Linux Applications application for KVM
# 1  
Old 09-01-2012
Question application for KVM

Hi
Is there an application for KVM which it can save guest's registers and system calls informations?

Thanks a lot in advance!
Setareh
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Virtualization and Cloud Computing

KVM guests unique ID

Hi, I wanted to know if there was a way to get a unique UUID for KVM guest from the guest OS which isn't easily modifiable. I have a software that I would like to run inside a KVM guest and want to do some license protection on it using a unique UUID. Does KVM allow multiple VMs on the same... (0 Replies)
Discussion started by: shivanik
0 Replies

2. Red Hat

KVM - VM Guest

Background : - Need to create addition 40G storage for VM guest. 1. I have created new KVM - VM guest on RHEL 5.8 server hosting server. 2. Hosting server has occupied all size with LV and there is not space to create new LV. 3. I tried to achieve this requirement by creating 40G file size and... (1 Reply)
Discussion started by: Nats
1 Replies

3. UNIX for Dummies Questions & Answers

Openstack and KVM

hi guys I want to test this environment I really have some doubts and I need to read a little bit more I have two physical servers (where Vmware ESXi used to be installed) I was thinking install KVM (if it turns out to be difficult have KVM up and running I will use ESXi) and deploy the... (1 Reply)
Discussion started by: karlochacon
1 Replies

4. UNIX and Linux Applications

KVM support on suse

Is KVM supported on suse SLES10 (0 Replies)
Discussion started by: shekhar_ssm
0 Replies

5. Red Hat

About KVM ?

Hi every body Umm. I have 4 physical servers and i need to make the 1 machine from 4 server by KVM like Vmware ESX ? Do KVM can consolidate physical servers to 1 machine ? If KVM can do it. can i find manual to do it from where thk.... (3 Replies)
Discussion started by: infjustice
3 Replies

6. Linux

application for KVM

Hi Is there an application for KVM which it can save guest's registers and system calls informations? Thanks a lot in advance! Setareh (0 Replies)
Discussion started by: setareh92
0 Replies

7. Red Hat

Could not see virtual fc in KVM guest OS

Hi All, I have RHEL 5u4 physical system with 2 Qlogic fc cards. It hosts 2 KVM virtual machines which are also running RHEL 5u4 OS. After all these I have created a virutal HBA (refered in google) successfully on the base OS. But the same is not visible to guest OS. My question here is, ... (1 Reply)
Discussion started by: Vichu
1 Replies

8. Virtualization and Cloud Computing

About creating VM - KVM

Hi folks, Host - Ubuntu 9.10 64bit Virtualizer - KVM I followed; Virtualization With KVM On Ubuntu 9.10 Virtualization With KVM On Ubuntu 9.10 | HowtoForge - Linux Howtos and Tutorials to install this Virtual Machine. The steps worked without problem. But I have following points... (0 Replies)
Discussion started by: satimis
0 Replies

9. Solaris

KVM for V880's

We have 3 V880's and we need to purchase a KVM for them. I've never purchased one before. Does anyone have a recommendation for one? (3 Replies)
Discussion started by: dangral
3 Replies
Login or Register to Ask a Question
KVM(3)							   BSD Library Functions Manual 						    KVM(3)

NAME
kvm -- kernel memory interface LIBRARY
Kernel Data Access Library (libkvm, -lkvm) DESCRIPTION
The kvm library provides a uniform interface for accessing kernel virtual memory images, including live systems and crash dumps. Access to live systems is via sysctl(3) for some functions, and mem(4) and kmem(4) for other functions, while crash dumps can be examined via the core file generated by savecore(8). The interface behaves similarly in both cases. Memory can be read and written, kernel symbol addresses can be looked up efficiently, and information about user processes can be gathered. The kvm_open() function is first called to obtain a descriptor for all subsequent calls. COMPATIBILITY
The kvm interface was first introduced in SunOS. A considerable number of programs have been developed that use this interface, making back- ward compatibility highly desirable. In most respects, the Sun kvm interface is consistent and clean. Accordingly, the generic portion of the interface (i.e., kvm_open(), kvm_close(), kvm_read(), kvm_write(), and kvm_nlist()) has been incorporated into the BSD interface. Indeed, many kvm applications (i.e., debuggers and statistical monitors) use only this subset of the interface. The process interface was not kept. This is not a portability issue since any code that manipulates processes is inherently machine depen- dent. Finally, the Sun kvm error reporting semantics are poorly defined. The library can be configured either to print errors to stderr automati- cally, or to print no error messages at all. In the latter case, the nature of the error cannot be determined. To overcome this, the BSD interface includes a routine, kvm_geterr(3), to return (not print out) the error message corresponding to the most recent error condition on the given descriptor. SEE ALSO
kvm_close(3), kvm_getargv(3), kvm_getenvv(3), kvm_geterr(3), kvm_getfiles(3), kvm_getloadavg(3), kvm_getprocs(3), kvm_getswapinfo(3), kvm_nlist(3), kvm_open(3), kvm_openfiles(3), kvm_read(3), kvm_write(3), sysctl(3), kmem(4), mem(4) BSD
April 25, 2010 BSD