当前位置: 技术问答>linux和unix
使用非root用户加载模块出错
来源: 互联网 发布时间:2016-12-03
本文导语: 写了个驱动程序,使用root用户加载模块,并运行测试程序,是没有问题的。 但使用非root用户加载,会出现insmod: error inserting './scull.ko': -1 Operation not permitted 请问如何能让非root用户加载模块?谢谢 ...
写了个驱动程序,使用root用户加载模块,并运行测试程序,是没有问题的。
但使用非root用户加载,会出现insmod: error inserting './scull.ko': -1 Operation not permitted
请问如何能让非root用户加载模块?谢谢
但使用非root用户加载,会出现insmod: error inserting './scull.ko': -1 Operation not permitted
请问如何能让非root用户加载模块?谢谢
|
只有root用户才有权限加载模块
|
非root用户可以使用root用户加载的模块,但是只有root用户才有权限加载模块
|
只有root用户才有权限加载模块
|
修改权限,chmod 和chown
|
chomod 777 *.mod即可。
|
权限不够.