(二)小记——linux 查看主次设备号、以及misc_register生成的次设备号
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
本文转载于:http://blog.csdn.net/supenman_mwg/article/details/8023861
http://www.eefocus.com/spencer/blog/13-11/300459_174ec.html
http://www.360doc.com/content/12/0411/15/8363527_202773426.shtml
cd /dev
ls -l |grep 设备名 //显示主设备号和次设备号
cat /proc/devices //只显示主设备号
而对于misc_register注册后生成的设备统称为 杂项设备(misc device)
杂项设备也是在嵌入式系统中用得比较多的一种设备驱动。在 Linux 内核的include/linux目录下有miscdevice.h文件,要把自己定义的misc device从设备定义在这里。其实是因为这些字符设备不符合预先确定的字符设备范畴,所有这些设备采用主编号10 ,一起归于misc device,其实misc_register就是用主标号10调用register_chrdev()的。
也就是说,misc设备其实也就是特殊的字符设备,可自动生成设备节点。
查询其次设备号的方法是:
cat /proc/misc
若没有在/dev目录下生成对应的设备文件,则可以使用一下命令生成对应的设备:
cd /edv
mknod xxxx(设备名称) c 10 xx(对应的次设备号)
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献3条内容
所有评论(0)