Questions tagged «stty»

1
从串行端口接收数据
我想从RS232串口接收数据到终端,并带有指令到文件。它应该很直接。 cat /dev/ttyS0 cat /dev/ttyS0 > file.txt 在此之前,我已将参数配置为与设备(生化分析仪)的参数相匹配。 sudo stty -F /dev/ttyS0 9600 -parity cs8 cstopb 即 波特率 - 9600 平价 - 没有 比特 - 8位 停止比特 - 2 但我在终端上没有收到任何东西。它只是空白。问题是什么?

1
`stty -a`中的丢弃选项是什么?它使用`^ O`
在 stty -a,有一个选项 discard = ^0。我用Google搜索了,最接近的文档来自: http://www.tldp.org/HOWTO/Text-Terminal-HOWTO-17.html 这说 ^ O冲洗(或丢弃)。尚未在Linux中实现(但提议)。将输出发送到/ dev / null。 我试了几次,什么都没发生。如果没有实现,为什么要绑定 ^O 然后?
1 linux  terminal  stty 

3
为什么我的退格键不会被擦除?
每隔5到20分钟我需要重新输入 stty erase ^H 在控制台中因为我的退格键随机开始打印^ H而不是删除字符。这是在联想T410上的git bash中发生的 任何帮助将不胜感激这是非常烦人的
1 mingw  git-bash  stty 

0
终端没有回声
在Solaris 5.9(ksh)上的终端中,我在键入时看不到字符。只有在按下返回键后才能看到输入。我检查了终端设置,stty -a显示: echo echoe echok -echonl -noflsh -echoprt echoctl echoke 同时我stty -a在我的linux盒子上进行过检查,结果是一样的: echo echoe echok -echonl -noflsh -echoprt echoctl echoke 我知道stty -echo并且stty echo可以在控制台中禁用/启用回显。它在我的linux上做了,但是在我遇到问题的Solaris终端上没有任何影响。那么,它会是什么?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.