ubuntu 下modprobe报错。 WARNING: Deprecated config file /etc/modprobe.conf, all config files belong into /etc/modprobe.d/.

意思是,反对配置/etc/modprobe.conf文件,所有的配置应该归于 /etc/modprobe.d/文件夹之下

问题的根源是在利用oprofile到postgres底下时,由于是在虚拟机上跑的,所以需要设置时间:

来自http://wiki.postgresql.org/wiki/Profiling_with_OProfile

You can make this setting permanent by adding a file to /etc/modprobe.d (at least on Fedora) called oprofile.conf with these contents:

options oprofile timer=1

但是这个命令对Fedora系列的支持要好,ubuntu可能不太支持。所以可以:
mv /etc/modprobe.conf /etc/modprobe.d/oprofile.conf
或者更好的用
 sudo opcontrol --deinit
 sudo modprobe oprofile timer=1

 

posted @ 2013-04-26 19:41  立春了  Views(3280)  Comments(0Edit  收藏  举报