VMWare Workstation Player

VMware vs. Virtualbox

https://www.iperiusbackup.net/en/vmware-vs-virtualbox-what-is-the-best-software-for-desktop-virtualization/

 

VMware vs VirtualBox: what is the best software for Desktop Virtualization?

Comparing VirtualBox and VMware isn’t easy. Both are excellent free and multi-platform virtualization systems, although with license differences, and it can be difficult to choose which product to use to create a virtual machine with. In this post we will

www.iperiusbackup.net

 

 

다운로드 VMWare Workstation Player

https://www.vmware.com/products/workstation-player/workstation-player-evaluation.html

 

 

 

Create VM

VMware Workstation and Device/Credential Guard are not compatible" error

https://kb.vmware.com/s/article/2146361

 

조치방법)

PowerShell에서 아래 명령 실행

# DG_Readiness_Tool_v3.6.ps1 -Disable -AutoReboot

 

DG_Readiness_Tool_v3.6 다운로드

https://www.microsoft.com/en-us/download/details.aspx?id=53337

 

단, OS가 영어가 아닐때 아래와 같이 script 수정

*$OSArch = $(gwmi win32_operatingsystem).OSArchitecture

=>

$OSArch = $((gwmi win32_operatingsystem).OSArchitecture).tolower()

 

권한에러 발생시, 아래 명령으로 수정

# Get-ExecutionPolicy -List

        Scope ExecutionPolicy
        ----- ---------------
MachinePolicy       Undefined
   UserPolicy       Undefined
      Process       Undefined
  CurrentUser    Undefined  
 LocalMachine      Undefined 

 

# Set-ExecutionPolicy -ExecutionPolicy RemoteSigned

 

https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_execution_policies?view=powershell-7

 

https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_group_policy_settings?view=powershell-7#turn-on-script-execution

 

# .\DG_Readiness_Tool_v3.6.ps1 -Disable -AutoReboot

 

자동 리부팅 후, VM 정상 생성됨.

 

 

Install VMware Tools

https://docs.vmware.com/en/VMware-Workstation-Player-for-Windows/15.0/com.vmware.player.win.using.doc/GUID-08BB9465-D40A-4E16-9E15-8C016CC8166F.html

 

mount CD driver

$ mkdir /mnt/cdrom

$ mount /dev/cdrom /mnt/cdrom

 

$ cp VMwareTools-10.3.10-13959562.tar.gz /root/download/

$ tar -zxvf VMwareTools-10.3.10-13959562.tar.gz

 

$ cd vmware-tools-distrib

$ ./vmware-install.pl

 

혹시, 에러가 나면, perl, gcc 설치후에 다시 수행

$ yum install perl gcc

 

kernel headers path 못찾으면 아래 설치후에 "/lib/modules/$(uname -r)/build/include/" 입력

$ yum install "kernel-devel-uname-r == $(uname -r)"

 

 

VMware Tools 공유폴더 설정

홈클라우드 윈도우와 VM간 파일 공유를 할 수 있다. 방법은 아래 블로그 참조.

https://m.blog.naver.com/cjh226/221159795371

 

설정이 완료되면, /mnt/hgfs/{공유폴더명} 이 보인다.

 

 

Vmware Docs

 

https://docs.vmware.com/en/VMware-Workstation-Pro/15.0/com.vmware.ws.using.doc/GUID-0EE752F8-C159-487A-9159-FE1F646EE4CA.html

 

Using VMware Workstation Pro

Using VMware Workstation Pro describes how to use VMware Workstation Pro to create, configure, and manage virtual machines.

docs.vmware.com

 

'HomeCloud' 카테고리의 다른 글

Windows Proxy Server 설치  (0) 2020.12.20