리눅스에서 시리얼 디바이스 상태 확인 방법(Shell cmd)

Posted by [하늘이]
2018. 12. 5. 21:14 IT/shell script, cmd
반응형

리눅스에서 시리얼 디바이스 상태 확인 방법

/dev 하위에 있는 것들을 체크


1. 사용가능한 시리얼 확인하기

    dmesg | grep tty


2. 시리얼 포트 설정 상태 확인하기

   stty -F [장치명]

   예) stty -F /dev/ttyS0


3. 시리얼 포트 속도 변경 하기

   stty [속도] < [장치명]

   예) stty 115200 < /dev/ttyS0


반응형

'IT > shell script, cmd' 카테고리의 다른 글

[shell script/cmd] 사용가 그룹 추가 및 확인  (0) 2018.12.05
[shell script/cmd] chmod  (0) 2018.12.05
[shell cmd] ps : 프로세스 확인  (0) 2015.06.28
[shell cmd] sort  (0) 2015.06.28
[shell cmd] more  (0) 2015.06.28