Displaying 20 results from an estimated 1000 matches similar to: "Performance of guest"
2018 May 21
0
Re: Performance of guest
Have you tried installing lib-virt drivers for Windows guest ?
https://www.linux-kvm.org/page/WindowsGuestDrivers/Download_Drivers
Regards,
Prasad
On 20 May 2018 at 21:10, Allence <15700157322@163.com> wrote:
> I recently used Linux in VMware, but I discovered that kvm can replace it,
> so I created the kvm environment and then started a window on the host
> system.
> But when
2010 Feb 04
7
Virtualization software to install Windows as guest on CentOS 5 as host ?
Dear All
I need to install Windows as guest on my CentOS 5 as host . Can you please give me the link to download the requierd rpm package for this purpose ?
Thank you
_________________________________________________________________
Hotmail: Powerful Free email with security by Microsoft.
https://signup.live.com/signup.aspx?id=60969
-------------- next part --------------
An HTML
2014 Sep 12
1
What are these directories on virtio-win-0.1-81.iso?
Hi All
I just downloaded virtio-win-0.1-81.iso from
http://www.linux-kvm.org/page/WindowsGuestDrivers/Download_Drivers
Looking through the ISO, I find two directories: WLH and WNET.
What are they?
Also, I find a WXP and and XP directory. Why two of them?
Many thanks,
-T
2015 Sep 17
3
Guest agent is not responding
hello,
in my windows vm i installed qemu-guest-agent and rebootet the vm.
In the settings for the vm i set via virt-manager a new channel "unix
socket" "org.qemu.guest_agent.0" "virtio".
when i try to do a snapshot via shell i get:
virsh snapshot-create-as --domain win7new win7new-snap1 --disk-only
--atomic --quiesce
error: Guest agent is not responding:
2018 Jun 14
2
Custom ISO With Post Installation Scripts
On 11 June 2018 at 01:57, Prasad K <email.kprasad at gmail.com> wrote:
> If your distro is using systemd then rc.local will not get executed by
> default.
> Enable rc-local.service : "systemctl enable rc-local.service".
>
>
Thanks, Prasad
I tried that and unfortunately, that service did not start after the server
was rebooted; therefore the script was not called
2018 Jun 09
4
Custom ISO With Post Installation Scripts
Dear All
I have been working on a custom ISO with kickstart and a couple of post
installation scripts and would like to have the script run before the
login prompt.
The custom ISO works; however, the scripts fails because some of the
services, e.g. mariadb does not start before the server installation
has been completed and rebooted; therefore, I have been putting the
scripts in /etc/profile.d/
2018 Mar 13
2
Re: Resource control is not supported on this host
On Tue, Mar 13, 2018 at 15:34:00 +0100, Michal Privoznik wrote:
> On 03/13/2018 09:51 AM, Allence wrote:
> > Libvirt release version V4.1.0
> > It add a element is cachetune
> > After we add this, We can use host-cpu-cache
> > But when i add it, my host get a error message:
> > "Resource control is not supported on this host"
> > Why?
>
>
2018 Mar 13
2
Resource control is not supported on this host
Libvirt release version V4.1.0
It add a element is cachetune
After we add this, We can use host-cpu-cache
But when i add it, my host get a error message:
"Resource control is not supported on this host"
Why?
Following is my environment:
kernel : 4.1.5,
libvirt : 4.1.0
qemu : 2.9
host : lfs-7.0
my add cachetune in xml:
<cachetune
2018 May 18
2
Guest's CPU frequency cannot be similar to host system
My resource:
kernel: 4.16.8
host system: Ubuntu 16.04
Llbvirt : 4.2
Qemu : 2.12
Cpu : intel@core i7 6700
guest system: windows7 professional
My problem:
In my host, Cpu frequency is 3800~3900 MHz(4 socket and 2 thread) because i turn on “Intel Turbo Boost”. And silent frequency is 3.40 GHz.
Then i boot my guest, But in Guest my cpu frequency is 3408
2012 Jun 04
0
Where should CentOS users get /usr/share/virtio-win/drivers for virt-v2v?
I need to migrate a number of virtual machines from VMware ESX to CentOS
6 KVM hypervisors. Ultimately, I wrote an RPM spec file that solved my
problem at
https://github.com/fasrc/virtio-win/blob/master/virtio-win.spec but I'm
not sure if there's another RPM in base CentOS or EPEL (something
standard) I should be using instead.
Originally, I was getting this "No root device
2016 Feb 29
1
Network speed between two guests on same host.
Hi,
I've got two hosts. Most of my guests are Windows systems. I'm using LANBench to test network performance.
1) From an physical PC to a guest (it doesn't matter on which host), I get almost 1Gb/s. They are connected through a 1Gb/s swich => very good!
2) From a guest on one host to a guest on the other host => plusminus 1Gb/s => Okay!
3) Between two guests on the same
2015 Mar 20
2
getting oriented/networking
I've been using virt-manager and kvm with a disk image (as in the raw bits) from a physical windows 7 machine. Initial performance was dreadful, but improved as I switched to virtio and spice. I've been running linux VM's somewhat longer (much longer if you count kvm without libvirt).
There are lots of choices exposed by virt-manager. How do I find out what the choices mean, and
2017 Jun 14
3
virtual drive performance
Hi,
I'm investigating a performance issue on a virtualized windows server
host that is run on a ubuntu machine via libvirt/qemu. While the host
can easily read/write on the raid drive with 100Mmb/s as observable with
dd, the virtualized windows server running on that host is barely able
to read/write with at most 8Mb/s and averages around 1.4Mb/s. This has
grown to the extent that the
2015 Nov 14
3
Fwd: After installation
---------- Forwarded message ----------
From: *Siva Prasad Nath* <shivaprasadnath21 at gmail.com>
Date: Saturday, November 14, 2015
Subject: After installation
To: centos-devel at centos.org
Hi,
I installed Centos. After login as root I can see the config file.
Please advice me about the next step.
With regards,
Shiva
--
Shiva Prasad Nath
92981134
--
Shiva Prasad Nath
92981134
2002 Aug 26
5
updating n within for(i in 1:n) loop
Hi folks:
I think I'm having problems with figuring this one out:
test1 <- function()
{
n <- 2
for(i in 1:n)
{
cat(paste("i =", i, "\n")); flush.console()
n <- 5 # version 1
#n <<- 5 # version 2
#assign("n", 5, envir = environment(test1)) # version 3
}
}
I need the for(.) loop to run (say) n=5 times within the
2005 Mar 24
5
Bloomberg data import
Dear R Folks,
I know that Enrique Bengoechea ( Credit Suisse ) had posted some code
snippets for importing Bloomberg historical data into R.
I found them to be very useful.
Has anyone succeeded in getting the below items
from Bloomberg to R?
(a) historical economic release data,
(b) tick/intra-day data
(c) bulk data such as Index membership info, etc.
If someone is willing to share their code
2004 Mar 18
5
Problem while installing the SAMBA...
Hi ALL...
I am new to SAMBA, when i am trying to compile SAMBA by using make, It
is just waiting and doing nothing.
make
Using FLAGS = -O -I./popt -Iinclude -I/opt2/samba/samba-3.0.2a/source/include -I/opt2/samba/samba-3.0.2a/source/ubiqx
-I/opt2/samba/samba-3.0.2a/source/smbwrapper -I. -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
-I/opt2/samba/samba-3.0.2a/source
LIBS =
2015 Nov 21
3
Urgent Help
My boot folder has only rescue vm. How to get actual vm?
Shiva Prasad Nath
92981134
On Sun, Nov 22, 2015 at 12:43 AM, Eero Volotinen <eero.volotinen at iki.fi>
wrote:
> Using rescue mode or some other rescuecd..
>
> Eero
> 21.11.2015 6.41 ip. "Siva Prasad Nath" <shivaprasadnath21 at gmail.com>
> kirjoitti:
>
> > Hi,
> > From yesterday my
2015 Nov 24
3
Unit network.service has failed
Sorry for disturbing all of you again and again.
Network service cannot be started. All the commands are not working.
How to start network service?net-tool already exists.
--
Shiva Prasad Nath
92981134
2015 Nov 21
2
Urgent Help
On 11/21/2015 12:57 PM, Marcelo Roccasalva wrote:
> Boot from DVD/USB. Select rescue installed (on centos7 or vmlinuz
> rescue on older), select configure network and mount installed, then
> "chroot /mnt/sysimage" and yum install kernel... This should do...
>
> On Sat, Nov 21, 2015 at 2:05 PM, Siva Prasad Nath
> <shivaprasadnath21 at gmail.com> wrote:
>> My