Fading Coder

One Final Commit for the Last Sprint

Enabling Debug Logging for SSH Connections

The standard basic SSH connection command follows the format ssh <remote_username>@<remote_host>, for example: ssh root@demo.example.com To enable dteailed debug output for troubleshooting SSH connecitons, add the -v verbose flag to the command: ssh -v root@demo.example.com A sample debu...

Practical Linux Command Exercises for File and Directory Management

1. List All Files in the /etc/ Directory Use the ls command to view all file information in the /etc/ diretcory. Common ls options: -l: Display file information in long format -A: Show all files, including hidden files starting with . -a: Show all files, including . and .. -d: Display properties of...

Installing and Operating nmon for Linux Performance Monitoring

nmon is a performance monitoring tool designed for AIX and Linux systems. While it supports IBM's AIX operating system, this guide focuses on its application in Linux environments for system performance analysis. Downloading and Installing nmon 1.1 Downloading nmon Obtain the nmon binary executable...

Essential File Search Commands in Linux: which, whereis, locate, and find

which: Locating Executable Files which searches for executable files within the directories specified in the PATH environment variable. It returns the full path of the first matching executable. which ls # Outputs the path to the ls executable which -a ls # Lists all ls executables found in PATH whe...

Automating LVM Expansion for System Partitions Using Cloud-Init Configuration

Automating LVM Expansion for System Partitions Using Cloud-Init Configuration Cloud-init is a widely used tool for initializing cloud instances, enabling automated configuration of system settings during boot. This article demonstrates how to configure cloud-init to automatically expand a system par...

Configuring and Managing Logs in GitLab

GitLab leverages an effective logging system to monitor and record operational activities. Below outlines the configuration and management of log files in the GitLab environment. Summary of Log Files GitLab organizes its logs into several categories, each located within specific directories: product...