awk

1. Awk, gawk, mawk, nawk

Awk is a kind of programming language designed for advanced text processing. Awk needs an input, performs some actions and delivers the result to standard output.

The GNU implementation of awk is called gawk, but for the end-user calling awk interpreter is transparent an...

To extend the sudo password timeout session on a Linux system, we need to modify the sudoers file. Example of a sudoers file that we have to modify :

sudoers

    sudo visudo

Find the line that begins with Defaults env_reset and add the timestamp_timeout option :

    Defaults env_reset,timestamp_time...

The ss command is a powerful utility used to display socket statistics, providing detailed information about network connections, including TCP, UDP, and Unix domain sockets. ss is valuable for network troubleshooting, identifying open ports, monitoring connections, and analyzing network traffic.

...
Most used Unix/Linux Commands

In Linux, everything is considered a file, including devices and directories. The command lsof (LiSt Open Files) displays open files and the processes that are using them. In case a process holds a file open and prevents closing it, the lsof command helps identifying and killing it as needed.

1. l
...