|
|
发表于 2009-4-24 17:20:46
|
显示全部楼层
Here's the entire contents of vbox_build_module:
#!/bin/bash
echo "Building Virtualbox kernel modules for kernel $(uname -rv)"
cd /opt/VirtualBox-1.5.0/src/
make clean && make && make install
可以自己创建一个可执行文件: vbox_build_module,并将上文中的 "VirtualBox-1.5.0" 改成你现在用的版本。执行它。 |
|