[Arm Linux]使用modprobe时 “modprobe: can't change directory to ...”

最近在加载一个叫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)放到上面建好的文件夹里

现象:
[Arm Linux]使用modprobe时 “modprobe: can't change directory to ...”_第1张图片

end.

你可能感兴趣的:(Arm,Linux)