随笔分类 -  驱动内核

上一页 1 ··· 12 13 14 15 16 17 18 下一页

驱动内核
ubuntu 安装libusb
摘要:1.udev support requested but libudev header not installed /usr/local/lib 阅读全文

posted @ 2019-10-23 00:12 lydstory 阅读(1270) 评论(0) 推荐(0) 编辑

libusb二次调用
摘要:https://github.com/hmaarrfk/libcyusb 阅读全文

posted @ 2019-10-23 00:04 lydstory 阅读(179) 评论(0) 推荐(0) 编辑

wireshark 抓usb包
摘要:https://www.freebuf.com/articles/system/96216.html https://blog.csdn.net/shiailan/article/details/97305163 注意安装过程选择 usbpcap USBPcap 包 阅读全文

posted @ 2019-10-22 18:37 lydstory 阅读(1252) 评论(0) 推荐(0) 编辑

Ubuntu下查看so文件的函数列表
摘要:Ubuntu下查看so文件的函数列表 可使用如下命令: 1、nm -D XXX.so 2、objdump -tT XXX.so nm libcyusb.so | grep "usb_init" nm libcyusb.so | grep "usb_init" 阅读全文

posted @ 2019-10-22 15:50 lydstory 阅读(2078) 评论(0) 推荐(0) 编辑

执行dlsym()函数出现: undefined symbol
摘要:执行dlsym()函数出现: undefined symbol 执行dlsym()函数出现: undefined symbol 当这个问题出现的时候,可以检查产生so文件的cpp文件,看看是否已经用 extern C{ /* code here */} 把C++的函数包裹起来 文章最后发布于: 20 阅读全文

posted @ 2019-10-22 15:43 lydstory 阅读(2451) 评论(0) 推荐(0) 编辑

usb驱动正在使用不能卸载
摘要:@ubuntu:/home/lyd# rmmod cyusb3610rmmod: ERROR: Module cyusb3610 is not currently loadedroot@ubuntu:/home/lyd# rmmod cyusb3610rmmod: ERROR: Module cyu 阅读全文

posted @ 2019-10-22 15:25 lydstory 阅读(543) 评论(0) 推荐(0) 编辑

lsusb查看usb设备
摘要:root@ubuntu:/home/lyd/work/code/cyusb# lsusb Bus 001 Device 009: ID 04b4:00f1 Cypress Semiconductor Corp. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 002 Device 004: ID 0e0f:0... 阅读全文

posted @ 2019-10-22 15:20 lydstory 阅读(326) 评论(0) 推荐(0) 编辑

dlopen 加载so库
摘要:#include <stdio.h> #include <dlfcn.h> int main(int argc, char **argv) { void *handle; double (*cosine)(double); char *error; handle = dlopen ("/tmp/libtest.so", RTLD_LAZY); if (!handle) { fprintf (std 阅读全文

posted @ 2019-10-22 13:06 lydstory 阅读(866) 评论(0) 推荐(0) 编辑

安装驱动模块ko
摘要:1. make install 2. 3.手动加载驱动程序 [root@localhost template]# modprobe usbnet [root@localhost template]# insmod cyusb3610.ko If you want to unload the driv 阅读全文

posted @ 2019-10-22 11:35 lydstory 阅读(941) 评论(0) 推荐(0) 编辑

yuminstallkernel-headers
摘要:yuminstallkernel-headers 已经安装 阅读全文

posted @ 2019-10-22 11:01 lydstory 阅读(917) 评论(0) 推荐(0) 编辑

Manjaro 安装源码报错 *** 没有规则可制作目标“modules”。 停
摘要:https://blog.csdn.net/lsvtogergo/article/details/81741532 阅读全文

posted @ 2019-10-22 10:57 lydstory 阅读(906) 评论(0) 推荐(0) 编辑

Ubuntu如何安装pacman
摘要:https://blog.csdn.net/zangcf/article/details/22318965 https://www.cyberciti.biz/faq/how-to-install-yaourt-in-arch-linux/ 阅读全文

posted @ 2019-10-22 10:54 lydstory 阅读(2719) 评论(0) 推荐(0) 编辑

yaourt
摘要:https://blog.csdn.net/relcodego/article/details/50531379 https://blog.csdn.net/lsvtogergo/article/details/81741532 linux 内核模块编译 no rule make target 阅读全文

posted @ 2019-10-22 10:44 lydstory 阅读(101) 评论(0) 推荐(0) 编辑

linux内核安装与编译ko
摘要:https://blog.csdn.net/crazycoder8848/article/details/44132731 阅读全文

posted @ 2019-10-22 10:33 lydstory 阅读(1871) 评论(0) 推荐(0) 编辑

igb网卡驱动程序
摘要:https://blog.csdn.net/wangcg123/article/details/74317431 阅读全文

posted @ 2019-10-21 20:20 lydstory 阅读(1812) 评论(0) 推荐(0) 编辑

regsvr32 驱动
摘要:1、将SYS驱动文件放到系统目录的SYSTEM32目录中。2、按WIN+R组合键,在运行框中输入:regsvr32 sys所在全路径,点击确定即可。 阅读全文

posted @ 2019-10-21 17:53 lydstory 阅读(227) 评论(0) 推荐(0) 编辑

usb驱动
摘要:vista win7 win8 wxp ubuntu 阅读全文

posted @ 2019-10-21 16:37 lydstory 阅读(224) 评论(0) 推荐(0) 编辑

vs2010驱动环境
摘要:https://www.cnblogs.com/quark/archive/2013/05/20/3088974.html 阅读全文

posted @ 2019-10-17 03:00 lydstory 阅读(102) 评论(0) 推荐(0) 编辑

libusb
摘要:https://blog.csdn.net/hfyutdg/article/details/83896116 阅读全文

posted @ 2019-10-17 02:06 lydstory 阅读(102) 评论(0) 推荐(0) 编辑

rsync_execute
摘要:实时同步 阅读全文

posted @ 2019-10-17 00:56 lydstory 阅读(133) 评论(0) 推荐(0) 编辑

上一页 1 ··· 12 13 14 15 16 17 18 下一页

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

统计

点击右上角即可分享
微信分享提示