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
2 answers

Test website in Internet Explorer using Mac

I'm a webmaster that use mac platform to develop. Can someone suggest me the best way to test my website with IExplorer using a Mac? There're some virtualizer such as parallel, crossover, wine and so on, can someone suggest me the best for this…
0
votes
0 answers

How to add files to KVM from outside?

I'm new to KVM and trying to get ahead. I have a Win10 system in QEMU. Now I have a few questions: I know that QEMU stores the image files as .qcow2 under the directory "/var/lib/libvirt/images/". Is it possible to enter these image files? For…
0
votes
0 answers

Hypervisor type 1 external interrupt handling

I have problem handling external interrupt for type 1 hypervisor, type 2 is working fine with windows 10 but type 1 is causing windows 10 to hangup in login screen. This is how I enable external interrupts: When setting up cpus I enable VM-exit…
0
votes
1 answer

How does Hypervisor deal with sensitive instructions executed from host process that is not VM-instance?

I know So-called Type2 Hypervisor(such as VMWare Workstation, VirtualBox) is implemented as kernel module. And VM-instance is host OS process. Assume the following situation.(I understand this is strange but for simplicity) A Machine has one…
nadegata
  • 3
  • 2
0
votes
0 answers

Lifting an obfuscated stack machine to LLVM IR

I am researching a code virtualization solution named VMProtect, which creates a custom stack machine with a virtual instruction set, to obfuscate code. What I want to do, is lift every virtual machine instruction handler, most of which consists of…
0
votes
1 answer

Exiting VMware vSphere PowerCLI command prompt?

Is there a script to input to exit VMware vSphere PowerCLI command prompt after executing a set of script for example created of VM. MY last line of my .ps1 script is shown below, but the exit does not work, after executing my script, the command…
dwyane
  • 127
  • 2
  • 4
  • 8
0
votes
1 answer

What is wrong with self-modifying codes with static-recompilation emulations?

I was searching for writing an emulator, and its techniques. But following paragraph made me wondered, I think I couldn't figure out which scenario can be present, if you write a self-modifying code to be static-recompilation emulated. In this…
0
votes
1 answer

Export a set up virtual machine from cloud infrastructure to use it locally

I need to perform some machine learning tasks using a Tensor Flow based Neuronal network architecture (PointNet https://github.com/charlesq34/pointnet). I would like to use cloud infrastructure to do this, because I do not have the physical…
0
votes
1 answer

How to run multiple OS simultaneously on different cores of ARMv8

I have an ARM Cortex-A53 based embedded system which has 4 cores. It is not implemented with ARM TrustZone. Is it possible to run the following OSs simultaneously? Core0:Some type of RTOS Core1:Some type of RTOS Core2 and Core3: Linux All of them…
0
votes
1 answer

qemu network not working needed for tftp booting

Hi, I was trying to make network work on qemu-system-arm uboot for tftp/dhcp booting , Could not understand QEMU 5.0.0 networking configuration needed , can you help on this. $qemu-system-arm --version QEMU emulator version 5.0.0 Yocto BSP used:…
SK17
  • 182
  • 4
  • 15
0
votes
1 answer

Azure Nested Virtualization Networking

I created a Server 2019 VM in Azure and want to use nested virtualization. On the 2019 VM, I created a Windows 10 VM in Hyper-V. The problem is that the Windows 10 VM does not have internet connection. Even though a virtual switch was created on the…
Ryvik
  • 363
  • 1
  • 3
  • 14
0
votes
1 answer

Causes of a delayed Python sched execution

We are using the sched module in Python 2.6 to run a function every 60 seconds. Each call issues the sched.enter() function after executing with a delay of 60 and priority of 1. This has been working fine. However, we have found a situation when the…
davidmytton
  • 38,604
  • 37
  • 87
  • 93
0
votes
0 answers

Type 1 hypervisor using binary translation

Is there any papers or projects proposing or fulfilling a type 1 hypervisor using binary translation to support OS compiled for different architecture?
0
votes
1 answer

Troubleshooting KVM guest's anaconda installer logs

I am trying to install RHEL7.9 KVM guest on Ubuntu 18.04 Azure VM. The anaconda installer fails due to some error but the virt-viewer screen got closed so fast, I was unable to read what is the exact error. I know all anaconda logs get stored in…
SHALU
  • 11
  • 1
0
votes
1 answer

QEMU KVM Dump Format String From Address

for an University project I have to extend a QEMU version which has been modified for fuzzing. I want to print more debug messages. This QEMU version replace the Linux kernel function calls to kasan_report and panic with a hypercall so QEMU can…
1 2 3
99
100