Virsh: Difference between revisions

From DWIKI
Line 8: Line 8:




==Access to virsh console==
==Virsh console==
===Centos7===
===Centos 6, 7===
To get to see bootloader:
  grubby --update-kernel=ALL --args="console=ttyS0"
  grubby --update-kernel=ALL --args="console=ttyS0"
ON Centos 6 you need to create /etc/init/ttyS0.conf:
stop on runlevel[S016]
start on stopped rc RUNLEVEL=[2345]
respawn
instance /dev/ttyS0
exec /sbin/mingetty /dev/ttyS0
Add  "ttyS0" to /etc/securetty
And then run:
initctl start ttyS0

Revision as of 16:00, 31 August 2016

Docs

FAQ

Find IP address of a guest

https://rwmj.wordpress.com/2010/10/26/tip-find-the-ip-address-of-a-virtual-machine/


Virsh console

Centos 6, 7

To get to see bootloader:

grubby --update-kernel=ALL --args="console=ttyS0"

ON Centos 6 you need to create /etc/init/ttyS0.conf:

stop on runlevel[S016]
start on stopped rc RUNLEVEL=[2345]
respawn
instance /dev/ttyS0
exec /sbin/mingetty /dev/ttyS0

Add "ttyS0" to /etc/securetty And then run:

initctl start ttyS0