hyper-v

docker-machine: no machine name, no “default” exists

左心房为你撑大大i 提交于 2019-12-03 10:30:02
问题 I downloaded and installed Docker for Windows 1.12.1 which in turn installed the docker-machine and docker-compose. I did not install "Docker Toolbox" since its a duplicate of what was installed and my system meets the requirements. Everything seems to work fine except for docker-machine, I'm running through a tutorial and when I run various docker-machine commands like "ip" or "env" I get the following message. Error: No machine name(s) specified and no "default" machine exists. So when I do

Hyper-v screen resolution in Ubuntu VM with RemoteFX video adapter [closed]

你说的曾经没有我的故事 提交于 2019-12-03 09:03:07
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 months ago . I am using Hyper-V for the first time on a Windows 10 installation where I am having some issues with screen resolution in my Ubuntu 18.04 desktop VM. Guides propose these actions in order to configuration screen resulution for linux based VMs: Edit grub: sudo nano /etc/default/grub Add video=hyperv_fb

Microsoft hyper-V server 2012 常用的一些命令

浪子不回头ぞ 提交于 2019-12-03 07:38:27
dos命令: 1、taskmgr :打开任务管理器 2、sconfig :设置服务器配置 3、启用共享:net share "该文件夹的共享名"=“共享文件夹路径” 取消共享:net share "该文件夹的共享名" /delete 4、字符模式下输入powershell, 进入powershell模式, exit 退出powershell 模式 5、打开注册表 regedit 6、用命令提示符(cmd)打开任务管理器查看进程方法 tasklist 7、用命令提示符(cmd)终止某个进程的方法 例如要中止当前进程中的notepad.exe,即可采用下列命令: taskkill /f /im notepad.exe 如果你知道了要终止的进程pid值(通过任务管理器可以看出每个进程的pid值),比如是100,就可以采用下列命 令: ntsd -c q -p 100 或者 taskkill /f /pid 100 8、查看系统属性 sysdm.cpl start msinfo32 powershell命令: 1、Get-cammand -moudle Hyper-v 显示hyper-V有关的命令 2、get-windowsFeature 查看已安装的hyper-v角色功能 3、install-windowsFeature "角色名" 安装hyper-v角色 4、创建一个已有磁盘的虚拟机

How can I create virtual machines as part of a build process using MSBuild and MS Virtual Server and/or Hyper-V Server Virtualization?

感情迁移 提交于 2019-12-03 05:08:38
问题 What I would like to do is create a clean virtual machine image as the output of a build of an application. So a new virtual machine would be created (from a template is fine, with the OS installed, and some base software installed) --- a new web site would be created in IIS, and the web app build output copied to a location on the virtual machine hard disk, and IIS configured correctly, the VM would start up and run. I know there are MSBuild tasks to script all the administrative actions in

Control Hyper-V VMs with Python

匿名 (未验证) 提交于 2019-12-03 03:04:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: im trying to write a control VMs on a HyperV Server using Python. I start with connecting to the server the HyperV server runs on: connection = wmi.connect_server(server="servername", namespace=r"root\virtualization", user=r"username", password=r"password") wmiServerConnection = wmi.WMI(wmi=connection) This gives me a wmi object for this connection. For stopping and starting a VM I can simply use: #get the wmi object representing the VM vmSystem = wmiServerConnection.Msvm_ComputerSystem(ElementName="VmName") #send change request to vm

Docker for Windows error: “Hardware assisted virtualization and data execution protection must be enabled in the BIOS” [closed]

匿名 (未验证) 提交于 2019-12-03 02:44:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I've installed Docker and I'm getting this error when I run the GUI: Hardware assisted virtualization and data execution protection must be enabled in the BIOS Seems like a bug since Docker works like a charm from the command line, but I'm wondering if anyone has a clue about why this is happening? Before you ask, yes, I've enabled virtualization in the BIOS and the Intel Processor Identification Utility confirms that it's activated. Docker, docker-machine and docker-compose all work from the command line, Virtualbox works, running Docker

Creating Hyper-V Administrators group in Windows 10

只谈情不闲聊 提交于 2019-12-03 02:32:06
I am receiving the error "Unable to add user to the Hyper-V Administrators group. Exit code 2220" while attempting to deploy to an MS Android emulator. I am able to deploy windows mobile emulators as well as Linux VMs in Hyper-V. Windows 10 Pro Visual Studio 2015 Professional Update 1 MS VS Emulator for Android 1.0.60106.1 Xamarin 4.0.0.1717 I do not have a Hyper-V Administrators group. Numerous questions and blogs have suggested that I uninstall Hyper-V and reinstall. I tried this, it didn't create the Hyper-V Administrators group. I've read several articles from Ben Armstrong (aka twitter

Visual Studio Emulator for Android - An internal virtual network switch is required for emulated devices to run

匿名 (未验证) 提交于 2019-12-03 02:05:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: Problem I want to use Visual Studio Emulator for Android but whenever I try to start it it fails. The final part of the Log is: 27.9 . 2015. 11 : 10 : 38 : [ Informational ] ===== Session Started ===== 27.9 . 2015. 11 : 10 : 38 : [ Informational ] Microsoft Windows NT 6.3 . 9600.0 Windows 8.1 Pro with Media Center 27.9 . 2015. 11 : 10 : 38 : [ Informational ] Virtualization type : UnknownOrNotVirtual 27.9 . 2015. 11 : 10 : 38 : [ Informational ] Virtualization Version : alaska - 1072009 27.9 . 2015. 11 : 10 : 38 : [ Informational ]

docker-machine: no machine name, no “default” exists

谁都会走 提交于 2019-12-03 02:03:07
I downloaded and installed Docker for Windows 1.12.1 which in turn installed the docker-machine and docker-compose. I did not install "Docker Toolbox" since its a duplicate of what was installed and my system meets the requirements . Everything seems to work fine except for docker-machine, I'm running through a tutorial and when I run various docker-machine commands like "ip" or "env" I get the following message. Error: No machine name(s) specified and no "default" machine exists. So when I do a "docker-machine ls" there is nothing in the list even though I do have a Hyper-V docker machine

How can I run both Docker and Android Studio Emulator on Windows?

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-03 01:21:23
问题 Android Emulator is incompatible with Hyper-V, but Docker relies on Hyper-V. Is there any solution that I can run them simultaneously? 回答1: Android emulators can now run on Hyper-V. From @tmanolatos answer, here are the steps: In start menu search for the following Turn Windows Features on or off Check the box Windows Hypervisor platform You may be required to sign out of your system and sign back in Docker and Android Studio Emulators should work together with no issue 回答2: I was in the same