Questions tagged [virtualization]

Virtualization is the creation of a virtual—rather than actual—version of something, such as a: hardware platform, operating system, storage device, or network resources

Virtualization is the creation of a virtual (rather than actual) version of something, such as a hardware platform, operating system, a storage device or network resources.

Virtualization helps in:

  1. Better use of under-utilized computers
  2. Hardware Independence
  3. Data protection

I) Virtualization can be done at zonal level, software or hardware.

The main reason for server virtualization is to maximize the utilization of resources. In the conventional system each application will have its own dedicated server. The drawback is that most of the resources remain unused most of the time. Typically, less than 20% of a physical server resource gets utilized. Companies still need to spend money, energy and resources for updating each of these physical servers and keeping them up and running. Virtualization divides each of the physical servers into multiple virtual servers, thus creating multiple logical instances of software on a single physical hardware. Thus multiple applications can run on a single server and each application running on a virtual server is made to feel that it is the unique holder of the physical resource. Thus it maximizes resource utilization and reduces the cost of maintenance by reducing the number of physical servers.

II) Network Virtualization: Given a physical network, virtualization allows for multiple logical networks to run atop(parallely) the common physical substrate. Thus, multiple users can share the network resources and it provides a secure/ reliable connection among the virtually connected nodes.

2366 questions
21
votes
4 answers

Virtualbox returning errorID=BLKCACHE_IOERR

I was using a guide in order to create a basic Jira plugin as sort of a experimental/hands-on way to get comfortable and familiar with the Jira SDK and with creating plugins regarding Listeners. I am running Ubuntu on a VM, and I followed all the…
davzaman
  • 823
  • 2
  • 10
  • 20
20
votes
1 answer

Why is the Ubuntu docker image not a VM

I get the big difference between VMs and containers. But that has me confused about how an Ubuntu container can even exist. It feels contradictory to me since Ubuntu is an OS. https://hub.docker.com/_/ubuntu Isn't this an entire guest OS? So what…
20
votes
2 answers

Unsupported or invalid disk type 2 for 'scsi0:0'. Ensure that the disk has been imported

I just created a new virtual machine (kerio connect) on esxi 6.5 server from an existing .vmdk file. when I try to start the virtual machine, I keep getting the following error: Unsupported or invalid disk type 2 for 'scsi0:0'. Ensure that the disk…
Jaz
  • 689
  • 1
  • 5
  • 11
20
votes
1 answer

Enter Hypervisor Mode on ARMv7 through Kernel Module

I am working on a project where I have a router with ARMv7 processor (Cortex A15) and OpenWRT OS. I have a shell on the router and can load kernel modules with insmod. My goal is to write a kernel module in C which changes the HVBAR register and…
Coder
  • 201
  • 2
  • 3
20
votes
3 answers

Faking time without changing Windows system clock

Does anybody know of a Windows tool to report fake dates/times to a process? Apparently there are Linux programs that can be used to test how the software will react in the future / in a different timezone or to trigger scheduled tasks without…
Ishmaeel
  • 14,138
  • 9
  • 71
  • 83
20
votes
4 answers

Windows: Is it *possible* to create a (virtual) video card driver?

i want to create a virtual monitor. The way this would work is that the virtual monitor would appear in a window on my desktop. As far as Windows knows it is just another monitor. It occurs to me that it would, as a practical matter, have to be done…
Ian Boyd
  • 246,734
  • 253
  • 869
  • 1,219
20
votes
1 answer

Run multiple android app instances like parallel space

I want to know how parallel space https://play.google.com/store/apps/details?id=com.lbe.parallel.intl&hl=en is working. It is an app for logging in with another facebook, whatsapp etc account. You can find the detailed description in the play store…
20
votes
3 answers

Can a VMWare Fusion image be run on a windows machine

May I burn in flames if this has been answered. At work I use a Windows XP Pro machine for my development and at home I use a Macbook Pro. I am thinking of shifting my development environment over to virtual machines using VMWare Fusion (on the…
Shane
  • 851
  • 2
  • 6
  • 16
19
votes
9 answers

Java VMs that do not require an operating system?

I know that BEA was working on LiquidVM which didn't require an underlying operating system, but would like to know if anyone in the open source community is working on something similar. Ideally I would like to find an implementation where the VM…
McGovernTheory
  • 6,556
  • 4
  • 41
  • 75
19
votes
1 answer

Is docker-machine required on linux?

I am running a Windows7 (64-bit) machine having vmplayer, which hosts Fedora 25. I have installed docker CE on it and my examples till now have worked fine. The issue is when trying to run docker-machine examples. As per my understanding, it is…
Prateek Jain
  • 2,738
  • 4
  • 28
  • 42
19
votes
13 answers

npm hangs on postinstall / unlock

I have a Linux server that runs some virtual Machines using KVM. Host machine is a Debian derivate with kernel 2.6.32-32(-pve). In roughly 75% of the times I run npm install, it hangs while installing modules. I ran it in silly debug level and it…
chmanie
  • 5,016
  • 3
  • 21
  • 28
18
votes
6 answers

Does a cloud service like Azure or EC2 exist which can run arbitrary workloads? (e.g. Client SKUs of Windows)

Azure and EC2 are optimized for running servers. Lots and lots of servers. Both platforms attempt to manage tons of things for you -- in Azure's case, it wants to manage even the target operating system. However, I'd like to use such a service for a…
Billy ONeal
  • 104,103
  • 58
  • 317
  • 552
18
votes
1 answer

What is the difference between QEMU, KVM, Libvirt, and how to use with Vagrant? Are all 3 needed to work together?

I've used Vagrant with Virtualbox before but VB is not working on this computer so I thought I would try a different approach, but I can't quite make sense of this cluster of software, what their uses are individually and interdependently... I know…
user163831
  • 1,031
  • 3
  • 13
  • 25
18
votes
4 answers

How to benchmark virtual machines

I am trying to perform a fair comparison of XenServer vs ESX and one comparison I would like to make is performance with multiple VMs. Does anyone know how to go about benchmarking VM performance in a fair way? On each server I would like to run a…
JamieH
  • 4,788
  • 6
  • 28
  • 29
18
votes
1 answer

How does Windows 10 task manager detect a virtual machine?

The Windows 10 task manager (taskmgr.exe) knows if it is running on a physical or virtual machine. If you look in the Performance tab you'll notice that the number of processors label either reads Logical processors: or Virtual processors:. In…