Linux & System Administration

What Is the /boot Directory Used For?

Filesystem /boot stores kernel images, initial ramdisk (initrd/initramfs), bootloader files and config used at system startup to load the OS and recover kernels. For recovery tasks

How to Check CPU Info in Linux

Screenshot showing Linux terminal commands to check CPU info: cat /proc/cpuinfo, lscpu and hwinfo outputs highlighting model name, CPU cores, threads, architecture, cache and flags

What Is the Difference Between sh and bash?

sh is a POSIX-compatible minimal shell for portability; bash is a superset adding interactivity, arrays, brace expansion, process substitution and many GNU extensions. plus extras!

How to Reinstall a Broken Package

Diagram of reinstalling a broken package: backup configs, remove package, update repositories, reinstall pkg, verify checksums and restart services to restore proper functionality.

How to Flush DNS Cache in Linux

Graphic depicting Linux DNS cache flush methods: terminal with commands for systemd-resolve, resolvectl, dnsmasq, nscd and NetworkManager, showing sudo commands and restart steps.

What Is the Default Gateway?

Diagram of a home network showing devices connected to a router labeled Default Gateway with arrows indicating traffic flow to the internet IP addresses subnet mask and gateway IP.

How to View Network Interfaces

How to View Network Interfaces Understanding your network infrastructure is

What Is a Bash Alias?

Illustration of a Bash alias concept: a terminal window showing a short command mapped to a longer command string, emphasizing shortcuts, customization, and faster shell workflows.

How to Find Recently Modified Files

Understanding the Critical Need for File Tracking In today'

How to Check File Type in Linux

Guide: Use the 'file' command, 'ls -l', and 'stat' to determine file types and metadata in Linux; inspect magic bytes, MIME type, permissions, symlinks, directories, and dev files.