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
0
votes
1 answer

What is the most efficient way of virtualize large data?

I have a list of cards that contains charts, images on it. Since the chart data and image requests slowdown my application, I thought to follow a virtualization technique. I'm currently using ngx-perfect-scrollbar and I'm about to use the virtual…
0
votes
0 answers

How to measure the number of CPU cycles required for VMFUNC instruction running on a physical machine?

I want to use a simple program to measure the number of cycles required by VMFUNC instruction in x86 architecture on a Linux Ubuntu 18.04 machine. Is there any fast and accurate method? Thanks!
hsyhhh
  • 11
  • 3
0
votes
0 answers

How to use the QEMU that I compiled with my libvirt? qxl error

I've been trying to run a QEMU that I compiled by myself. I could run it if I use plain qemu commands, but it gets wrong when I substitute the system QEMU with the one I compiled. If you use the virus edit VM_name, you could edit the configuration.…
0
votes
1 answer

Do kubernetes master and Worker nodes need standalone machines?

Im starting to work on Kubernetes and there is one thing that is bugging me. The question might be silly, but Im unable to find an answer for it. In Kubernetes, we have Master node(Control Plane) and the Worker nodes(where the containers are…
0
votes
0 answers

Can the procedure of VM IRQ injection in KVM be parallel?

When I have many IRQs to inject into many individual VMs, can I make the procedure of injection be parallel? I found this part is the bottleneck of my project, so I want to optimize it. Any idea about how I could achieve this?
0
votes
1 answer

How do Laravel and Docker play together?

I want to get into Laravel development. As per Laravel's installation guide, I have installed Docker first, which was a first for me. But for me to finally install Laravel, I need to have a docker container running. How so, when I don't yet know…
Jerm.
  • 31
  • 1
  • 5
0
votes
2 answers

What is the difference between containers and process VMs (NOT system VMs)?

As far as I understand, ... virtualization, although commonly used to refer to server virtualization, refers to creating virtual versions of any IT component, such as networking and storage although containerization is commonly contrasted to…
Omar Shazly
  • 93
  • 3
  • 10
0
votes
5 answers

Private Cloud Stack without hardware virtualization

I want to set up a private Cloud for testing purposes, the problem is, I don't have the newest Hardware for this plan. Especially the most of my machines don't have hardware virtualization support. I tried the Ubuntu Enterprise Cloud, but the…
0
votes
1 answer

How to enable inbound port in Hyper-V inside Azure VM?

Problem Description We used to set up an Ubuntu Azure VM (consider Private IP as 109.11.23.11) for sending some simulated data. We need to set up multiple azure VM's for each one for every simulator. For that simulator to send data outside we…
0
votes
1 answer

Loading applications with .NET bundled inside?

I've seen loads of examples on virtualization. PostBuild does exactly what I am trying to achieve. It bundles the .NET Framework into the executable being run, so that it doesn't need the .NET Framework to run at all. Bad thing is that the size of…
Mathias Lykkegaard Lorenzen
  • 15,031
  • 23
  • 100
  • 187
0
votes
1 answer

why docker instances can run on both windows and linux machine without the need of VM?

I'm a newbie to docker. I know the key difference between Docker and VM is, containers share the host's operation system while VM requires a seperate operation systems. But I saw some images which can produces containers that can be running on both…
user16276760
0
votes
0 answers

Thousands of radio buttons cause low performance in WPF

I need to create an user control that displays the wafer map, so I used a ListBox with uniform grid and each cell represents a die in the wafer. The problem I got is that when there are too many dies, for example, 100*100 uniformgrid, will be super…
0
votes
0 answers

Can I use Blazor Webassembly app on zero-client systems?

I'd like to develop a Blazor WASM for a company. This company uses the zero-client and virtualization to providing OS for users. Blazor WebAssembly run your application as web assembly binaries directly in the browser and so use more resources from…
0
votes
0 answers

Blazor Parameter Object or child API call or Virualization?

I am working on a project that includes a list of Help Articles. Clicking on an Article in the list opens the Article. OnInitializedAsync() calls to the API for the Article.include(Comments).theninclude(Replies). I have a CommentList component that…
0
votes
0 answers

Backwards compatibility of ARM ISA Versions (particularly when using QEMU w/ KVM acceleration)

I'm working on using QEMU w/ KVM acceleration to test various arm64 binaries. My host CPU is ARMv8.5 the guest CPU I'm trying to emulate is an ARM Cortex-A53 (ARMv8). Few questions: Will these binaries be backward compatible and allow KVM…