VMware와 Hyper-V는 동시에 사용하기 어렵습니다.
둘 다 설치 할 경우 아래와 같은 에러를 볼 수 있습니다.
VMware Workstation and Hyper-V are not compatible. Remove the Hyper-V role from the system before running VMware Workstation.
VMware를 선택하실 분들은 명령프롬프트를
관리자 권한으로 실행해서 아래 작업을 수행하십시오.
bcdedit /set hypervisorlaunchtype off
재부팅
제어판\모든 제어판 항목\네트워크 연결에서
네트워크 어댑터 중에서 vEthernet (기본 스위치) 를 사용 안함 상태로 바꿈
Hyper-V를 선택하실 분들은 명령프롬프트를
관리자 권한으로 실행해서 아래 작업을 수행하십시오.
bcdedit /set hypervisorlaunchtype auto
재부팅
제어판\모든 제어판 항목\네트워크 연결에서
네트워크 어댑터 중에서 vEthernet (기본 스위치) 를 사용 상태로 바꿈
// posershell에서
Get-NetAdapter -Name * -IncludeHidden
get-netadapter|where-object {$_.interfacedescription -like "*hyper-v*"}|Disable-NetAdapter
'TroubleShooting' 카테고리의 다른 글
Windows 10 설정이 열리지 않을 때 (0) | 2022.03.03 |
---|---|
[Flutter] Connection closed before full header was received, uri = (0) | 2021.09.05 |
[Node] ERR_MODULE_NOT_FOUND (0) | 2021.08.22 |
Upgrade Gradle wrapper to 4.8.1 version and re-import the project (0) | 2021.07.13 |
org.jetbrains.annotations.NotNull >> javax.annotation.Nonnull (0) | 2021.07.02 |