setserial: 一連の情報を取得できません。デバイスのioctlが不適切です。

setserial: 一連の情報を取得できません。デバイスのioctlが不適切です。
$ setserial /dev/ttyUSB0 -G
Cannot get serial info: Inappropriate ioctl for device

このエラーはどういう意味ですか?sttyうまく動作します:

$ stty -F /dev/ttyUSB0
speed 9600 baud; line = 0;
eof = ^A; min = 1; time = 0;
-brkint -icrnl -imaxbel
-opost -onlcr
-isig -icanon -iexten -echo -echoe -echok -echoctl -echoke

ベストアンサー1

これは、ドライバがsetserial使用しているIOCTLをサポートしていないことを意味します。

setserial gets the information via an ioctl() call. In case the driver 
for your device does not support TIOCGSERIAL, the "invalid argument" is 
returned.

Debian バグレポート)

sttyUSBシリアルデバイスに必要なすべての設定を実行することが可能であると思います。

おすすめ記事