分页: 1 / 1
FATAL: modprobe: Could not load /lib/modules/.../module.deb
发表于 : 2009-03-17 17:09
由 ptpt52
我自己编译的最新内核,启动时出现
代码: 全选
FATAL: modprobe: Could not load /lib/modules/2.6.28.7-goo/modules.dep
我检查过 /lib/modules/2.6.28.7-goo/modules.dep 存在。
虽然启动后运行正常,但不明白为什么有这个错误
我安照网上的说法
sudo update-initramfs -u
也不行
为什么啊,高手支招
Re: FATAL: modprobe: Could not load /lib/modules/.../module.deb
发表于 : 2009-03-19 21:04
由 fbsd4
碰到同样错误,比较郁闷。
Re: FATAL: modprobe: Could not load /lib/modules/.../module.deb
发表于 : 2009-12-08 16:41
由 qq126512306
不知道LZ解决没有
Some people have reported that packing and unpacking the module does the trick, so after a short stint at the prompt I was hoping this would be fixed:
cd /boot
cp initrd.img-2.6.29.4 initrd-2.6.29.4.old (Just making a backup)
depmod -a
update-initramfs -k 2.6.29.4 -c
cd /tmp
gzip -dc /boot/initrd.img-2.6.29.4| cpio -id
touch lib/modules/2.6.29.4/modules.dep
find ./ | cpio -H newc -o > /boot/initrd.img-2.6.29.4.new
gzip /boot/initrd.img-2.6.29.4.new
cd /boot
mv initrd.img-2.6.29.4.new.gz initrd.img-2.6.29.4
Didn’t fix the problem unfortunately, but the I stumbled across a forum post over at Remote-Exploit and the following rather simple cammand fixed the whole shebang:
update-grub
希望有帮助!

Re: FATAL: modprobe: Could not load /lib/modules/.../module.deb
发表于 : 2010-01-20 20:45
由 ptpt52
没解决,后来重新配置了内核,重新编译打包安装,又没有此问题了,不解。
Re: FATAL: modprobe: Could not load /lib/modules/.../module.deb
发表于 : 2010-03-30 19:11
由 amazingp35
强大的人们 完全看不懂啊
Re: FATAL: modprobe: Could not load /lib/modules/.../module.
发表于 : 2010-07-14 14:12
由 fanbih
删掉了之前生成的/boot/initrd.img-2.6.28,执行
#cd /usr/src/linux
#update-initramfs –c –k 2.6.28
这样,重新在/boot下创建initrd.img-2.6.28,
sudo update-grub
重启后,进入了新内核,内核编译升级成功。
在Ubuntuserver9.10下测试成功