From Fedora Project Wiki
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 110: | Line 110: | ||
<pre> | <pre> | ||
echo mypasswd > passwordfile | echo mypasswd > passwordfile | ||
virt-install | virt-install --name cloudtest \ | ||
--memory 2000 --network bridge=virbr0 \ | --memory 2000 --noreboot --network bridge=virbr0 \ | ||
--os-variant detect=on,name=fedora-unknown \ | --os-variant detect=on,name=fedora-unknown \ | ||
--cloud-init root-password-file=./passwordfile \ | --cloud-init root-password-file=./passwordfile \ | ||
Line 121: | Line 121: | ||
<pre> | <pre> | ||
virt-install | virt-install --name cloudtest \ | ||
--memory 2000 --network bridge=virbr0 \ | --memory 2000 --noreboot --network bridge=virbr0 \ | ||
--os-variant detect=on,name=fedora-unknown \ | --os-variant detect=on,name=fedora-unknown \ | ||
--cloud-init ssh-key=/home/user/.ssh/id_rsa.pub \ | --cloud-init ssh-key=/home/user/.ssh/id_rsa.pub \ | ||
Line 141: | Line 141: | ||
<pre> | <pre> | ||
virt-install | virt-install --name cloudtest \ | ||
--memory 2000 --network bridge=virbr0 \ | --memory 2000 --noreboot --network bridge=virbr0 \ | ||
--os-variant detect=on,name=fedora-unknown \ | --os-variant detect=on,name=fedora-unknown \ | ||
--cloud-init user-data=/path/to/cloudinit-user-data.yaml \ | --cloud-init user-data=/path/to/cloudinit-user-data.yaml \ |