Tagged Questions

KVM (for Kernel-based Virtual Machine) is a full virtualization solution for Linux on x86 hardware containing virtualization extensions (Intel VT or AMD-V).

learn more… | top users | synonyms

5
votes
1answer
501 views

The state of XEN vs KVM for inhouse virtual server farm like live farm

so we have a life server Farm, conventional stuff not virtualized. This is to stay that way for the time beeing. The servers we are talking about are: Loadbalancer, DB master, DB Slaves (2x), ...
4
votes
1answer
178 views

Is there an API under KVM to obtain a ZoneID?

When using Zoning under Solaris, the hostid doesn't change by zone, but you also obtain (via a function call, getzoneid()) a unique zoneid for your zone. Using KVM under Linux, the hostid changes ...
4
votes
1answer
219 views

How to use the hypercall of kvm?

I want to use the hypercall of kvm to communicate (just send strings, it is uni-directional) between the guest and vmm instead of creating a network channel between the guest os and host. I have only ...
4
votes
5answers
3k views

Using laptop as a second programming monitor

The joys of multimonitor programming are countless, I think there are about 5 blog posts on Coding Horror on the topic alone! I often code in Windows on my main machine, and have my Mac laptop set up ...
3
votes
1answer
205 views

Performance Counters per guest in KVM

My objective is to find the number of instructions after every interrupt delivered to the guest in KVM. I use the instruction retired counter by programming the appropriate registers using wrmsr. I ...
3
votes
2answers
110 views

Connecting from host to virtual server fails with network unreachable from Java

I have a server that has several virtual machines running on it. I'm trying to connect to one of these servers using Java, but it fails with "Network unreachable". The usecase is Hudson connecting to ...
3
votes
5answers
9k views

Should I choose KVM or OpenVZ for my VPS? [closed]

My VPS provider gives me the choice between KVM and OpenVZ. What is the best choice for a VPS with 128MB or 256MB RAM?
3
votes
1answer
940 views

How does one configure synergy to use multiple X11 screens (:0, :1, …)?

Configuring synergy for multiple computers, each with a single screen, is fairly easy. But it is not so obvious how to configure multiple X11 screens. For example, sys1, a minimac is on the right. ...
3
votes
1answer
730 views

KVM and Linux wireless bridging?

I'm using KVM to run a Windows virtual machine on my Linux box. Networking is accomplished through a tap device, hooked into a bridged Ethernet device, which allows the Windows VM to basically appear ...
3
votes
3answers
2k views

Get two linux boxes talking over a serial port

What is the best way to setup one linux box to listen on its serial port for incoming connections? I've done a lot of googling but I can't find the right combination of commands to actually get them ...
2
votes
1answer
30 views

Linux: How the guest VM's kernel maintain's time

In Linux I am spawning a guess VM and load another instance of Linux. VM is spawned through KVM/libvirt/qemu. Guest VM is seen as a process by the host kernel. Lets say for some reason the guest VM ...
2
votes
0answers
101 views

Remote 'g' packet reply is too long

I am trying to debug Linux kernel with kvm vm. I am getting an error message "Remote 'g' packet reply is too long". My host is 64-bit and so is my vm. My steps: Start the VM with custom -kernel, ...
2
votes
0answers
355 views

qemu vs qemu-kvm

I conducted the following benchmark in qemu and qemu-kvm CPU: AMD 4400 process dual core with svm enabled, 2G RAM Host OS: OpenSUSE 11.3 with latest Patch, running with kde4 Guest OS: FreeDos ...
2
votes
1answer
154 views

Where is the entry of hypercalls in kvm?

I am trying to understand the virtio mechanism in linux. I read that the kick function will notify the host side about the newly published buffers. I am looking especially at virtio_net.Once a packet ...
2
votes
6answers
635 views

Looking for a nice way to detect if I am running in a Virtual Machine (Linux)

In VMs OS-provided real-time scheduling tends not to be reliable. For my application I'd like to be able to detect whether I am running on a VM or not (Linux-only). So I am looking for a nice way to ...
2
votes
1answer
809 views

How KVM (Kilo Virtual Machine) different from JVM(Java Virtual Machine)?

I have basic idea on Kilo Virtual Machine on Mobiles , I have clear idea of how JVM works class loaders , Executable Engine,Method Area etc . Technically how KVM differs from JVM ? Does KVM ...
2
votes
1answer
674 views

What's the best USB switcher? (want to share mouse/keyboard/monitor between PC and mac) [closed]

I have a wireless keyboard, mouse, and a monitor (with DVI and VGA) that I want to share between two systems. Ideally, I'd prefer to just hit a keystroke (e.g. scroll-lock twice) and then have all ...
2
votes
2answers
5k views

KVM/QEMU network TAP problems with libvirt

I'm trying to use libvirt with virsh to manage my kvm/qemu vms. The problem I have is with getting it to work with public IPs. The server is running ubuntu 8.04. libvirt keeps trying to run it as: ...
1
vote
0answers
59 views

Download hangs using a Maven repository mirror on a kvm-qemu server

I installed a Maven repository (tested NexusOSS 1.9.1.1 bundle and Artifactory 2.4.2) on a virtual Ubuntu 10.04.3 LTS server hosted on an Ubuntu 10.04.2 LTS server by libvirt 0.7.5-5ubuntu27.16 (using ...
1
vote
2answers
100 views

Error in creating GoogleTV AVD, with Android Developers Tools R14

I have installed KVM , but when creating GoogleTV AVD on using Google Addon 3.1 . I get this error .. Failed to parse properties from /home/adham/.android/avd/GoogleTV.avd/congfig.ini why ?
1
vote
1answer
105 views

Xen and KVM kernel compile slowdown [closed]

In this slide deck on Xen vs KVM, the benchmarks indicate that CPU and disk is nearly as fast under virtualization (~10% slowdown). Yet virtualization slows down a kernel compile by more than a factor ...
1
vote
3answers
53 views

Backing up the DB vs. backing up the VM

We're serving a Django/Postgres site running on a VM hypervisor. We're now trying to figure out our back up strategy and have two probable options: Back up the DB directly using pg_dump Back up the ...
1
vote
0answers
182 views

physical to virtual (kvm) migration with saving IP of guest and reusing it at host [closed]

I do a physical-to-virtual migration of BSD server with saving of IP address. The virtual host is Linux/KVM. The setting is: I had a physical BSD server with failed Hardware. I just replaced it with ...
1
vote
1answer
371 views

Problem with virsh commands

I have been trying to use virsh attah-disk to attach a qcow2 file as additional storage source. The syntax i am using is (from internet): virsh attach-disk --driver file vm2 disk2.qcow2 hdc If the ...
1
vote
2answers
138 views

How to force use of StringBuffer instead of StringBuilder by default in javac?

I am trying to compile the CLDC with kvm on linux, I get an error cannot access java.lang.StringBuilder class file for java.lang.StringBuilder not found at the statement: return ...
1
vote
0answers
124 views

KVM Hypercall Inovcation

how would the guest OS invoke a hypercall from its user space such that it can be trapped by the host? the hypercall API does not (at least for myself) give sufficient detail to be able to start ...
1
vote
0answers
238 views

xen4 vs KVM what's better for production use? [closed]

we would like to setup a virtualization infrastructure un ubuntu or debian host. xen4 vs KVM what's better for production use? And which solution reaches a higher density? See you, andy
1
vote
1answer
36 views

Synergy Conditional Screen & Links Rule

Problem: I have 2 laptops that I position on the left corner of my desk. 1 is my personal laptop, and the other my work laptop. My desk doesn't have room for both. I would like to be able to write ...
1
vote
2answers
347 views

Changing password of a Virtual Machine

I have some virtual machines with me. I want to write a script which automates the following process... It mounts the virtual machine (with linux as the os) to a location say /mnt/image It modifies ...
1
vote
1answer
311 views

How to change machines on a nlkvm-4 kvm swtich

Hi I recently got my hands on a newlink nlkvm-4 4 port kvm switch that came to me without the user manual. I googled and found other kvm user guides but I could not find the newlink nlkvm-4 manual on ...
1
vote
2answers
640 views

Is it possible to install VMWare Server on Amazon's EC2?

We are looking to move all of our systems to a virtualized env. We will be going with EC2 and it appears that if we can install something like vmware or KVM on EC2 then create VMs as needed it ...
1
vote
2answers
59 views

How to make every page of a process in the page table present?

i compiled a static program using gcc on linux and run it under kvm. I checked every page table entry of this process in guest memory and found that some pages have been mapped and some ones are not. ...
1
vote
1answer
72 views

Restoring an image, in a VM, without booting it

I'm using a UEC Cloud (with kvm) Can I restore an image, in a VM, without booting it? (like freezing the image and then restarting the image on that exact tick while skipping the whole booting) Is ...
1
vote
1answer
348 views

What are the main glaring differences between the JVM and KVM?

I'm learning Java for a course this month, and this question is just one I thought of that I'd like to know. What are the main differences between these two? I know KVM is targeted for mobile ...
1
vote
2answers
219 views

Migration of virtual machines

Are there tools for migrating from one virtual machine type to another? E.g let's say I have some Xen virtual machine and like to make it run under KVM. I know that qeumu has tools which can be used ...
1
vote
1answer
70 views

Is there a software/hardware combination that will let you control a at the hardware level via USB?

What I'm looking for is a device that does the following: One end has a male VGA and a USB cable. This end gets plugged into any pc or server device that has the correct outputs. The other end is ...
1
vote
4answers
1k views

kvm vs. vmware for kernel debugging / USB driver development

The title says it all. I'm currently setting up vmware Server 2.0 for kernel debugging with gdb ( see this setup guide ) and someone asked me why not use kvm? So I ask: kvm vs. vmware for kernel ...
0
votes
0answers
9 views

How to pull information of virtual guests of a KVM host using Python?

I tried with libvirt. Unfortunately libvrt does not support KVM completely, and I have been constantly getting error messages and warnings stating, that it does not support the platform. Is there an ...
0
votes
0answers
50 views

KVM High performance cluster

I want to convert all my physical servers to virtual servers, but i want to create my physical as a high performance server. I searched a lot on the internet but did not find a good reference. I found ...
0
votes
0answers
20 views

How to add a watchpoint in kvm

I have a Linux guest running inside a Linux host. The virtualization is done via kvm and qemu (qemu --enable-kvm). I am hacking on the qemu code. Now, I want to set watchpoints in the host memory. ...
0
votes
2answers
119 views

KVM Virtual machine running Windows XP: How to get files from guest to host?

I'm running Ubuntu 10.04, and on it, kvm/qemu. I created a storage device with the 'raw' format and installed XP on it, so I assume the file has ntfs format. I have a file on the XP virtual machine ...
0
votes
2answers
247 views

Kvm vs Virtual box

I have some questions about KVM and virtual box, related to virtualization: Do I need hardware virtualization support for both KVM and Virtualbox? I have typed command sudo /usr/sbin/kvm-ok and got ...
0
votes
0answers
44 views

Manage KVM VMs with python like VBoxmanagement

I have VM which run under KVM and i want to manage them with python to do some functions like 1. send file to guest VM 2. execute a process or program in guest VM 3. dump memory ...
0
votes
1answer
146 views

in qemu/kvm, can I mount a host partition as a virtual disk drive?

I have a new laptop with a Windows partition and a Linux partition. I want to run qemu/kvm under Linux, and run an instance of Windows XP on that virtual machine. The desired setup is to have a ...
0
votes
1answer
279 views

How to resolve Soap Fault in Ksoap2?

I am trying to hit a web service with an android application. I am getting following exception about which I don't have any Idea. Please help: 09-01 11:21:29.873: WARN/System.err(921): SoapFault - ...
0
votes
0answers
198 views

Can not serialize object exception

I am creating a Web Service Client on Android using ksoap2. I am getting following error Log: 08-30 17:13:21.093: WARN/System.err(813): java.lang.RuntimeException: Cannot serialize: [sharique, ...
0
votes
2answers
151 views

virsh shutdown for OpenBSD (libvirt/kvm)

Is it possible to correctly shutdown a openbsd 4.7 or 4.9 with virsh shutdown OpenBSD The openbsd is under kvm/qemu configured from libvirt. shutdown should send an ACPI signal "Power button ...
0
votes
1answer
190 views

How to save instances using Eucalyptus (Typica API)

I am a newbie to clouds and Eucalyptus, I used Typica Java API, it has method createImage(instance_id, new_image_name) but it fails and the error isn't shown, does Euclyptus support this ...
0
votes
1answer
35 views

changing KVM domain xml file on the fly

I would like to change the xml file of a currently running domain (change the diskimage) on the fly. Is this possible ?
0
votes
2answers
660 views

virt-install error

I have setup kvm, libvirt on one of dell poweredge1000m blades. I am using the following syntax for installing a virtual machine from an existing image (executing as root). virt-install ...

1 2