Direct terminal access via Serial Console
It is possible to access a KVM Guest directly using the Serial Console interface, in which case setting up bridged networking, SSH, and similar is not necessary. Access via the Serial Console provides an alternate way of accessing your servers to compliment or replace the default VNC access.
This is done using the virsh utility which is a shell interface for libvirt.
Define a console device for the Guest
Check whether a console device had been defined:
virsh ttyconsole my_vm
If the output is shown(e.g. /dev/pts/41), it indicates the Guest has a console device already.
Otherwise, define one with virsh edit. Here is an example to be added inside <device></device>. Refer to libvirt XML format for details.
<console type='pty'> <target port='0'/> </console>
Configure a Serial Console in the Guest
First, we need to configure a serial console in the guest, in order that it will accept a connection:
If the version of your guest Ubuntu OS is 15.04 (Vivid) or later, run the following systemctl commands to enable the serial console:
systemctl enable serial-getty@ttyS0.service systemctl start serial-getty@ttyS0.service
The following configuration method works for (guest) Ubuntu 9.10 (Karmic) until Ubuntu 14.10 (Utopic):
sudo editor /etc/init/ttyS0.conf
Add the configuration:
# ttyS0 - getty # # This service maintains a getty on ttyS0 from the point the system is # started until it is shut down again. start on stopped rc RUNLEVEL=[2345] stop on runlevel [!2345] respawn exec /sbin/getty -L 115200 ttyS0 xterm
Run the following command to initiate the Serial Console (or restart the VM):
sudo start ttyS0
Here we are using “xterm” as the terminal type, which works well if we are connecting using a gnome-terminal (or xterm) instance. It is likely preferable to set this to match the terminal type which will be used to connect. This can be found using this command in the host/client terminal you will be using to connect:
echo $TERM
For example, if you are running screen it is “screen”, for byobu “screen-bce”, etc.
You can also set the variable temporarily when you are already connected to the console:
export TERM=screen
(source https://help.ubuntu.com/community/KVM/Access )