最近在加载一个叫dmatest的模块时,报错modprobe: can't change directory to ' ... ': No such file or directory,做一个问题记录。
首先,modprobe的解释:
modprobe是linux的一个命令,可载入指定的个别模块,或是载入一组相依的模块。
modprobe会根据depmod所产生的相依关系,决定要载入哪些模块。若在载入过程中发生错误,在modprobe会卸载整组的模块。
可以看到modprobe确实是个好东西,其实出现上述错误也很好解决,就是缺少哪个目录直接在/lib/modules/路径下新建一个,如:
[root@Me usercase]# modprobe dmatest
modprobe: can't change directory to '4.9.123-ga7eaf1866-dirty': No such file or directory
[root@Me usercase]# mkdir /lib/modules/4.9.123-ga7eaf1866-dirty
//[root@Me usercase]# insmod dma.ko #首先加载dma驱动,确保dma是正常的
[root@Me usercase]# modprobe dmatest run=1 iterations=10
要把这个驱动(.ko)放到上面建好的文件夹里
现象:

end.
modprobe加载dmatest模块报错记录
博主记录加载dmatest模块时的报错问题。介绍了modprobe是Linux命令,可载入指定或一组相依模块,会依depmod产生的相依关系决定载入模块,出错会卸载整组模块。还提到解决报错的方法是在路径下新建缺少的目录,并放入驱动。
769

被折叠的 条评论
为什么被折叠?



