Module not found when I do modprobe

I am trying to install this module: https://github.com/mkottman/acpi_call

I did make, do the installation.

Then I saw what acpi_call.kois in /lib/modules/4.3.3-5-default/extra/.

When i do

modprobe acpi_call

I get

modprobe: FATAL: module acpi_call not found in / lib / modules / 4.3.3-5-default

I tried to put acpi_call.koin /lib/modules/4.3.3-5-default, but got the same result.

I would like to make it permanent so that the module is loaded upon reboot. I think this is only possible with modprobe.

+4
source share
2 answers

.ko /lib/modules/4.3.3-5-default/extra/ 4.3.3-5-default - , , depmod, . ( root):

depmod -ae

modprobe .

+7

make && sudo make install . , Makefile, .

0

Source: https://habr.com/ru/post/1624354/


All Articles