Computer >> 컴퓨터 >  >> 네트워킹 >> 네트워킹

PowerShell을 사용하여 Hyper-V 2019에서 가상 머신 만들기

이전 기사 중 하나에서 이미 말했듯이 GUI(그래픽 사용자 인터페이스) 또는 PowerShell을 사용하여 가상 머신을 만들 수 있습니다. 대부분의 경우 두 옵션을 모두 사용할 수 있는 IT 관리자는 GUI를 선호합니다.

이 문서에서는 PowerShell을 사용하여 Hyper-V 2019에서 가상 머신을 만드는 방법을 보여줍니다. 아시다시피 PowerShell은 Windows 클라이언트 및 Windows Server 운영 체제에 통합된 도구입니다. 특정 명령을 실행하는 데 사용되는 수천 개의 cmdlet으로 구성됩니다.

언제나처럼 절차를 설명하기 위해 시나리오를 작성합니다. Windows Server 2019에서 Hyper-V 2019를 역할로 실행하고 있습니다. Windows Server 2019를 호스팅하고 8GB RAM과 50GB 디스크 공간을 갖춘 가상 머신을 만들고 싶습니다. 자, 시작하겠습니다.

  1. 왼쪽 클릭 시작 메뉴에서 PowerShell 입력
  2. 오른쪽 클릭 PowerShell에서 관리자 권한으로 실행을 클릭합니다.
  3. 를 클릭합니다. PowerShell을 관리자로 실행 중인지 확인
  4. 유형 아래 명령을 PowerShell에 입력하고 Enter 키를 누릅니다. 가상 머신을 생성합니다. 가상 머신의 이름과 저장할 위치를 정의해야 합니다. 이 경우 이름은 WinSrv2019이고 위치는 파티션 E:\VirtualMachines\입니다.
    New-VM -Name WinSrv2019 -MemoryStartupBytes 8GB -BootDevice VHD -NewVHDPath 
    
    E:\VirtualMachines\WinSrv2019.vhdx -Path E:\VirtualMachines -NewVHDSizeBytes 50GB -Generation 2 -Switch LAN
  5. PowerShell을 사용하여 Hyper-V 2019에서 가상 머신 만들기
  6. 실행한 명령을 이해하기 위해 그 의미를 간략하게 설명하겠습니다.
    -New-VM – used to create a new virtual machine.
    
    -Name WinSrv2019 – used o define the name of the virtual machine. In our case the name is WinSrv2019
    
    -MemoryStartupBytes 8 GB – assigned RAM memory to the virtual machine
    
    -BootDevice VHD -NewVHDPath E:\VirtualMachines\WinSrv2019.vhdx – used to create a new virtual hard disk (*.vhdx) on the certain location and declare it as a boot device
    
    -Path E:\VirtualMachines -NewVHDSizeBytes 50GB – used to define the location where we will store newly created disk and what is total capacity. In this case, the capacity is 50 GB.
    
    Generation 2 – define if we will use Generation 1 or Generation 2 VMs. Nowadays it is recommended to use Generation 2.
    
    -Switch LAN – used to define which virtual network switch will be assigned to the virtual machine. In our case the name of the virtual switch is LAN. In the previous article, we explained what are virtual network switches and how to create them. Please check it on the link.
  7. 운영 체제를 설치하기 위해 ISO 파일을 VM의 CD/DVD 드라이브에 매핑합니다. 명령은
    Add-VMDvdDrive -VMName WinSrv2019 -Path E:\Software\ISO\WinSrv2019.iso

    PowerShell을 사용하여 Hyper-V 2019에서 가상 머신 만들기

  8. 실행한 명령을 이해하기 위해 그 의미를 간략하게 설명하겠습니다.
    Add-VMDvdDrive – create new DVD Drive that will be used as the bootable drive
    
    VMName WinSrv2019 – choose the virtual machine where you would like to add a new DVD drive. In our case the name of the virtual machine is WinSrv2019
    
    -Path E:\Software\ISO\WinSrv2019.iso – choose the location where your ISO file is stored. Please note that you need to download ISO file from the official Microsoft or Linux website and then use it as installation media.
  9. 아래 명령을 입력하여 가상 머신을 시작합니다.
    Start-VM -Name WinSrv2019

    PowerShell을 사용하여 Hyper-V 2019에서 가상 머신 만들기

  10. VMConnect.exe를 입력합니다. 가상 머신 연결 시작 . VMConnect 도구는 가상 머신에 연결하는 데 사용됩니다.
  11. 서버 선택 및 가상 머신 확인을 클릭합니다. . 이 경우 서버는 localhost이고 가상 머신은 WinSrv2019입니다. PowerShell을 사용하여 Hyper-V 2019에서 가상 머신 만들기