Network File Sharing (NFS) is a protocol that allows us to share directories and files with other Linux clients over a network. The ports for NFS are confusing for many people. We will deep dive into this today. NFSv3 Port NFSv4 Port NFSv3 Port NFSv3 and NFSv2 include portmapper, nfsd, and other NFS services like …
Linux
Bash For loop is used to execute a series of commands until a particular condition becomes false. Bash for loop in one line is very handy for Linux admins. Bash for loop in one line is a control structure that allows you to repeat a certain set of commands multiple times. The syntax is: for …
PSH and ACK are tcp flags in the TCP protocol. These TCP flags are ways for TCP to communicate between clients and servers. PSH (push) flag indicates that the incoming data should be passed on directly to the application instead of getting buffered. ACK (acknowledgment) flag is used to confirm that the data packets have …
In this Linux command line cheat sheet, we will learn: Basic Linux Commands File management user management Linux Commands Programing Linux Commands Job management Filesystem management Linux commands Process management Linux Commands Shortcuts network System Info Searching File Permission Basic Linux Commands cat – Joins and displays files cp – Copies files cpio – …
TCP flags are used to indicate a particular state during a TCP conversation. TCP flags can be used for troubleshooting purposes or to control how a particular connection is handled. TCP flags are various types of flag bits present in the TCP header. Each of them has its own significance. They initiate connections, carry data, …
This article is part of the following series. 6 performance tools you should know in Linux 5 Ways to Check disk size in Linux 4 Ways to Check Disk Partition with Examples in Linux How I Fixed a disk performance issue in Minutes – A Step by Step Guide to Optimize Linux System Linux …
Enabling password-less login on Linux using SSH keys provides a more secure and convenient way to authenticate and access remote servers. Here are 4 steps to log in to Linux without the password. create SSH Key on Client Copy public key to remote server Disable password login on the server – optional login server with …
In this tutorial, we will learn how to increase SSH Connection timeout value in Linux. What is the ssh connection timeout in Linux? The ssh connection timeout is the time that a connection will remain open before it times out and closes. This timeout can be caused by a variety of factors, including network congestion, …
SSH protocol supports several public key types for authentication keys. The key type and key size both matter for security. We will dive into every type of SSH key today to check out which one is more secure in Linux. SSH Key Types RSA DSA ECDSA ed25519 Generating SSH Key File in Linux Key Generation …
Bash for loop is a commonly used statement in Linux bash script. For loop is used to execute a series of commands until a particular condition becomes false. Today we are going to learn some basic bash for loop examples. What is bash for loop? Bash-for loop is a control structure that allows you to …