버전 비교

  • 이 줄이 추가되었습니다.
  • 이 줄이 삭제되었습니다.
  • 서식이 변경되었습니다.

...

  1. Git

    1. 설치파일 링크 : http://git-scm.com/download/win

      1. Standalone Installer - 64-bit Git for Windows Setup (64.7MB)

  2. VirtualBox

    1. 설치파일 링크 : https://www.virtualbox.org/wiki/Downloads

      1. VirtualBox 7.0.18 platform packages - Windows hosts (105MB)

      2. VirtualBox 7.0.10 최신 버전 설치 시 Visual C++ Redistributable 2019 패키지 사전 설치를 요구

      3. Visual C++ Redistributable download & install https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170#latest-microsoft-visual-c-redistributable-version

      4. virtualbox install

  3. Vagrant

    1. 설치파일 링크 : https://developer.hashicorp.com/vagrant/install?product_intent=vagrant

      1. Windows - AMD64 (259MB)

  4. Vagrant 폴더 생성

    1. ex) C:\Users\USER_NAME\vagrant\ubuntu

  5. Vagrant 이미지 다운로드

    1. Vagrant 폴더에서 터미널 실행

    2. $ vagrant init sysnet4admin/Ubuntu-k8s

      1. 폴더에 Vagrant 파일 생성 확인

    3. $ vagrant up

      1. 인터넷에서 Ubuntu 이미지 다운로드 후 VM 기동

  6. 기동 된 VM 확인(기본 계정 : vagrant/vagrant)

    1. vagrant 명령어로 확인

      1. $ vagrant box list

        image-20240514-034351.png
      2. 코드 블럭
        $ vagrant ssh default
        Welcome to Ubuntu 22.04.2 LTS (GNU/Linux 5.19.0-28-generic x86_64)
        
         * Documentation:  https://help.ubuntu.com
         * Management:     https://landscape.canonical.com
         * Support:        https://ubuntu.com/advantage
        
         * Strictly confined Kubernetes makes edge and IoT secure. Learn how MicroK8s
           just raised the bar for easy, resilient and secure K8s cluster deployment.
        
           https://ubuntu.com/engage/secure-kubernetes-at-the-edge
        
        Last login: Sat Mar 20 18:04:46 2021 from 10.0.2.2
        vagrant@k8s:~$
    2. VM 실행 중 확인

      1. VirtualBox에서 확인

      2. image-20240514-032242.png

...