Skip to content

Instantly share code, notes, and snippets.

@abeyt
Forked from stefanozanella/enable_serial_console.sh
Last active September 19, 2022 16:57
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abeyt/9c3665c4b742d87c84bb to your computer and use it in GitHub Desktop.
Save abeyt/9c3665c4b742d87c84bb to your computer and use it in GitHub Desktop.
Enable serial console output in CentOS 7
echo "ttyS0" >> /etc/securetty
vi /etc/default/grub
# Add console=ttyS0 to the end of kernel line(s) "GRUB_CMDLINE_LINUX"
grub2-mkconfig -o /boot/grub2/grub.cfg
reboot
#vi /etc/sysconfig/init
# Edit ACTIVE_CONSOLES to look like:
#ACTIVE_CONSOLES="/dev/tty[1-6] /dev/ttyS0"
# If on a live system, do the following
#init q
# After that, if on KVM virtual machine, it should be possible to do
virsh console <vm_name>
# and see the console output
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment