사용자 도구

사이트 도구


vagrant

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판
이전 판
다음 판 양쪽 다음 판
vagrant [2019/07/19 13:19]
kwon37xi [libvirt]
vagrant [2019/07/25 12:27]
kwon37xi
줄 18: 줄 18:
 ===== 기본 사용 ===== ===== 기본 사용 =====
   * 박스를 검색해서 찾은뒤 사용법을 따라하면 된다.   * 박스를 검색해서 찾은뒤 사용법을 따라하면 된다.
-  * [[https://app.vagrantup.com/ubuntu/boxes/trusty64|Ubuntu trusty 64bit]] 띄우기<code> +  * [[https://app.vagrantup.com/ubuntu/boxes/trusty64|Ubuntu trusty 64bit]], [[https://app.vagrantup.com/debian/boxes/buster64|debian buster 64bit]] 띄우기<code> 
-# vagrant 관련 설정을 넣어둘 디렉토리로 이동 +# vagrant 관련 설정을 넣어둘 디렉토리로 이동하여 Vagrantfile 생성 
-vagrant init ubuntu/trusty64 # 자동으로 본 Vagrantfile 생성+# for ubuntu 
 +vagrant init ubuntu/trusty64 
 +for debian 
 +vagrant init debian/buster64 
 + 
 +# 띄우
 vagrant up vagrant up
 +
 +# 종료
 +vagrant halt
 +
 +# 완전삭제
 +vagrant destroy
 </code> </code>
   * SSH 접속<code sh>   * SSH 접속<code sh>