Forked from stefanozanella/enable_serial_console.sh
Last active
September 19, 2022 16:57
-
-
Save abeyt/9c3665c4b742d87c84bb to your computer and use it in GitHub Desktop.
Revisions
-
abeyt revised this gist
Aug 6, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ echo "ttyS0" >> /etc/securetty vi /etc/default/grub # Add console=ttyS0 to the end of kernel line(s) "GRUB_CMDLINE_LINUX" -
abeyt revised this gist
Jul 29, 2015 . 1 changed file with 7 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,14 +1,15 @@ 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> -
stefanozanella created this gist
Jan 16, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ echo "ttyS0" > /etc/securetty vi /etc/grub.conf # Add console=ttyS0 to the end of kernel line(s) 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