Linux – BSD Kernel Vs. Linux kernel?

bsdkernelkernel-moduleslinuxlinux-kernel

I wanted to know in technical terms; what is the difference between BSD Kernel and Linux Kernel.
In Linux, we can download the source kernel then patch it and make and make modules it. Even we have multiple tools to edit the kernel config such as menuconfig, xconfig and … .
But I couldn't find such kinda vast field on BSD. First, Could I download the BSD kernel? How could I config it? and …

So what am I asking is: (Without referring to ancestry and etymology)

  • Is the Kernel in each case (in)dependent of a distribution?
  • Ways to config Each Kernel and tools available for the job?
  • Whether any Patch work could be done in each case?
  • Availability of the kernel outside the realm of distribution? (Kernel Sources)?
  • Flavour of Kernels available in each case (X??BSD/Linux) Like XEN/Vmware/GEN?

Best Answer

Well, first off, you speak of BSD as if they're is only one. Technically, I suppose, there is the original one they were all derived from—last release was in 1995. Searching for "4.4-Lite2" finds several copies, you can find out more about it at the Wikipedia's Berkeley Software Distribution article.

Derived from it are—among many things*—FreeBSD, OpenBSD, and NetBSD. All three are open source, and you can get their source code. Someone who says BSD nowadays is probably referring to one of them.

If you want to quickly browse them, there is a FreeBSD and Linux Kernel Cross-Reference. That site also has several other Unix-like kernels.

Unlike Linux, however, which exists as a standalone kernel project, the BSD kernels often are part of a larger project—they aren't independent of the distro. For example, the FreeBSD kernel is part of the FreeBSD project and is maintained in the same subversion repository as the rest of the distro.

There are some places the kernel is used without the rest of the userland, e.g., in Debian's kFreeBSD port.


*: Parts of the original BSD have gone pretty far indeed. For example, you'll see the notes about portions of software being copyright The Regents of the University of California all over the place. A lot of that is BSD. If you read the many-page notice included with Windows, for example, it's there.

Related Question