MultiPass -  Ubuntu 가상머신 생성 관리 툴
https://multipass.run/

- iso로 설치하는 것 보다 빠름(생성에 1분)
- 생성된 이미지가 작음 2G,  iso로 설치시 7G
- 가상머신 관리가 편함(docker 수준) , Hyper-V에 등록됨


//-------------------------------------
검색

    - 이미지 리스트
multipass find


    - 인스턴스 리스트
multipass list


//-------------------------------------
인스턴스 관리

    - 인스턴스 생성 (-> 시작)
multipass launch --name 인스턴스이름 이미지
    - 이미지 지정이 없으면 현재 LTS 이미지 사용

    - 다음 경로에 이미지 생성됨
C:\Windows\System32\config\systemprofile\AppData\Roaming\multipassd\vault\instances\



    - 인스턴스 시작
multipass start 인스턴스이름 

    - 인스턴스 중지
multipass stop 인스턴스이름 

    - 인스턴스 잠시 중지
multipass suspend 인스턴스이름 


    - 인스턴스 재시작
multipass restart 인스턴스이름 

    - 인스턴스 삭제
multipass delete 인스턴스이름 

    -  인스턴스 복구
multipass restore 인스턴스이름 


    - 삭제된 인스턴스 완전 삭제
multipass purge


//-------------------------------------
    - 인스턴스에 콘솔 접속
multipass shell 인스턴스이름 



//-----------------------------------------------------------------------------

>multipass
Usage: multipass [options] <command>
Create, control and connect to Ubuntu instances.

This is a command line utility for multipass, a
service that manages Ubuntu instances.

Options:
  -?, -h, --help  Displays help on commandline options.
  --help-all      Displays help including Qt specific options.
  -v, --verbose   Increase logging verbosity. Repeat the 'v' in the short
                  option for more detail. Maximum verbosity is obtained with 4
                  (or more) v's, i.e. -vvvv.

Available commands:
  alias     Create an alias
  aliases   List available aliases

  delete    Delete instances
  exec      Run a command on an instance
  find      Display available images to create instances from - 이미지 리스트
  get       Get a configuration setting
  help      Display help about a command
  info      Display information about instances

  launch    Create and start an Ubuntu instance - 새 인스턴스 생성, 시작

  list      List all available instances - 인스턴스 리스트
  mount     Mount a local directory in the instance
  networks  List available network interfaces

  purge     Purge all deleted instances permanently
  recover   Recover deleted instances
  restart   Restart instances
  set       Set a configuration setting
  shell     Open a shell on a running instance
  start     Start instances
  stop      Stop running instances
  suspend   Suspend running instances
  transfer  Transfer files between the host and instances
  umount    Unmount a directory from an instance
  unalias   Remove an alias
  version   Show version details

반응형
Posted by codens