Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 linux 中(更具体地说是用于 Raspberry Pi 的 Raspbian/Debian)是否可以禁用特定应用程序的键盘输入?
关闭输入文件描述符 - 使用 C 很简单(除非任何其他描述符为输入打开,这不太可能)描述符为零。
close(0);
关闭此描述符后,任何读取都将失败,errno 设置为EBADF(错误的文件描述符)。
EBADF