Skip to main content

Linux & BSD, Are They Any Different? Of Course They Are!

While both Linux and the BSDs appear to be long lost siblings on paper, both being free and open-source, Unix-like, one close look and you'll observe the fine differences. There are quite the many differences between the two, and we have compiled some of the more prominent ones for you here!


Linux, BSD, GPL, BSD kernel/distribution, BSD license, Linus Torvalds, Unix, Linux kernel
1. Linux uses the GNU General Public License (GPL) under which if someone modifies the Linux kernel and distributes it, he/she will have to release the source code for the modifications, unlike BSDs that use the BSD license. If someone modifies the BSD kernel/distribution and distributes it, he/she won’t have to release the source code at all. Rather he/she can release the source code only if he wants to.

2. While the BSD code is not controlled by one individual but a core team that manages the project, Linux on the other hand is mostly maintained and controlled by its creator Linus Torvalds.

3. Both Linux and the BSDs are essentially Unix-like operating systems, however not the same lineage. While Linux was written by Linus Torvalds, BSD or “Berkeley Software Distribution,” was initially a set of modifications to Bell Unix developed at the University of California, Berkeley. On closer look, the BSDs are much more similar to UNIX since they are direct derivatives of traditional UNIX. Linux on the other hand is loosely based on a UNIX derivative called Minix.

4. Linux is technically just the Linux kernel. It is the various Linux distributions that have been assigned to bring together all the software required to create a complete Linux OS. So, basically, if you're looking to install Linux on your PC, you will have to chose among the many Linux distributions first (Ubuntu, Mint, Debian, Fedora etc). BSDs on the other hand are both a kernel and an operating system so that if you install FreeBSD, you just install FreeBSD, you're all set!

5. Since BSDs are developed using the Ports system users installing the same are more into installing from source rather than prepackaged binary packages.

6. BSDs usually don't run a bleeding edge version of anything. Linux, on the other hand, has plenty of distributions that offer bleeding edge packages. What you chose will depend upon your preference at the end of the day.

7. If you're looking to get a new system boasting of all the latest hardware, Linux is the way to go since Linux starts supporting recent hardware much sooner than BSDs. 

 

Comments

Popular posts from this blog

Change your Windows 8 Bootlogo

THIS IS HOW TO CREATE A CUSTOM BOOT LOGO! Confirmed Working on 8.1 As well! Step 1: Take ownership of your Bootres.dll using the following commands from an Administrator Command Prompt: takeown /f C:\Windows\Boot\Resources\bootres.dll icacls C:\Windows\Boot\Resources\bootres.dll /grant yourusername :f Note that you need to replace "yourusername" with your username... Step 2: Make a folder on your C: drive and call it bootlogo, and copy bootres.dll into it. Step 3: Make a folder called Logos (To edit your images in) Step 4: Your going to need to download some stuff into your bootlogo folder: www.coderforlife.com/projects/win7boot/extras/#signer http://dl.7-zip.org/7z930-x64.msi <--- Install This www.bome.com/products/restorator/downloads <-- I used the full version, however I don't know if the free version will work. ^^^RESHACKER WILL NOT WORK. LEAVES DLL CORRUPT^^^ This has been suggested as a replacement f...

Easy Way to Calculate Remainder of Long Division

       Most of the calculators unable to calulate Remainder of long division. Today I am going to show you a easy way to Calculate Remainder of Long Division using square-and-multiply algorithm. Consider example as (25) 17 % 77 As we know,             25 17 = 25 16 x 25 1 So we perform steps as follows:             25 1 % 77 = 25             25 2 % 77 = 9             25 4 % 77 = 9 2 % 77 = 4             25 8 % 77 = 4 2 % 77 = 16             25 16 % 77 = 16 2 % 77 =25 Since, 17 = 16 + 1 we stopped after 25 16 % 77  Final computation,           ...

Why to learn PHP?

PHP is basically an HTML-embedded scripting language that helps in writing dynamically generated webpage. The files underPHP comprise HTML tags, text and scripts witha file extension of “.php”. With the help of PHP, youcan create login pages, forums; design a form, and surveys, to name a few. Though now-a-days people use PHP for the development of websitesand web-applications, few of them still doubt about its capabilities. Here are some facts on why PHP should be chosen over other scripting languages.*.Easy To Use: The scripting language, coding and architecture are easy and simple to use in PHP in comparison toother programming languages.*.Technologically Advanced: PHP supports Linux, MySQL and Apache and is the base for several technologies like, CakePHP and Joomla.*.User-friendly: PHP offers the fast accessibility to the websites, thus immediately calling the databases. It has incredible speed which makes it different and popularamong the users. Moreover, the websites created using...