#
# GENERIC -- Generic machine kernel
#
## 主机类型i386,因为FreeBSD是在X86上运行的嘛
machine "i386"
## CPU 种类,看看自己属于几86嘛
#cpu "I386_CPU" # 386 的电脑
#cpu "I486_CPU" # 486 的电脑
cpu "I586_CPU" # 586 的电脑
#cpu "I686_CPU" # 686 的电脑
## 内核标识,没有特殊意义
ident GENERIC
## 定义一些系统的结构应该保留多大的内存空间,通常
## 16 或 32 就够了, 除非你开站,或运行X,就用 64 吧
## 注意这个值永远小于你的内存数目
maxusers 32
## 一个用户可以执行的进程数限制
options CHILD_MAX=256
## 一个用户可以打开的文件数限制
options OPEN_MAX=256
## 打开内核调试, 一般人用不到
#options DDB
## 允许调试跟踪内存单元(详情見 ktrace, kdump), 还是留给内核黑客用吧
#options KTRACE #kernel tracing
## 没有 FPU (SX) 的朋友用的, 用 DX 的人就不用了
#options MATH_EMULATE #Support for x87 emulation
## 你有64MB以上内存量时指定,单位是K。例如 128MB RAM:
#options "MAXMEM=(128*1024)"
## 支持网络, 一定要有,真是废话
options INET #InterNETworking
## IPX 相关协议
#options IPX #IPX/SPX communications protocols
#options IPXIP #IPX in IP encapsulation (not available
#options IPTUNNEL #IP in IPX encapsulation (not available
#options IPXPRINTFS=0 #IPX/SPX Console Debugging Information
#options IPX_ERRPRINTFS=0 #IPX/SPX Console Debugging Information
## 文件系统设定
## 只有 UFS 是必需的, 其他的可以不必, 要用时 kernel 会用 LKM 载入
## 注意文件系统名有数字时要用双引号括起来哦,看看下面的LINUX文件系统就知道了
options FFS #Berkeley Fast Filesystem
#options NFS #Network Filesystem
#options NFS_NOSERVER #Disable the NFS-server code.
#options MSDOSFS #MSDOS Filesystem
#options "CD9660" #ISO 9660 Filesystem
#options PROCFS #Process filesystem
#options KERNFS #Kernel filesystem
#options NQNFS #Enable NQNFS lease checking
#options FDESC #File descriptor filesystem
#options LFS #Log filesystem
#options MFS #Memory File System
#options NULLFS #NULL filesystem
#options PORTAL #Portal filesystem
会员注册
会员登录
个人空间
发表评论