Created
February 12, 2019 05:54
-
-
Save DarinDev1000/bba8872fb5e86f7e7836b7fc998ce326 to your computer and use it in GitHub Desktop.
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 characters
# add the line to /etc/default/grub | |
GRUB_CMDLINE_LINUX="console=tty0 console=ttyS0,115200n8" | |
update-grub | |
# enable the getty for com1 (a reboot may be needed) | |
systemctl enable [email protected] | |
systemctl start [email protected] | |
systemctl daemon-reload | |
# on a client machine | |
dmesg # to find usb ttyUSBx | |
chmod 777 /dev/ttyUSBx | |
screen /dev/ttyUSBx 115200 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment