From 0f08f44113f2a8ced52db0918176677e7f2f1bda Mon Sep 17 00:00:00 2001 From: Jean-Philippe Ouellet Date: Sun, 20 Nov 2016 19:44:22 -0500 Subject: [PATCH] Correct serial console device name According to marmarek /dev/ttyS* is the correct device. I don't have suitable machine on hand to truly confirm, but memory and docs suggest he's right. --- debugging/safe-remote-ttys.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debugging/safe-remote-ttys.md b/debugging/safe-remote-ttys.md index 482b9e33..c1eb6674 100644 --- a/debugging/safe-remote-ttys.md +++ b/debugging/safe-remote-ttys.md @@ -59,7 +59,7 @@ If you use the serial console as normal (via e.g. getty on ttyX, and logging in Ideally, you would take input from your trusted keyboard, and only send the output over the serial cable via e.g. disabling getty and using: ~~~ -script -f /dev/tty0 +script -f /dev/ttyS0 ~~~ You don't even need to connect the TX pin.