Posts Tagged RELEASE-7.0
FreeBSD 7.0-RELEASE Kernel Optimization
Posted by Ville Walveranta in Technical on 28 June 2008
Below is my FreeBSD 7.0 kernel configuration file. I created it on my reference system, to be used on four production servers whose hardware configurations differ some. For that reason there’re few options (indicated as “[OPTION]“) that are conditional for the configurations. I’ve also left in IPv6 options which are currently commented out, but that I may take into use later if/when IPv6 becomes more prevalent in the environment these servers operate.
| | | copy code | | ? |
| 001 | |
| 002 | # |
| 003 | # INERTIA -- Inertia kernel configuration file for FreeBSD/i386 |
| 004 | # |
| 005 | # For more information on this file, please read the handbook section on |
| 006 | # Kernel Configuration Files: |
| 007 | # |
| 008 | # http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html |
| 009 | # |
| 010 | # The handbook is also available locally in /usr/share/doc/handbook |
| 011 | # if you've installed the doc distribution, otherwise always see the |
| 012 | # FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the |
| 013 | # latest information. |
| 014 | # |
| 015 | # An exhaustive list of options and more detailed explanations of the |
| 016 | # device lines is also present in the ../../conf/NOTES and NOTES files. |
| 017 | # If you are in doubt as to the purpose or necessity of a line, check first |
| 018 | # in NOTES. |
| 019 | # |
| 020 | # Based on |
| 021 | # $FreeBSD: src/sys/i386/conf/GENERIC,v 1.474.2.2.2.1 2008/02/06 03:24:28 scottl Exp $ |
| 022 | |
| 023 | ident INERTIA |
| 024 | machine i386 |
| 025 | cpu I686_CPU |
| 026 | |
| 027 | options SMP # Symmetric MultiProcessor Kernel (`device apic' is also required for multiprocessor use) |
| 028 | options SCHED_4BSD # 4BSD scheduler |
| 029 | options PREEMPTION # Enable kernel thread preemption |
| 030 | options INET # InterNETworking |
| 031 | #options INET6 # IPv6 communications protocols |
| 032 | options FFS # Berkeley Fast Filesystem |
| 033 | options SOFTUPDATES # Enable FFS soft updates support |
| 034 | options UFS_ACL # Support for access control lists |
| 035 | options UFS_DIRHASH # Improve performance on big dirs |
| 036 | options CD9660 # ISO 9660 Filesystem |
| 037 | options PROCFS # Process filesystem (requires PSEUDOFS) |
| 038 | options PSEUDOFS # Pseudo-filesystem framework |
| 039 | options MSDOSFS # MSDOS filesystem support (for floppies) |
| 040 | options COMPAT_43 # Compatible with BSD 4.3 (required) |
| 041 | options COMPAT_FREEBSD4 # Compatible with FreeBSD4 |
| 042 | options COMPAT_FREEBSD5 # Compatible with FreeBSD5 |
| 043 | options COMPAT_FREEBSD6 # Compatible with FreeBSD6 |
| 044 | options SCSI_DELAY=15000 # Delay (in ms) before probing SCSI (TWA/TWE issue) |
| 045 | options KTRACE # ktrace(1) support |
| 046 | options SYSVSHM # SYSV-style shared memory |
| 047 | options SYSVMSG # SYSV-style message queues |
| 048 | options SYSVSEM # SYSV-style semaphores |
| 049 | options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions |
| 050 | options KBD_INSTALL_CDEV # install a CDEV entry in /dev, may be needed to hot-plug USB keyboards |
| 051 | options AHC_REG_PRETTY_PRINT # Print register bitfields in debug output |
| 052 | options AHD_REG_PRETTY_PRINT # Print register bitfields in debug output |
| 053 | options ADAPTIVE_GIANT # Giant mutex is adaptive |
| 054 | options ACCEPT_FILTER_HTTP # Must be here or AcceptFilter won't work w/Apache2 |
| 055 | options SC_DISABLE_REBOOT # Disable Ctrl-Alt-Del reboot (this is a server) |
| 056 | |
| 057 | device apic # I/O APIC (required) |
| 058 | device npx # The Numeric Processing eXtension driver (required) |
| 059 | |
| 060 | device pci |
| 061 | device isa # Required by npx |
| 062 | |
| 063 | device fdc # Floppy drives |
| 064 | |
| 065 | device ata # ATA and ATAPI devices |
| 066 | device atadisk # ATA disk drives |
| 067 | device ataraid # ATA RAID drives [OPTION] |
| 068 | device atapicd # ATAPI CDROM drives |
| 069 | options ATA_STATIC_ID # Static device numbering |
| 070 | |
| 071 | device scbus # SCSI bus (required for SCSI, ALSO REQ'D FOR SATA-RAID, USB/umass) |
| 072 | device da # Direct Access (disks) |
| 073 | device pass # Passthrough device (direct SCSI access) |
| 074 | |
| 075 | #device twe # 3ware ATA RAID [OPTION] |
| 076 | #device twa # 3ware 9000 series PATA/SATA RAID [OPTION] |
| 077 | #options TWA_DEBUG # 0-10; 10 prints the most messages; enable for twa debug only |
| 078 | |
| 079 | device atkbdc # AT keyboard controller |
| 080 | device atkbd # AT keyboard |
| 081 | device kbdmux # keyboard multiplexer |
| 082 | |
| 083 | device vga # VGA video card driver |
| 084 | device sc # syscons, the default console driver |
| 085 | device sio # 8250, 16[45]50 based serial ports |
| 086 | |
| 087 | device ppc # Parallel port |
| 088 | device ppbus # Parallel port bus (required) |
| 089 | device lpt # Printer |
| 090 | device ppi # Parallel port interface device |
| 091 | |
| 092 | #device miibus # MII bus support (required by some NICs) [OPTION] |
| 093 | #device fxp # Intel EtherExpress PRO/100B (82557, 82558); requires miibus [OPTION] |
| 094 | device em # Intel PRO/1000 adapter Gigabit Ethernet Card [OPTION] |
| 095 | |
| 096 | options DEVICE_POLLING # Imporoves network driver performance |
| 097 | |
| 098 | device coretemp # On-die temperature sensor on Intel Core and newer CPUs [OPTION] |
| 099 | |
| 100 | device loop # Network loopback |
| 101 | device random # Entropy device |
| 102 | device ether # Ethernet support |
| 103 | device pty # Pseudo-ttys (telnet etc) |
| 104 | #device gif # IPv6 and IPv4 tunneling |
| 105 | #device faith # IPv6-to-IPv4 relaying (translation) |
| 106 | device bpf # Berkeley packet filter |
| 107 | |
| 108 | # USB support [OPTION] |
| 109 | device uhci # USB support / UHCI PCI->USB interface |
| 110 | device ohci # USB support / OHCI PCI->USB interface |
| 111 | device ehci # USB support / EHCI PCI->USB interface (USB 2.0) |
| 112 | device usb # USB support / USB Bus (required) |
| 113 | device ugen # USB support / Generic |
| 114 | device uhid # USB support / "Human Interface Devices" |
| 115 | device ukbd # USB support / Keyboard |
| 116 | device umass # USB support / Disks/Mass storage - Requires scbus and da |
| 117 | |
| 118 | options COMPAT_LINUX # Linux compat / Enable Linux ABI emulation |
| 119 | options COMPAT_AOUT # Linux compat / Enable i386 a.out binary support |
| 120 | options LINPROCFS # Linux compat / Enable procfs support (COMPAT_LINUX / PSEUDOFS) |
| 121 |
FreeBSD 7.0 New Install
Posted by Ville Walveranta in Technical on 28 June 2008
I’ve been running various versions of FreeBSD since 2001, and over that time the installation procedure has changed several times as new versions of the operating system have been released. Since I’m jack of all trades (or at least many trades), often several months or more passes without significant work in the UNIX environment, and my memory fades as I’m engrossed in something completely different such as software development work. I’m still running FreeBSD 6.1 in production environments, but want to make the move to 7.0 soon. Before doing so, however, I decided to set up a reference system and document the setup process to avoid major surprises (or my own memory glitches) as I reinstall the OS on the production systems — and hopefully have as a result minimum downtime possible.
Step one… FreeBSD installation using the Custom install. I post my notes below; perhaps someone will find this useful. The system is being set up as a web/db/mail server that is administered remotely; no X11 is needed or desired.
- Use custom install w/defaults except..
Skip PCCARD: YES
Media Type: CDROM - Set keymap if not ASCII (I use Finnish keyboard so I selected “Finnish ISO”) and timezone in post install.
- Old mount point & label info is ok (from the older installations). I use “4069M” for boot, “6100M” for swap, and rest for application data (generally a largish RAID-5 or RAID-6 array is used), the respective mount point labels are “/”, swap, and “/usr”. I use standard boot record since no other operating systems are installed on the system. Boot drive is made bootable, softupdates is enabled on the data slice.
- Configure network, system name, keyboard map (sysinstall should’ve created delta for it) in /etc/rc.conf. Much more should and will go into it, but the basics that will get the system online are:
keymap="finnish.iso" #obviously optional
hostname="this.systemname.com"
defaultrouter="192.168.1.1"
ifconfig_em0="inet 192.168.1.99 netmask 255.255.255.0" #currently installing behind a firewall
fsck_y_enable="yes" #this is good to set in case your system crashes during setup without orderly shutdown.. you don't have to press "yes" a million times
Note that you may have a different kind of network interface and you might have to adjust the “ifconfig_em0 accordingly. - Configure DNSes in /etc/resolv.conf. I use OpenDNS servers, like so:
domain this.systemname.com
nameserver 208.67.222.222
nameserver 208.67.220.220 - If you’re basing this installation on an older install, import your old .cshrc or the equivalent alias/setting file of your favorite shell (makes the life easier as aliases work, etc).
- If you’re not using X11, enter `WITHOUT_X11′ in /etc/make.conf so you don’t have to set it in the environment every time.
WITHOUT_X11=yes #don't compile GUI to ports apps
CPUTYPE=i686 #set this for modern Intel CPUs
KERNCONF=YOUR_KERNEL_CONF_FILE_NAME
OPENSSLBASE=/usr/local #obviously if you use OpenSSL - Build /usr/ports/net/cvsup with WITHOUT_X11 set in make.conf (as above) or in the environment, or use /usr/ports/net/cvsup-without-gui/ and update the ports tree.First create /usr/local/etc/cvsup/supfile.ports containing:
*default host=cvsup12.FreeBSD.org
*default base=/usr/local/etc/cvsup
*default prefix=/usr
*default release=cvs tag=.
*default delete use-rel-suffix
ports-all
If you want to use the fastest cvs server available, install /usr/ports/sysutils/fastest_cvsup/ and run with fastest_cvsup -c us (replace ‘us’ with your local country code if you’re not in the U.S.
), then use the cvs server indicated as the default host. Then update ports with
/usr/local/bin/cvsup -g -L 2 /usr/local/etc/cvsup/supfile.portsYou can use an optional `-d 100′ to limit file deletions to 100 initially to make sure update is working and the entire ports tree won’t be wiped out. Then remove it for full run (intial run *will* need to delete more than 100 files, but they’re not all in sequence)
- Build & install /usr/ports/editors/joe (or whatever your favorite editor might be); this makes life easier as configuration progresses.
- Build & install /usr/ports/security/openssh-portable. Use defaults + select `Enable CHROOT support’ (for later use)
- Create a non-root user for remote login. vipw is an easy way to manage users.
- Configure OpenSSH daemon in /usr/local/etc/ssh/sshd_config & make sure sshd starts (set openssh_enable=”yes” in /etc/rc.conf, and make sure the start file is called /usr/local/etc/rc.d/openssh.sh; reboot may be required to create the necessary server keys & start the service (confirm with ps -waux | grep “ssh”).sshd_config params of note (for initial access) are..
AllowUsers root MyUserName
PermitRootLogin without-password #allow root login only with a RSA-key
PasswordAuthentication yes
UsePAM no
UseDNS no
** remote login should be possible at this point ** - Create /usr/local/etc/cvsup/supfile.sources with the below content, then update sources with /usr/local/bin/cvsup -g -L 2 /usr/local/etc/cvsup/supfile.sources
*default host=cvsup17.FreeBSD.org
*default base=/usr/local/etc/cvsup
*default prefix=/usr
*default release=cvs tag=RELENG_7_0
*default delete use-rel-suffix
src-all
doc-all - Review kernel configuration at /usr/src/sys/i386/conf (see my kernel defaults in the next post).
- Build & install new world if any deltas were applied in source update:
cd /usr/src && make buildworld.
If there are problems, try the following, then run buildworld again.
cd /usr/obj
chflags -R noschg *
rm -rf *
When buildworld completes, reboot the system, select option 4, or interrupt the reboot (option 6) and type boot -s to boot into single user mode; accept /bin/sh as the shell, then continue with the following commands to install new world:
mount -u /
mount -a -t ufs
swapon -acd /usr/src
make installworldexit (goes multi-user)
- Build custom kernel & install with below commands:
if this fails, try cd /usr/src/usr.sbin/config/ && make depend all install clean and also check your kernel configuration file for problems, then start the above build process again.
cd /usr/src
make cleandir
make buildkernel
- Make a backup copy of the old kernel and install the new:
cp -Rp /boot/kernel /boot/kernel.recent
make installkernel - Reboot & confirm that the latest kernel version is running with uname -a (or uname -rs).
- Make a copy of the functional kernel if boot is ok:chflags -R noschg /boot/kernel && cp -Rp /boot/kernel /boot/kernel.save && chflags -R schg /boot/kernel
- Set /boot/loader.conf parameters, like so:
kern.ipc.nmbclusters=16384 # Set the number of mbuf clusters
kern.ipc.maxsockets=16384 # Set the number of tcp sockets
kern.ipc.maxpipekva=67108864
kern.maxusers=128
Basic install & kernel setup is now complete.