Skip to main content

Red Hat: Notes

Red Hat Logo. Source: https://static.redhat.com/libs/redhat/brand-assets/2/corp/logo.png

Keep updating

What's new in Red Hat Enterprise Linux 9, code-named Plow.

IBM Closes Landmark Acquisition of Red Hat for $34 Billion; Defines Open, Hybrid Cloud Future

Training courses

Red Hat Enterprise Linux Technical Overview (RH024) is a series of no-cost, on-demand, online videos that provide a technical introduction to Linux® for IT leaders, administrators, engineers, architects, and anyone else seeking a high-level understanding of Linux.

Download Red Hat Enterprise Linux at no cost.

Popular posts from this blog

nmap - The Network Mapper

WARNING : It is ILLEGAL to scan hosts without permission.

Linux: compound commands

command1 ; command2 ; command3 command1 is executed, then command2, and then command3 command1 && command2 && command3 command2 is executed only if command1 run successfully (exit code is 0), command3 is executed only if command2 run successfully (exit code is 0) command1 || command2 || command3 command2 is executed only if command1 exit code is 0 (failure), command3 is executed only if command2 exit code is 0 (failure)