rmmod: can't change directory to '/lib/modules': No such file or directory

来源:互联网 发布:淘宝网店上架 编辑:程序博客网 时间:2024/06/15 22:12

[root@iTOP-4412]# mount /dev/sda1 /mnt/udisk/

[root@iTOP-4412]# insmod /mnt/udisk/linux/hello.ko 
[   98.485131] Hello World enter!
[root@iTOP-4412]# 
[root@iTOP-4412]# rmmod hello

rmmod: can't change directory to '/lib/modules': No such file or directory

报错,执行 “mkdir lib/modules/xxx” 指令,xxx 是执行 uname -r 指令后查询的内核版本号。

此时执行 rmmod hello,就会卸载成功。

[root@iTOP-4412]# rmmod hello
[ 1080.901263] Hello World exit!

阅读全文
0 0