Skip to main content

Linux Distribution List.





The world of Linux is home to approximately six hundred different distributions that offer varying features and functionalities. In this discussion, we will focus on some of the popular Linux distros that are currently being used.


Ubuntu

Canonical created Ubuntu in 2004, and it quickly gained popularity. Its aim is to provide an easy-to-use graphical Linux desktop without the need for a command line. Ubuntu is the most well-known Linux distribution and is considered the next version of Debian. It is an ideal operating system for beginners, offering pre-installed applications and easy-to-use repositories libraries.

Ubuntu previously used the GNOME2 desktop environment, but it has since developed its own unity desktop environment. It releases new versions every six months and is currently working on expanding to run on tablets and smartphones.


Linux Mint

Mint is based on Ubuntu and uses its repository software, so some packages are common in both. Initially, it was an alternative to Ubuntu, as it included media codecs and proprietary software that were absent in Ubuntu. However, it has since become popular in its own right, using the cinnamon and mate desktop environments instead of Ubuntu's unity desktop environment.


Debian

Debian has been around since 1993 and releases its versions much slower than Ubuntu and Mint. This makes it one of the most stable Linux distributions available. Ubuntu is based on Debian and was founded to improve the core bits of Debian more quickly and make it more user-friendly. Every Debian release name is based on a character from the movie Toy Story.


Red Hat Enterprise / CentOS

Red Hat is a commercial Linux distribution that offers Red Hat Enterprise Linux (RHEL) and Fedora, which are freely available. RHEL is well-tested before release and is supported for seven years after release, while Fedora provides faster updates and without any support. Red Hat uses trademark law to prevent their software from being redistributed. CentOS is a community project that uses Red Hat Enterprise Linux code but removes all its trademarks and makes it freely available. In other words, it is a free version of RHEL and provides a stable platform for a long time.


Fedora

Fedora is a project that focuses mainly on free software and provides the latest versions of software. It doesn't create its own desktop environment but uses "upstream" software. By default, it has the GNOME3 desktop environment. It is less stable than other distributions but provides the latest software.





Comments

Popular posts from this blog

Post build configurations on Redhat VM

  ************************************* Post build configuration on Linux VM: ************************************* Set the hostname. hostnamectl set-hostname <Servername> ***************************************** Network configuration : Make sure VM gets the ipv4 ip address either from DHCP or assign the static ip address to it.   Question : How to assign the static ip address to the linux machine using the nmcli ?  Answer: fire the below commands: nmcli device nmcli connection modify enpos3 ipv4.addresses 10.253.1.34/24 nmcli connection modify enpos3 ipv4.gateway 10.253.1.1 nmcli connection modify enpos3 ipv4.method manual nmcli connection modify enpos3 ipv4.dns 8.8.8.8 nmli connection down enpos3 nmcli connection up enpos3 ip address show enpos3 nmcli connection show ************************†****************** Register to RHΝ. Register to redhat network if the linux vm is redhat vm. subscription-manager register --org <org>  --activationkey <activat...

AWS cloud practitioner notes

 AWS Certified cloud practitioner: What is cloud computing? cloud computing is the on demand delivery of the compute power, database storage, applications and other IT resources through a cloud services platform with pay-as-you-go pricing. you can provision exactly the right type and size of the computing resources you need. you can access many resources as you need almost instantly like servers, storage,databases and application services as well. Amazon web services owns and maintains the network connected hardware required for these application services, while you provision and use what you need via a web application. ***************************************** Deployment models of Cloud: Private Cloud: Cloud service used by a single organisation, not exposed to the public. complete control. security of the sensitive applications meeting specific business needs. ********************** Public Cloud: Cloud resources owned and operated by the third party. cloud service provider delive...