Created
August 22, 2014 22:45
-
-
Save hagix9/25a42aef68c2498476d2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
uvt-kvm Ubuntuで簡単に仮想マシンを利用するコマンド | |
1. インストール | |
apt-get -y install uvtool | |
2. イメージの用意 | |
uvt-simplestreams-libvirt sync arch=amd64 | |
単品の場合は | |
uvt-simplestreams-libvirt sync release=trusty arch=amd64 | |
3. SSHのための鍵の用意 | |
ssh-keygen | |
4. VMの利用 | |
作成 | |
uvt-kvm create stack01 | |
出来るまで待機 | |
uvt-kvm wait stack01 --insecure | |
SSHでVMにログイン | |
uvt-kvm ssh stack01 --insecure | |
VMのIPを確認 | |
uvt-kvm ip stack01 | |
作成したVMのリスト | |
uvt-kvm list | |
VMを削除 | |
uvt-kvm destroy secondtest | |
5. オプション | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment