|

What Is the Name of the Linux-based OS: A Survey

You may already well know “Linux” and may also use the “operating system based on the Linux kernel” directly or indirectly (you are indirectly using it now as this site is hosted on Linux). But how should we name the OS based on Linux? You may know there is GNU/Linux naming controversy. Different people have different opinions about this. Today, let’s see how do these widely used distributions call themselves by looking at their “about” web pages.

RedHat Enterprise Linux (RHEL)

http://www.redhat.com/en/technologies/linux-platforms/enterprise-linux

With Red Hat Enterprise Linux, a platform with unparalleled stability and flexibility, …

RHEL calls itself a “Linux” and also a “platform”.

Fedora

https://fedoraproject.org/wiki/Overview

The Fedora Project builds open source software communities and produces a Linux distribution called “Fedora.”

Fedora calls itself a “Linux distribution”.

SUSE Linux Enterprise

https://www.suse.com/company/

Established in 1992, SUSE is the original provider of the enterprise Linux distribution and the most interoperable platform for mission-critical computing.

SUSE also considers itself a “Linux distribution” and a “platform”.

openSUSE

https://en.opensuse.org/Main_Page

openSUSE creates one of the world’s best Linux distributions, working together in an open, transparent and friendly manner as part of the worldwide Free and Open Source Software community.

openSUSE considers itself one of the “Linux distributions”.

Debian

https://www.debian.org/intro/about

This operating system that we have created is called Debian.

Debian calls itself “Debian” operating system.

A large part of the basic tools that fill out the operating system come from the GNU project; hence the names: GNU/Linux, GNU/kFreeBSD, and GNU/Hurd. These tools are also free.

It also claims “GNU/Linux” is a proper name for it.

Ubuntu

http://www.ubuntu.com/about/about-ubuntu

That’s why Mark Shuttleworth gathered a small team of developers from one of the most established Linux projects – Debian – and set out to create an easy-to-use Linux desktop: Ubuntu.

Ubuntu calls Debian, its upstream, a “Linux project” and itself a “Linux desktop”.

Linux Mint

http://www.linuxmint.com/about.php

Linux Mint is the most popular desktop Linux distribution and the 3rd most widely used home operating system behind Microsoft Windows and Apple Mac OS.

Linux Mint also calls itself a “Linux distribution”.

Summary

As you see, “Linux distribution” seems the common name for the OS based on Linux. It is short and “Linux” is indeed a nice name.

GNU tools are just a set of the tools in the OS. Including all important tool contributors, such as X11, GNOME, Apache and GNU, in the OS name may not be realistic. That said, GNU tools, such as gcc, binutils, make and Emacs, play an important and critical role in almost every Linux distributions.

Similar Posts

  • |

    A List of Common Software on Windows

    Quick links to some useful software on Windows including Web browsers, Video/audio player and ssh/scpsftp/vnc tools for connecting to Linux. ssh/scp/sftp/vnc for connecting to Linux For Linux users, it is sometimes unavoidably to use Windows. With Windows, the Linux users will need to connect to Linux for some tasks. Some general software are needed. The…

  • | | |

    Decrypting a Password Protected RSA Private Key

    I got a password protected RSA private key with headers like (I have the password): —–BEGIN RSA PRIVATE KEY—– Proc-Type: 4,ENCRYPTED DEK-Info: AES-256-CBC,… How to decrypt a password protected RSA private key? You can use the openssl command to decrypt the key: openssl rsa -in /path/to/encrypted/key -out /paht/to/decrypted/key For example, if you have a encrypted…

  • 禁止对话框关闭按钮和Alt+F4

    在某些情况下我们需要防止用户单击窗口的标题栏中的关闭按钮关闭 MFC 应用程序。可以删除窗口的WS_SYSMENU 样式, 但是,这样最大化最小化和还原按钮也被删除,并且无法添加。 这是Windows的设计依据。 可以通过禁用关闭按钮来模拟没有关闭按钮的窗口。 在 WM_CREATE 消息处理程序中禁用关闭按钮。使用下面的代码: CMenu *pSysMenu = GetSystemMenu(FALSE); ASSERT(pSysMenu != NULL); VERIFY(pSysMenu->RemoveMenu(SC_CLOSE, MF_BYCOMMAND)); 这样删除之后关闭按钮变为灰色,用户无法点击。但是使用Alt+F4仍然可以关闭程序。要将此功能也禁用需要重载CDialog的OnSysCommand方法。代码如下: void MyDlg::OnSysCommand( UINT nID, LPARAM lParam ) { if ( ( nID & 0xFFF0 ) == IDM_ABOUTBOX ) { CAboutDlg dlgAbout; //if you have an about dialog dlgAbout.DoModal(); } //add the following code else if…

  • | |

    Decentralized Exchanges (DEX) vs. Centralized Exchanges (CEX): A Technical Comparison

    Cryptocurrency exchanges have revolutionized the way we trade digital assets, with two main types of exchanges dominating the market: decentralized exchanges (DEX) and centralized exchanges (CEX). In this article, we’ll compare the DEX and CEX from a technical perspective. Decentralized Exchanges (DEX) DEX operate on a decentralized blockchain network, such as Ethereum, and are built…

  • Cannot connect QEMU guest os with vncviewer

    The question is as follows. harry@debian:~/workshop1/qemu_test/version1/test$ qemu-system-x86_64 -hda qcow2.img -cdrom domU-x86_64-FS.img -boot d -m 1024 VNC server running on `::1:5900′ harry@debian:~/workshop1/qemu_test/version1/test$ vncviewer 127.0.0.1:1 vncviewer: ConnectToTcpAddr: connect: Connection refused Unable to connect to VNC server Solution (add -vnc parameter for qemu-system-x86_64): harry@debian:~/workshop1/qemu_test/version1/test$ qemu-system-x86_64 -hda qcow2.img -cdrom domU-x86_64-FS.img -boot d -m 1024 -vnc 127.0.0.1:2 harry@debian:~/workshop1/qemu_test/version1/test$ vncviewer 127.0.0.1:2…

  • How to install encfs on CentOS 6?

    I noticed your answer on configuring encfs on CentOS 6. I had difficulties installing encfs on CentOS 6. How did you install it? Thanks. For CentOS 6, I used a slightly old version (version 1.7.4) using an RPM built for by PUIAS: For x86-64 version: # yum install http://puias.princeton.edu/data/puias/6/x86_64/os/Addons/fuse-encfs-1.7.4-1.puias6.x86_64.rpm For i686 version: # yum install…

Leave a Reply

Your email address will not be published. Required fields are marked *