Dica para "não esquecer".
Um kernel FreeBSD é extremamente simples de se compilar, basta adicionar as opções no arquivo TXT.
Obtendo o Kernel
# pkg install subversion
# rehash
# svn checkout svn://svn.freebsd.org/base/releng/10.0/ /usr/src
Dicas para o arquivo de configuração.
# cd /usr/src/sys/amd64/conf
# cp GENERIC NOVOKERNEL
# ee NOVOKERNEL
##No inicio substitua o GENERIC
ident NOVOKERNEL
machine amd64
device pf
device pflog
options ALTQ
options ALTQ_CBQ # Class Bases Queuing (CBQ)
options ALTQ_RED # Random Early Detection (RED)
options ALTQ_RIO # RED In/Out
options ALTQ_HFSC # Hierarchical Packet Scheduler (HFSC)
options ALTQ_PRIQ # Priority Queuing (PRIQ)
options ALTQ_NOPCC # Required for SMP build
options IPFIREWALL
options IPDIVERT
options IPFIREWALL_VERBOSE
options IPFIREWALL_VERBOSE_LIMIT=10
options IPFIREWALL_DEFAULT_TO_ACCEPT
options IPFIREWALL_FORWARD
options IPFIREWALL_NAT
options LIBALIAS
#Squid Options
options MSGMNB=16384
options MSGMNI=41
options MSGSEG=2049
options MSGSSZ=64
options MSGTQL=512
options SHMSEG=16
options SHMMNI=32
options SHMMAX=2097152
options SHMALL=3096
#Qos
options DUMMYNET
# Support TCP sign. Used for IPSec
options TCP_SIGNATURE
options IPSEC
# Change normal|kernel messages color
options SC_NORM_ATTR=(FG_GREEN|BG_BLACK)
options SC_KERNEL_CONS_ATTR=(FG_YELLOW|BG_BLACK)
# # More scroll space
options SC_HISTORY_SIZE=8192
#
# # Adding hardware crypto device
device crypto
device cryptodev
# Useful network interfaces
device tap #Virtual Ethernet driver
device gre #IP over IP tunneling
device if_bridge #Bridge interface
device pfsync #synchronization interface for PF
device carp #Common Address Redundancy Protocol
device enc #IPsec interface
device lagg #Link aggregation interface
device stf #IPv4-IPv6 port
options ROUTETABLES=6
# Virtual networking for jail
options VIMAGE
device epair
#
# The nullFS to mount local directory
options NULLFS
#####EOF
Compilando o Kernel :
# cd /usr/src
Para compilar:
# make buildkernel KERNCONF=NOVOKERNEL
Para instalar:
# make installkernel KERNCONF=NOVOKERNEL
Assim que terminar ...
# reboot
Feito isso basta esperar a máquina subir para conferir com:
# uname -a
Se o seu NOVOKERNEL estará na descrição.
um abraço.
Referências:
https://www.freebsd.org/doc/handbook/kernelconfig.html
http://www.freebsd.org/doc/handbook/kernelconfig-building.html
Nenhum comentário:
Postar um comentário