Re: [one-users] VM Failed with Windows OS

2014-07-15 Thread Sudeep Narayan Banerjee
Dear All, Is there any ready to go template / image available for Windows version OS in the market? I am still trying hard to run the Windows 7 OS, but either stays at Blue Screen or says Boot Disk not found. I have tried the suggested work around but seems like I am not able to make up. The

Re: [one-users] VM Failed with Windows OS

2014-07-10 Thread Sudeep Narayan Banerjee
Hi, I tried to install taking inputs from [ http://www.linux-kvm.org/page/WindowsGuestDrivers/Download_Drivers ] Tried to install .vdi installation and then convert to qcow2 format. I have checked with usual VirtualBox and virt-install and virt-install --prompt . I did change the IDE to ICH6 but

Re: [one-users] VM Failed with Windows OS

2014-07-09 Thread Sudeep Narayan Banerjee
Hello Valentine, I followed the steps in and could install Win7 using virt-install command. Win7 OS gets installed in 7GB HDD and I could see Win7 desktop using virt-manager. Then I power-off the machine and create the image, template VM successfully from oneadmin prompt. But, from vncviewer

Re: [one-users] VM Failed with Windows OS

2014-07-09 Thread Valentin Bud
Hello Sudeep, I have never used virt-install but I doubt it install the VirtIO drivers [1] by itself inside the Windows 7 image. Without those drivers the virtio doesn't work inside the machine, in the sense that Windows Installer doesn't see any HDD present. Can you boot the VM on your local

Re: [one-users] VM Failed with Windows OS

2014-07-09 Thread Sudeep Narayan Banerjee
Dear Valentine, Yes I can boot the VM in my local machine using qemu. Right now I have installed win7 in my virtualbox converted .vdi to .qcow2 format using qemu-utils after that shall try to import the qcow2 file at /var/lib/libvirt/images/ folder and try again. Sudeep On Thu, Jul 10,

[one-users] VM Failed with Windows OS

2014-07-08 Thread Sudeep Narayan Banerjee
Dear Sir, I have been trying to install Windows-7 64bit in OpenNebula. Our target is to create a VM with Windows as OS. Below are the steps that I followed. But not able to runn the VM. SeLinux is Disabled in both servers. [root@front ~]# getenforce-- Frontend Disabled [root@nc1 ~]#

Re: [one-users] VM Failed with Windows OS

2014-07-08 Thread Steven Timm
The errors that you are pointing out, don't seem to have any direct connection to the fact that you are trying to install a windows VM, there is nothing windows-specific about them. Looks like OpenNebula failed to clone the blank windows image to the system datastore due to some permissions

Re: [one-users] VM Failed with Windows OS

2014-07-08 Thread Javier Fontan
I believe that the image is not a qcow2 image but raw. You can check the format with: $ qemu-img info /var/lib/libvirt/images/win7.qcow2 On Tue, Jul 8, 2014 at 4:16 PM, Sudeep Narayan Banerjee snbaner...@iitgn.ac.in wrote: Dear Sir, I have been trying to install Windows-7 64bit in OpenNebula.

Re: [one-users] VM Failed with Windows OS

2014-07-08 Thread Sudeep Narayan Banerjee
Dear Javier, You are true. It is raw indeed. But I made it like qcow2! Below is the command I executed for qcow2. [oneadmin@front images]$ qemu-img create -f qcow2 -o preallocation=metadata /storage/local/images/ winserv1.qcow2 8G Formatting '/var/lib/libvirt/images/win7.qow2', fmt=qcow2

Re: [one-users] VM Failed with Windows OS

2014-07-08 Thread Valentin Bud
Hello Sudeep, Note that virt-install doesn't care that your image is already created, it overwrites it and changes the format to raw. Take a look over this article [1], on how to pass the format of the image to virt-install. Or just qemu-img convert your raw image to qcow2. [1]: