Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

init_module '/path/to/module.ko' failed <File exists>

Tags:

android

insmod

I am trying to initiate a driver module by

insmod path/to/module.ko

and I am getting following error

> init_module 'path/to/module.ko' failed <File exists>

I am trying to understand if it means that the module is already up and running or is it completely failing to initialize at all.

I am looking for the meaning for <File exists>, does it mean it is already initialized?

like image 530
Steve H Avatar asked Mar 28 '13 20:03

Steve H


1 Answers

It means that the module is already loaded. Check the output of lsmod.

like image 98
marcantonio Avatar answered Oct 14 '22 06:10

marcantonio