|
我想在开机的时候加载一个模块,在FC15之前的版本中,在/etc/rc.local这个文件,可以使用:modprobe 这个命令加载一个模块,可是现在 这个文件没有了,现在 要如何加载 一个模块呀?
内容和文件权限如下:
[root@Fedora hades]# more /etc/rc.d/rc.local
/sbin/modprobe i8k
权限:
[root@Fedora hades]# ls -als /etc/rc.d/rc.local
4 -rwxrwxrwx 1 root root 19 Nov 11 16:15 /etc/rc.d/rc.local
在网上看了N多的说明,也没解决这个问题
[root@Fedora hades]# systemctl enable rc-local.service
Warning: unit files do not carry install information. No operation executed
这个服务也不能启动,明明文件存在并且是可执行的,就是不工作,真是不知如何是好了。
PS:俺用的DELL机器,有个可以控制风扇的小软件,需要加载i8k这个模块,谢谢。
_____________________________________________________________________分割线
使用这个命令:
[root@Fedora rc.d]# systemctl enable i8k.service
i8k.service is not a native service, redirecting to /sbin/chkconfig.
Executing /sbin/chkconfig i8k on
Warning: unit files do not carry install information. No operation executed.
虽然这些可能是错误的信息出来,但i8k这个模块就是自动开机启动了。
因为这个i8k 在服务中有这个,所以,可能这个方法就可以解决了。
这个方法是不需要rc.local 这个文件的,呵呵。 |
|