Skip to main content

Evil corporations poisoning Linux

 Long long ago, the Linux kernel was released with its source code for free to the world. The linux kernel does not do much on its own, but by pairing it with other free open source tools, drivers and programs such as those from GNU, you get a modern operating system primarily for the Intel x86/64 processors but also many other processor vendors.

Putting the kernel and hundreds of other free tools or drivers together is not easy and thus, we had the rise of distribution or Linux Distros. Many distros were maintained by volunteers but others also had commercial companies behind them. It didn't make sense to sell a distro back then, due to Windows's monopoly, the distro's not being very polished or easy to use and most importantly made of free open source software which anyone else could easily copy to sell a competing product.

So how could these distro companies make money, well, by selling support licenses. Linux would have failed a long time ago if it wasn't for its free distribution because Microsoft would have easily beaten any of these companies out of business with a simple aggressive pricing policy. If there was a special program that only worked in linux and hence pushed customer's towards it, Microsoft could very easily rebuild that program in windows and offer it for free such as Netscape navigator vs MS Explorer. Even Windows Media Player was the demise of another software company in the 90s. In one of the videos, Microsoft's lawyer goes to say that offering better software at a cheaper price is an American thing to do. By that logic, Linux is either the best American thing to happen or perhaps the only example where communism succeeded anywhere. Thousands of developers working together expecting nothing in return to build something that can bring down a giant Monoply just like the Tsar himself.

Speaking of lawyers, reminds me of another giant, Oracle. They are more a law firm than a software company. They were known for their databases before their lawyers and now there are many open source Database programs that are if not better at least equivalent in their functions. But that is not why they are relevant to this discussion i.e having better software, they are relevant for poisoning FOSS.

Initially, the open source systems did not have a major share of the software market and hence were largely ignored by the monopolies but as their market share increased, the giants started to slowly poison the free rivers of open source software.

First, they straight up started acquiring the commercial FOSS companies for large sums of money and then grinding development of the open source software to a halt. For instance, After IBM acquired Redhat, they put an end to CentOS and now are no longer providing the source code for RHEL unless you buy a license from them. In protest, Oracle, (yes, Oracle), is saying that IBM is trying to make profits at the expense of the open source community. I mean, just look at what oracle did to MySQL and why MariaDB exists, or how about Java and that rabbit hole.

What is the solution for all this?

Don't fall to the temptations of the giants and donate/support the volunteers maintaining FOSS. Use the following:

https://www.gnu.org/distros/free-distros.html

Comments

Popular posts from this blog

Top Android Encryption Apps

After I released my own android encryption app called Dexacrypt , I wanted to see what else was available on the market. Although, I thought my idea was unique there are already a large number of encryption apps on the market. Let's review some of them and rank them.  In this post, we will only look at message encryption apps and not advanced apps such as Surespot or SSE that provide file encryption or messaging. Meet the Contenders: Encrypt Messages And Text This app was last updated in November 2021 and has more than a 100,000 installs. Many reviews praise its simple UI and small size, however one user has specified that the latest version no longer works on Android 12. Secret Message - Encrypt/Decrypt Messages This app has a slightly larger size of 12 MB but only has 5000+ installs. The top review says and I quote, I am sorry but this is not as easy or self explanatory as it should be. You need to grab someone and hand them a phone and watch their expression. Ouch! maybe h

Beware: Those who use chatGPT for their exams or work!

ChatGPT struggles with prime numbers! While trying to understand how the public private key cryptographic architecture works using chatGPT, I asked what is a coprime number after chatgpt explained its use in the said architecture. Here is the response in all its glory: Two numbers are said to be coprime (or relatively prime) if they have no common prime factors other than 1. In other words, their greatest common divisor (GCD) is 1. For example: 8 and 15 are coprime because their only common factor is 1. 14 and 15 are coprime because they share no common factors other than 1. 10 and 21 are not coprime because they both have 1 as a common factor. Looking at the first and then the last example which is supposed to be a counter-example as to what is not a coprime number, we can clearly see that chatgpt gives the same reason for each case i.e they only have 1 as a common factor. After further investigation, chatgpt replies: Apologies for the confusion. You're correct. 10 and 21 do not h

GameDev Lessons: Endless Runners Part 1

Every Game Developer probably starts with an endless runner and there are many tutorials on the internet to do just that but after building a few myself, I can tell you that most of those tutorials are filled with bad advice which from a learning point of view makes sense to help a beginner get the concepts quickly but in the long run they can turn things into a gruesome mess which becomes a chore to update or improve upon. It is my opinion that although a tutorial should have instructions that are quick and easy to replicate, it is much more important to organize the code and assets in such a way that they can be easily built upon. Almost every tutorial at the end of the day should be self contained as much as possible so that they can be easily changed by the person following it. This means, instead of simply uploading a zip file containing the whole project, each part of the tutorial should be organized in such a way so they can be easily copied into an existing project. Now with th