This shows you the differences between two versions of the page.
oraclevm:guest [2017/01/18 18:07] frank created |
oraclevm:guest [2017/01/27 11:52] (current) frank |
||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ==== Guest installation ==== | ||
* PXE or auto network install | * PXE or auto network install | ||
* HVM<code> | * HVM<code> | ||
Line 10: | Line 11: | ||
* Oracle VM Guest Additions use case [[http://www.oracle.com/technetwork/database/database-appliance/overview/oda-automatedvmprovisioning-2348232.pdf|Oracle Database Appliance:Automated Virtual Machine Provisioning]] | * Oracle VM Guest Additions use case [[http://www.oracle.com/technetwork/database/database-appliance/overview/oda-automatedvmprovisioning-2348232.pdf|Oracle Database Appliance:Automated Virtual Machine Provisioning]] | ||
+ | |||
+ | |||
+ | ==== Guest serial console ==== | ||
+ | === HVM === | ||
+ | <code> | ||
+ | grub 0.97 grub.cfg: | ||
+ | serial --unit=0 --speed=115200 | ||
+ | terminal --timeout=10 console serial | ||
+ | |||
+ | entry: | ||
+ | kernel /vmlinux ... console=tty1 console=ttyS0,115200n8 | ||
+ | |||
+ | grub2 grub.cfg | ||
+ | serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1 | ||
+ | terminal_input serial console | ||
+ | terminal_output serial console | ||
+ | |||
+ | menuentry: | ||
+ | kernel /vmlinux ... console=tty1 console=ttyS0,115200n8 | ||
+ | </code> | ||
+ | |||