Created
May 9, 2021 15:49
-
-
Save egeneralov/66989a49821bec5129b27d51fd36fead to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| #!/bin/bash -xe | |
| virt-install --virt-type kvm --name vmname \ | |
| --location http://deb.debian.org/debian/dists/buster/main/installer-amd64/ \ | |
| --os-variant debian10 \ | |
| --disk size=10 \ | |
| --memory 1000 \ | |
| --graphics none \ | |
| --console pty,target_type=serial \ | |
| --extra-args "console=ttyS0" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment