Questions tagged [virtual-machines]

A virtual machine (VM) is a completely isolated guest operating system installation within a normal host operating system. It is a software implementation of a machine (i.e. a computer) that executes programs like a physical machine.

Modern virtual machines are implemented with either software emulation or hardware virtualization. In most cases, both are implemented together. Usually the term refers to system virtual machines which provide a complete system platform which supports the execution of a complete operating system (OS). Note that process virtual machine exist too, which are designed to run a single program (a single process).

An essential characteristic of a virtual machine is that the software running inside is limited to the resources and abstractions provided by the virtual machine—it cannot break out of its virtual environment.

2821 questions
1
vote
1 answer

Does Update Managment in Azure (windows VM) take care of starting the vm?

I have a windows VM and update management configured. The machine is off most of the time. However, when i need it, i don't want to wait for updates to be installed. Thus, i configured a schedule in update management, so that updates are installed…
Thomas Woelfer
  • 166
  • 1
  • 6
1
vote
1 answer

azure virtual machine changed the public IP after a stop/start

I had an issue on one of my virtual machines where after a stop/start it changed the public IP address Which was been used by some IOT client devices to reach my server. Now they not able to communicate with our server Is any way I can revert it…
antoniogbn
  • 13
  • 3
1
vote
1 answer

Unable to open ports in Windows Azure VM

I'm trying to install RavenDB in an development VM hosted by Azure. I decided to use 48625 as HTTPS port and 48626 as TCP Port and specified it in configuration. I then shut down Windows Firewall in the VM Added the ports to NSG, and applied the…
1
vote
2 answers

LAN static lease for Hyper-V VMs

I have a question about reserving IP addresses for VMs that run on my laptop. In this case, my laptop serves as a switch. But the thing is, how can I lease a VM an IP address in my LAN by MAC, as all of the VMs are sharing the same interface => the…
Abraham
  • 11
  • 3
1
vote
1 answer

find lvm that mounted in virtual machine

long time ago I mounted 3 lvm with same size on a virtual machine. now I want to umount one of them but I can't remember which lvm is mounded on which directory. How can find mount point of lvm in virtual machine?
haj_baba
  • 11
  • 3
1
vote
0 answers

Is it possible to have a VM access the internet but not the local network?

I would have thought that this is a pretty common thing, but my search yielded no results. Maybe it is because I'm not versed enough in VM and their networking, to look for the right terms. The idea is a to have a Windows-VM on a Windows-host…
vaeng
  • 11
  • 2
1
vote
3 answers

How to reduce KVM qcow2 disk size?

When I boot in my guest Debian it says it size is 2.7G. df -h Filesystem Size Used Avail Use% Mounted on udev 718M 0 718M 0% /dev tmpfs 147M 6.2M 141M 5% /run /dev/vda1 98G 2.7G 91G 3% / tmpfs …
1
vote
0 answers

Error: IO error: lock /home/admin/chain/LOCK: Resource temporarily unavailable

After logging into my Azure linux vm through ssh. I cd Error: IO error: lock /home/admin_dennis/.hsd/chain/LOCK: Resource temporarily unavailable
1
vote
2 answers

Is there way I can find the available VM SKU's at a subscription level

I want to know if there is any way where I can pull the vm sizes that are available for my subscription. I referred to the below article and command to pull the…
1
vote
0 answers

Fixing a Network adapter in a VM

I have an old Windows server 2008 r2 that was a bare metal server converted to a vhd using Microsoft's Systernals's disk2vhd utility before the server was sunsetted. Fast forward to today, using hypervisor v under Windows 10, the VM comes up just…
HPWD
  • 127
  • 7
1
vote
1 answer

How to setup external access to my Azure VM running Kibana on port 5601?

I am currently running a Azure VM on which I have installed ElasticSearch, Kibana and Filebeat. The idea is to have a reporting/dashboarding capability for log files which are also stored on the same VM. Installation of the VM and this part of the…
tommy gun
  • 11
  • 2
1
vote
0 answers

Azure VM Disk Driver Error

we are experiencing a strange issue with our Azure VMs. In the Windows Event Log we get the following Issue: Event-ID 11 The driver detected a controller error on \Device\Harddisk0\DR0. Has anyone ever had this? Is there something we can do /…
1
vote
1 answer

Create custom Group Policy to control RDP access to VMs

When I add a new user to our on premise Active Directory, I want to assign that account to specific security group such as “Prod Group”, “Developer Group” or “Support Group”. My goal is to control the user access to specific type of VM environments…
Fylix
  • 143
  • 1
  • 1
  • 5
1
vote
2 answers

Create nightly Google Cloud VM by Snapshot

I created a Google Cloud Compute Engine and have it backuped (snapshot) nightly. I have a second VM in the same project, which is a clone of the first one. Is it possible to updated the second VM instance every time with the new just created…
1
vote
0 answers

Running Windows Containers on Windows Server 2019 but Developing on Windows 10

I have docker running on a server machine running Windows Server 2019 - 1809, to which I want to deploy an ASP .NET Core 3.1 Web API within a Windows container. I am developing this web API on my dev VM with Windows 10 using Visual Studio…