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

Linux basic commands

 Linux basic commands: du  -sh  *  |  sort  -h  -r   |  head  -n  40  :    list out first 40 files in the directory that are taking more space in the directory.  cd : change directory Is-l listing the items in long listing format  pwd : print working directory Is-I format: type :no of links:owner : group:size :month :day :time :name cd/: go to/directory whoami: tells us by which username we are logged in. touch jerry: creates the file named jerry in present working directory. cp jerry lex: copy the content of jerry file and paste it to lex file. vi text1: creates the file text1 and open it in vi editor mkdir superman: creates the directory called superman mkdir abc def  : creates 2 folder in one command. touch filename wont work in /etc/ folder if logged in by normal account. man cp: shows manual for cp command. echo "india is my country"> file1 puts the text in file1. rm filename: remove the filename  mv lex luther renames the file from lex to luther  mv luther /h

patching tasks

 Patching a Linux system is a critical task to ensure that the system remains secure, stable, and up-to-date with the latest features and fixes. Here’s a comprehensive guide to the tasks involved in Linux patching: 1. Pre-Patching Preparation Backup System : Ensure you have a full system backup, including critical data, configuration files, and applications. Test the backup to verify its integrity. Check Disk Space : Verify that you have enough disk space, particularly on /var , /tmp , and /boot partitions. Review Current Patch Level : Determine the current patch level and installed packages using package management tools like yum , apt , dpkg , or rpm . Check System Logs : Review system logs to identify any issues that might affect the patching process. Test in a Staging Environment : If possible, apply patches in a staging environment that mirrors production to identify potential issues. Notify Stakeholders : Inform stakeholders about the scheduled maintenance window and expected do