Virt-install Examples: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * virt-install =Examples= ==Text-Based Anaconda Guest Installation== <pre> virt-install --name testvm-01 --memory 1024 --os-type=linux --os-variant=rhel7.3...") |
|||
Line 12: | Line 12: | ||
--extra-args="console=tty0 console=ttyS0,115200n8" | --extra-args="console=tty0 console=ttyS0,115200n8" | ||
</pre> | </pre> | ||
==NAT== | |||
Revision as of 02:16, 27 June 2017
Internal
Examples
Text-Based Anaconda Guest Installation
virt-install --name testvm-01 --memory 1024 --os-type=linux --os-variant=rhel7.3 --location /mnt/RHEL7DVD --graphics none \ --disk=/main-storage-pool/testvm-01.img,size=4 \ --extra-args="console=tty0 console=ttyS0,115200n8"
NAT
TO TEST:
NAT:
virt-install --network=default --name=rhel7-machine --ram=756 --vcpus=4 --os-type=linux --os-variant=rhel7
External DHCP server:
virt-install --network=br0 \ --name=rhel7-machine --ram=756 --vcpus=4 \ --os-type=linux --os-variant=rhel7
Static IPV4 Address:
virt-install \ --network=br0 \ --name=rhel7-machine --ram=756 --vcpus=4 \ --os-type=linux --os-variant=rhel7 \ --extra-args="ip=192.168.1.2::192.168.1.1:255.255.255.0:test.example.com:eth0:n one
The arguments of the --extra-args parameter specify the static network setting, using the following structure:
ip=[ip]::[gateway]:[netmask]:[hostname]:[interface]:[autoconf]