Linux查看键鼠输入

文章目录

本文简单介绍几种在linux下查看键鼠输入的方法

通过打开input设备来读取输入

程序如下,使用时需要看情况修改input设备路径

c 复制代码
#include <fcntl.h>
#include <linux/input.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#define DEV_PATH "/dev/input/event1" // difference is possible
int main()
{
    int keys_fd;
    char ret[2];
    struct input_event t;
    keys_fd = open(DEV_PATH, O_RDONLY);
    if (keys_fd <= 0) {
        printf("open /dev/input/event1 device error!\n");
        return -1;
    }
    while (1) {
        if (read(keys_fd, &t, sizeof(t)) == sizeof(t)) {
            if (t.type == EV_KEY)
                if (t.value == 0 || t.value == 1) {
                    printf("key %d %s\n", t.code, (t.value) ? "Pressed" : "Released");
                    if (t.code == KEY_ESC)
                        break;
                }
        }
    }
    close(keys_fd);
 
    return 0;
}

通过第三方程序获取

xev

xinput

evtest

参考

Linux捕捉鼠标事件和键盘事件的方法

相关推荐
zhglhy6 分钟前
查看 Linux 操作系统信息的常用命令
linux·运维·服务器
大白的编程日记.12 分钟前
【Linux学习笔记】初识进程概念和进程PCB
linux·笔记·学习
照书抄代码14 分钟前
Linux中C++ gdb调试命令
linux·运维·服务器
czhc114007566317 分钟前
linux3 mkdir rmdir rm cp touch ls -d /*/
linux·运维
the_nov38 分钟前
2.Linux的权限理解
linux·运维·服务器
写代码的小王吧1 小时前
【安全】Java幂等性校验解决重复点击(6种实现方式)
java·linux·开发语言·安全·web安全·网络安全·音视频
5:001 小时前
Linux:(五种IO模型)
linux·运维·服务器
myloveasuka1 小时前
[Linux]进程与PCB的关系,进程的基本操作
linux·c语言·c++
鲸屿1951 小时前
Shell基础
linux·运维·服务器
vortex52 小时前
Bash中因数值比较引发的提权漏洞:数组注入与任意命令执行
linux·开发语言·安全·网络安全·渗透测试·bash