arm 驱动相关命令

lsmod:查看已经加载的驱动,和命令:cat /proc/modules得到的结果一样,使用了/proc虚拟文件系统

insmod/modprobe 加载驱动

rmmod 卸载驱动,rmmod 不要带.ko的后缀

modinfo 查看驱动相关信息,这个命令很好使,比如,我有两个同名字的驱动,但是区分不了他们,使用modinfo可以看出内核相关的信息,比如:

zy@zyPc:~/Longmenshan/龙门山_熊小琳/龙门山项目gprs&3G/3G飞凌自制3G模块资料/6410-
linux-3G-software/bin$ modinfo ztemt.ko
filename:       /home/zy/Longmenshan/龙门山_熊小琳/龙门山项目gprs&3G/3G飞凌自制3G模块资料/6410-linux-3G-software/bin/ztemt.ko
license:        GPL
description:    USB Serial roah-Hartman, libing
author:         libing
depends:        
vermagic:       2.6.28.6 mod_unload ARMv6 
parm:           vendor:User specified USB idVendor (ushort)
parm:           product:User specified USB idProduct (ushort)
parm:           debug:Debug enabled or not (bool)

另外一个驱动的信息:

zy@zyPc:~/Longmenshan/龙门山_熊小琳/龙门山项目gprs&3G/3G自动重拨与有线切换$ modinfo ztemt.ko
filename:       /home/zy/Longmenshan/龙门山_熊小琳/龙门山项目gprs&3G/3G自动重拨与有线切换/ztemt.ko
license:        GPL
description:    USB Serial Driver core
author:         Greg Kroah-Hartman, [email protected], http://www.kroah.com/linux/
depends:        
vermagic:       2.6.36-FriendlyARM preempt mod_unload ARMv6 
parm:           vendor:User specified USB idVendor (ushort)
parm:           product:User specified USB idProduct (ushort)
parm:           debug:Debug enabled or not (bool)


3G拨号时查看日志信息:

tail -n 20 -f /var/log/messages
显示最新的20条信息,动态刷新数据



不断完善中...

你可能感兴趣的:(shell,ARM)