FreeBSD6.2架设之内核编译

2009-05-13 11:32:28来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

Index:

  • 简介
  • Requirements
  • Step 1 查看当前机器自检信息.
  • Step 2备份原内核文件.
  • Step 3 编辑新内核描述文件.
  • Step 4 启用磁盘配额.
  • Step 5 控制台中禁用热启动
  • Step 6 内核编译前后对比.
  • Step 2 编译后的清理工作.
  • F.A.Q.
  • Links to other sources

简介
为你自己定制专用的内核,加入一些特定功能如QUOTA,禁止控制台重启,声卡,防火墙等,总之可以自己做到很多适合自己机器的配置。
Step 1 查看当前机器的自检信息.
内核编译最好本地操作,不要远程编译。
要是你修改过/etc/make.conf文件,一定要还原此文件。
确保/etc/make.conf文件如下Shell:
cat /etc/make.conf
# added by use.perl 2007-11-24 22:06:09
PERL_VER=5.8.8
PERL_VERSION=5.8.8
查看当前机器的自检信息,取得CPU 内存 显示卡 硬盘 网卡等信息
Shell:
dmesg | less
查看/usr/src/Makefile文件,此文件说明注意事项和具体操作步骤
Shell:
cd /usr/src/
less /usr/src/Makefile
# For individuals wanting to build from the sources currently on their
# system, the simple instructions are:
#
# 1.`cd /usr/src'
(or to the directory containing your source tree).

# 2.`make world'
#
# For individuals wanting to upgrade their sources (even if only a
# delta of a few days):
#
# 1.`cd /usr/src' (or to the directory containing your source tree).
# 2.`make buildworld'
# 3.`make buildkernel KERNCONF=YOUR_KERNEL_HERE' (default is GENERIC).
# 4.`make installkernel KERNCONF=YOUR_KERNEL_HERE' (default is GENERIC).
# 5.`reboot' (in single user mode: boot -s from the loader prompt).
# 6.`mergemaster -p'
# 7.`make installworld'
# 8.`make delete-old'
# 9.`mergemaster'
# 10.`reboot'
# 11.`make delete-old-libs' (in case no 3rd party program uses them anymore)
Step 2 备份当前内核描述文件.
查看当前机器内核描述文件
Shell:
uname -a
FreeBSD WOW.freemongolia.cn 6.2-RELEASE FreeBSD 6.2-RELEASE #0: Fri Jan 12 10:40:27 UTC 2007

[email=root@dessler.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERICi386]root@dessler.cse.buffalo.edu

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:FreeBSD高效简洁的系统升级方法

下一篇:freebsd6.2 KDE的安装