【轉】Linux如何在系統啓動時自動加載模塊

一、Linux安裝驅動程序

 

tar zxf ixgbe-<x.x.x>.tar.gzhtml

cd ixgbe-<x.x.x>/src/post

make installspa

modprobe <ixgbe>htm

 

卸載驅動blog

cd ixgbe-<x.x.x>/src/it

make uninstallclass

 

 

二、Linux如何在系統啓動時自動加載模塊

 

原文:http://www.cnblogs.com/image-eye/archive/2011/08/19/2145777.htmlmodule

 

經過研究rc.sysinit後發現,只須要修改下列地方就能夠了,沒必要這麼麻煩的:
rc.sysinit中有這樣的一段代碼:
# Load other user-defined modules
for file in /etc/sysconfig/modules/*.modules ; do
[ -x $file ] && $file
done

# Load modules (for backward compatibility with VARs)
if [ -f /etc/rc.modules ]; then
/etc/rc.modules
fi

可見只須要配置兩個地方的任何一個就能夠了(以加載fuse內核模塊爲例)

(1) 在/etc/sysconfig/modules/下面建立*.modules文件,參考已經有的*.modules文件,例如我寫建立文件my.modules,內容爲modprobe fuse
記得最後修改權限:chmod 755 my.modules
 
(2) 或者在/etc/rc.modules裏面加上modprobe fuse,沒有的話建立該文件。 而後reboot,lsmod | grep fuse驗證一下就OK了。
相關文章
相關標籤/搜索