我正在尝试使用串行 FTDI 连接器将我的电脑连接到远程电脑,我运行以下命令:
sudo screen /dev/ttyUSB0 115200
但什么都没发生,它似乎只是锁定了控制台。screen 命令有详细选项吗?有什么方法可以让我更多地了解正在发生或未发生的事情吗?
我正在关注的教程在这里: https://learn.adafruit.com/adafruits-raspberry-pi-lesson-5-using-a-console-cable/test-and-configure
答案1
man screen
列出此命令行选项:
-L tells screen to turn on automatic output logging for the windows.
运行screen -L [ cmd [ args ] ]
即可实现自动记录。