27 mars 2024

Différences majeures entre Red Hat 6, 7, 8 et 9

Quelles sont les différences majeures entre RHEL 6, 7, 8 et 9 ?

Système de fichiers

  • RHEL 6: Par défaut : ext4. Autres : ext2, ext3 supportés ; XFS en aperçu technologique.
  • RHEL 7: Par défaut : XFS, supportant jusqu'à 500 To. Déprécié : Btrfs en aperçu technologique.
  • RHEL 8: Support continu de XFS.
  • RHEL 9: Améliorations attendues sur Stratis, avec possibilité d'en faire la solution principale de gestion des volumes.

Réseau

  • RHEL 6: Scripts : Gérés dans /etc/sysconfig/network-scripts/.
  • RHEL 7: NetworkManager devient l'outil dominant.
  • RHEL 8: Les scripts hérités sont dépréciés.
  • RHEL 9: Prévu pour se concentrer sur les interfaces réseau cloud et virtuelles, en s'intégrant davantage à NetworkManager.

Noyau

  • RHEL 6: Noyau 2.6.32.
  • RHEL 7: Noyau 3.10.
  • RHEL 8: Noyau 4.18.
  • RHEL 9: Noyau 5.14.

Autres différences notables

  • RHEL 7: Introduction de Systemd comme init.
  • RHEL 8: Ajout de conteneurs Buildah et Podman.
  • RHEL 9: Prise en charge native de Wayland, suppression de Python 2.

Fin de vie

  • RHEL 6: Fin de vie le 30 novembre 2024.
  • RHEL 7: Fin de vie le 30 juin 2024.
  • RHEL 8: Fin de vie le 31 mai 2029.
  • RHEL 9: Fin de vie le 31 mai 2032.

17 févr. 2024

Vim Survival Kit

 https://learn.acloud.guru/handson/f7fcd48d-5126-48de-b7c5-7c3776bd48ce

Getting started with regular expressions: An example

 https://www.redhat.com/sysadmin/getting-started-regular-expressions-example

In Introducing regular expressions, I covered what they are and why they’re useful. Now, we need a real-world example to use as a learning tool. Here is one I encountered several years ago.

This example highlights the power and flexibility of the Linux command line, especially regular expressions, for their ability to automate common tasks. I have administered several listservs during my career and still do. People send me email addresses to add to those lists. In more than one case, I have received a list of names and email addresses in a Microsoft Word format to be added to one of the lists.

The troublesome list

The list itself was not very long, but it was inconsistent in its formatting. An abbreviated version of that list, with name and domain changes, is shown here:

Team 1	Apr 3 
Leader  Virginia Jones  vjones88@example.com	
Frank Brown  FBrown398@example.com	
Cindy Williams  cinwill@example.com	
Marge smith   msmith21@example.com 
 [Fred Mack]   edd@example.com	

Team 2	March 14
leader  Alice Wonder  Wonder1@example.com	
John broth  bros34@example.com	
Ray Clarkson  Ray.Clarks@example.com	
Kim West    kimwest@example.com	
[JoAnne Blank]  jblank@example.com	

Team 3	Apr 1 
Leader  Steve Jones  sjones23876@example.com	
Bullwinkle Moose bmoose@example.com	
Rocket Squirrel RJSquirrel@example.com	
Julie Lisbon  julielisbon234@example.com	
[Mary Lastware) mary@example.com

The original list had extra lines, characters like brackets and parentheses that need to be deleted, whitespace such as spaces and tabs, and some empty lines. The format required to add these emails to the list is <first> <last> <email@example.com>. Our task is to transform this list into a format usable by the mailing list software.

It was obvious that I needed to manipulate the data in order to mangle it into an acceptable format for inputting to the list. It is possible to use a text editor or a word processor such as LibreOffice Writer to make the necessary changes to this small file. However, people send me files like this quite often, so it becomes a chore to use a word processor to make these changes. Despite the fact that Writer has a good search and replace function, each character or string must be replaced singly, and there is no way to save previous searches.

Writer does have a powerful macro feature, but I am not familiar with either of its two languages: LibreOffice Basic or Python. I do know Bash shell programming.

I did what comes naturally to a sysadmin—I automated the task. The first thing I did was to copy the address data to a text file so I could work on it using command-line tools. After a few minutes of work, I developed the Bash command-line program shown in the previous article:

$ cat Experiment_6-1.txt | grep -v Team | grep -v "^\s*$" | sed -e "s/[Ll]eader//" -e "s/\[//g" -e "s/\]//g" -e "s/)//g" | awk '{print $1" "$2" <"$3">"}' > addresses.txt

This code produced the desired output as the file addresses.txt. I used my normal approach to writing command-line programs like this by building up the pipeline one command at a time.

Let’s break this pipeline down into its component parts to see how it works and fits together. All of the experiments in this series should be performed as a non-privileged user. I also did this on a VM that I created for testing: studentvm1.

The sample file

First, we need to create the sample file. Create a directory named testing on your local machine, and then copy the text below into into a new text file named Experiment_6-1.txt, which contains the three team entries shown above.

Team 1  Apr 3 
Leader  Virginia Jones  vjones88@example.com
Frank Brown  FBrown398@example.com
Cindy Williams  cinwill@example.com
Marge smith   msmith21@example.com 
 [Fred Mack]   edd@example.com  

Team 2  March 14
leader  Alice Wonder  Wonder1@example.com
John broth  bros34@example.com  
Ray Clarkson  Ray.Clarks@example.com
Kim West    kimwest@example.com 
[JoAnne Blank]  jblank@example.com

Team 3  Apr 1 
Leader  Steve Jones  sjones23876@example.com
Bullwinkle Moose bmoose@example.com
Rocket Squirrel RJSquirrel@example.com  
Julie Lisbon  julielisbon234@example.com

Removing unnecessary lines with grep

The first things I see that can be done are a couple of easy ones. Since the team names and dates are on lines by themselves, we can use the following to remove those lines that have the word "Team:"

[student@studentvm1 testing]$  cat Experiment_6-1.txt | grep -v Team

I won’t reproduce the results of each stage of building this Bash program, but you should be able to see the changes in the data stream as it shows up on STDOUT, the terminal session. We won’t save it in a file until the end.

In this first step in transforming the data stream into one that is usable, we use the grep command with a simple literal pattern, Team. Literals are the most basic type of pattern we can use as a regular expression, because there is only a single possible match in the data stream being searched, and that is the string Team.

We need to discard empty lines, so we can use another grep statement to eliminate them. I find that enclosing the regular expression for the second grep command in quotes ensures that it gets interpreted properly:

[student@studentvm1 testing]$ cat Experiment_6-1.txt | grep -v Team | grep -v "^\s*$"
Leader  Virginia Jones  vjones88@example.com
Frank Brown  FBrown398@example.com
Cindy Williams  cinwill@example.com
Marge smith   msmith21@example.com 
 [Fred Mack]   edd@example.com  
leader  Alice Wonder  Wonder1@example.com
John broth  bros34@example.com  
Ray Clarkson  Ray.Clarks@example.com
Kim West    kimwest@example.com 
[JoAnne Blank]  jblank@example.com
Leader  Steve Jones  sjones23876@example.com
Bullwinkle Moose bmoose@example.com
Rocket Squirrel RJSquirrel@example.com  
Julie Lisbon  julielisbon234@example.com
[Mary Lastware) mary@example.com
[student@studentvm1 testing]$

The expression "^\s*$" illustrates anchors, and using the backslash (\) as an escape character to change the meaning of a literal "s" (in this case) to a metacharacter that means any whitespace such as spaces, tabs, or other characters that are unprintable. We cannot see these characters in the file, but it does contain some of them.

The asterisk, aka splat (*), specifies that we are to match zero or more of the whitespace characters. This addition would match multiple tabs, multiple spaces, or any combination of those in an otherwise empty line.

Viewing extra whitespace with Vim

Next, I configured my Vim editor to display whitespace using visible characters. Do this by adding the following line to your own ~.vimrc file, or to the global /etc/vimrc configuration file:

set listchars=eol:$,nbsp:_,tab:<->,trail:~,extends:>,space:+

Then, start—or restart—Vim.

I have found a lot of bad, incomplete, and contradictory information on the internet in my searches for how to do this. The built-in Vim help has the best information, and the data line I created from that above is one that works for me.

Note: In the example below, regular spaces are shown as +; tabs are shown as <<>, or <–>, and fill the length of the space that the tab covers. The end of line (EOL) character is shown as $.

The result, before any operation on the file, is shown here:

Team+1<>Apr+3~$
Leader++Virginia+Jones++vjones88@example.com<-->$
Frank+Brown++FBrown398@example.com<---->$
Cindy+Williams++cinwill@example.com<--->$
Marge+smith+++msmith21@example.com~$
+[Fred+Mack]+++edd@example.com<>$
$
Team+2<>March+14$
leader++Alice+Wonder++Wonder1@example.com<----->$
John+broth++bros34@example.com<>$
Ray+Clarkson++Ray.Clarks@example.com<-->$
Kim+West++++kimwest@example.com>$
[JoAnne+Blank]++jblank@example.com<---->$
$
Team+3<>Apr+1~$
Leader++Steve+Jones++sjones23876@example.com<-->$
Bullwinkle+Moose+bmoose@example.com<--->$
Rocket+Squirrel+RJSquirrel@example.com<>$
Julie+Lisbon++julielisbon234@example.com<------>$
[Mary+Lastware)+mary@example.com$

Removing unnecessary characters with sed

You can see that there are a lot of whitespace characters that need to be removed from our file. We also need to get rid of the word "leader," which appears twice and is capitalized once. Let’s get rid of "leader" first. This time, we will use sed (stream editor) to perform this task by substituting a new string—or a null string in our case—for the pattern it matches.

Adding sed -e "s/[Ll]eader//" to the pipeline does this:

[student@studentvm1 testing]$ cat Experiment_6-1.txt | grep -v Team | grep -v "^\s*$" | sed -e "s/[Ll]eader//"

In this sed command, -e means that the quote-enclosed expression is a script that produces a desired result. In the expression, the s means that this is a substitution. The basic form of a substitution is s/<regex>/<replacement string>/, so /[Ll]eader/ is our search string.

The set [Ll] matches L or l, so [Ll]eader matches leader or Leader. In this case, the replacement string is null because it looks like a double forward slash with no characters or whitespace between the two slashes (//).

Let’s also get rid of some of the extraneous characters like []() that will not be needed:

[student@studentvm1 testing]$ cat Experiment_6-1.txt | grep -v Team | grep -v "^\s*$" | sed -e "s/[Ll]eader//" -e "s/\[//g" -e "s/]//g" -e "s/)//g" -e "s/(//g"

We have added four new expressions to the sed statement. Each one removes a single character. The first of these additional expressions is a bit different, because the left square brace ([) character can mark the beginning of a set. We need to escape the brace to ensure that sed interprets it correctly as a regular character and not a special one.

Tidying up with awk

We could use sed to remove the leading spaces from some of the lines, but the awk command can do that, reorder the fields if necessary, and add the <> characters around the email address:

[student@studentvm1 testing]$ cat Experiment_6-1.txt | grep -v Team | grep -v "^\s*$" | sed -e "s/[Ll]eader//" -e "s/\[//g" -e "s/]//g" -e "s/)//g" -e "s/(//g" | awk '{print $1" "$2" <"$3">"}'

The awk utility is actually a powerful programming language that can accept data streams on its STDIN. This fact makes it extremely useful in command-line programs and scripts.

The awk utility works on data fields, and the default field separator is spaces—any amount of white space. The data stream we have created so far has three fields separated by whitespace (<first><last>, and <email>):

awk '{print $1" "$2" <"$3">"}'

This little program takes each of the three fields ($1$2, and $3) and extracts them without leading or trailing whitespace. It then prints them in sequence, adding a single space between each as well as the <> characters needed to enclose the email address.

Wrapping up

The last step here would be to redirect the output data stream to a file, but that is trivial, so I leave it with you to perform that step. It is not really necessary that you do so.

I saved the Bash program in an executable file, and now I can run this program anytime I receive a new list. Some of those lists are fairly short, as is the one in this example. Others have been quite long, sometimes containing up to several hundred addresses and many lines of "stuff" that do not contain addresses to be added to the list.

Note: This article is a slightly modified version of Chapter 6 from Volume 2 of my Linux book, Using and Administering Linux: Zero to SysAdmin, due out from Apress in late 2019.

12 févr. 2024

Humour: Testers vs Users

 


Les 10 règles du KAIZEN

 


PENSE-BETE TMUX

Utilisateur de screen, il n'était pas installé sur ma VM. Par contre il y avait TMUX... 


J'ai demandé un pense bête à GEMINI (ex-BARD) l'IA de google et voici sa réponse : 


Pense-bête des commandes tmux

Démarrage et configuration:

  • tmux: Démarre une nouvelle session tmux.
  • tmux new -s <nom_session>: Démarre une nouvelle session tmux avec le nom spécifié.
  • tmux attach -t <nom_session>: Attache à une session tmux existante.
  • tmux ls: Liste les sessions tmux en cours d'exécution.
  • tmux kill-session -t <nom_session>: Tue une session tmux.
  • tmux source-file ~/.tmux.conf: Charge le fichier de configuration tmux.

Navigation et gestion des fenêtres:

  • Ctrl+b n: Crée une nouvelle fenêtre.
  • Ctrl+b p: Passe à la fenêtre précédente.
  • Ctrl+b n: Passe à la fenêtre suivante.
  • Ctrl+b &: Ferme la fenêtre actuelle.
  • Ctrl+b w: Renomme la fenêtre actuelle.
  • Ctrl+b s: Divise la fenêtre actuelle en deux horizontalement.
  • Ctrl+b |: Divise la fenêtre actuelle en deux verticalement.

Gestion des sessions:

  • tmux detach: Détache la session tmux actuelle du terminal.
  • tmux attach -t <nom_session>: Attache à une session tmux existante.
  • tmux kill-session -t <nom_session>: Tue une session tmux.
  • tmux rename-session -t <nom_session> <nouveau_nom>: Renomme une session tmux.

Divers:

  • Ctrl+b ?: Affiche l'aide de tmux.
  • tmux copy-mode: Active le mode de copie.
  • tmux paste-mode: Active le mode de collage.
  • tmux set-option <option> <valeur>: Définie une option tmux.
  • tmux list-options: Liste toutes les options tmux.

Ressources supplémentaires:

J'espère que ce pense-bête vous sera utile. N'hésitez pas à me contacter si vous avez des questions ou si vous souhaitez des informations supplémentaires sur des commandes spécifiques.


 https://g.co/gemini/share/37ed3445c63f


Différences majeures entre Red Hat 6, 7, 8 et 9

Quelles sont les différences majeures entre RHEL 6, 7, 8 et 9 ? Système de fichiers RHEL 6: Par défaut : ext4. Autres : ext2, ext3 supportés...