Skip to content

Instantly share code, notes, and snippets.

@LowKey88
Created March 16, 2021 16:24
Show Gist options
  • Save LowKey88/0a83ed37e0c76cd1e05569651049c84d to your computer and use it in GitHub Desktop.
Save LowKey88/0a83ed37e0c76cd1e05569651049c84d to your computer and use it in GitHub Desktop.
create fleio kvm
virt-install \
--name fleio \
--ram 16384 \
--disk pool=default,size=50,bus=virtio,format=qcow2 \
--vcpus 4 \
--os-type linux \
--os-variant ubuntu20.04 \
--network network:default \
--network bridge=br-mgmt,model=virtio \
--network bridge=br-ssh,model=virtio \
--network bridge=br-pub,model=virtio \
--graphics none \
--console pty,target_type=serial \
--location 'http://us.archive.ubuntu.com/ubuntu/dists/focal/main/installer-amd64/' \
--extra-args 'console=ttyS0,115200n8 serial' \
--force --debug
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment