Skip to Content

A subnet, or subnetwork, is a logical subdivision of an IP network. It’s essentially a smaller network within a larger network, created by dividing the network address space into smaller segments. This division is achieved through a process called subnetting. By dividing the network into smaller segments, subnet allows for more efficient management of network …

Read More about How to Find Subnet Mask in Linux

“Practical Linux System Administration” by Kenneth emerges as a remarkably comprehensive guide for anyone aspiring to master the intricacies of Linux administration. This book is a treasure trove of practical knowledge, seamlessly blending fundamental concepts with advanced techniques. From the outset, Kenneth’s expertise shines through. He meticulously introduces the Linux operating system, making it approachable …

Read More about Book Review: Practical Linux System Administration

When connecting to an SSH server, especially for the first time, users often encounter a security prompt. This prompt plays a crucial role in the SSH connection process, ensuring the security and authenticity of the server being connected to. The authenticity of host ‘howtouselinux (10.254.175.51)’ can’t be established. ECDSA key fingerprint is SHA256:PgyFiC7Su7BiFBO1Sn8493MMz8/PE+2fJMI/mFfBy9M. Are you …

Read More about 2 ways to Automatically Accept an SSH Host Key Fingerprint in Linux

The error message bash: TMOUT: readonly variable indicates that the TMOUT variable has been set as readonly, which prevents you from changing its value in your current session. This is usually done for security reasons, often in a global configuration file, to enforce automatic logouts for idle sessions. To fix this and change the TMOUT …

Read More about Fix bash: TMOUT: readonly variable Error in Linux

Addressing SSH auto-logout issues often involves configuring two key settings: the TMOUT shell variable and the StopIdleSessionSec setting in /etc/systemd/logind.conf.  Each plays a distinct role in session management and inactivity handling. TMOUT Variable: A Bash shell setting that defines the maximum idle time before automatic logout. It is crucial for users experiencing undesired SSH disconnections …

Read More about Fix SSH timed out waiting for input: auto-logout in Linux