Satish Kumar

Satish Kumar

937 Articles Published

Articles by Satish Kumar

Page 15 of 94

How to Generate a Self-Signed Certificate for Kubernetes?

Satish Kumar
Satish Kumar
Updated on 17-Mar-2026 976 Views

Self-signed certificates provide a cost-effective way to establish secure communication between Kubernetes components such as the API server, etcd, and kubelets. While not signed by a trusted Certificate Authority (CA), they offer encryption for internal cluster communication and development environments. What are Self-Signed Certificates? A self-signed certificate is a digital certificate that is signed by its own private key rather than by a trusted Certificate Authority. In Kubernetes, these certificates secure communication channels between cluster components, ensuring data integrity and confidentiality during transmission. Generating a Self-Signed Certificate Step 1: Generate a Private Key First, create ...

Read More

Bash HereDoc Tutorial With Examples

Satish Kumar
Satish Kumar
Updated on 17-Mar-2026 3K+ Views

If you're a Linux or Unix user, you're probably familiar with Bash, the command-line shell that's commonly used on these systems. Bash has a lot of powerful features that can make working on the command line much more efficient, and one of those features is called a HereDoc. In this tutorial, we'll explain what a HereDoc is, how it works, and give you some examples of how you can use it in your Bash scripts. What is a HereDoc? A HereDoc, short for "Here Document, " is a way to include a block of text within a Bash ...

Read More

10 7zip (File Archive) Command Examples in Linux

Satish Kumar
Satish Kumar
Updated on 17-Mar-2026 2K+ Views

If you're a Linux user, you probably deal with file archives frequently. Whether you're sending files to someone, backing up data, or just organizing your files, compressing them into a single file archive can save a lot of space and make things easier to manage. One tool you can use for this purpose is 7zip. In this article, we'll cover 7zip command examples in Linux that you can use to compress and extract files in various ways. What is 7zip? 7zip is a free and open-source file archiver, similar to WinZip or WinRAR on Windows. It was developed ...

Read More

How to Generate SSH Key in Windows 10?

Satish Kumar
Satish Kumar
Updated on 17-Mar-2026 998 Views

SSH (Secure Shell) is an encryption protocol that provides a secure connection between two computers over an insecure network, such as the internet. It allows users to remotely and securely access and control another computer or server. SSH works by encrypting all data sent between the two computers, including any usernames and passwords used to log in. In order to establish a secure SSH connection between two computers or servers, SSH keys are necessary. An SSH key is a pair of cryptographic keys − one public and one private. The private key is kept on the user's local ...

Read More

Linux Job Control &, disown, and nohup

Satish Kumar
Satish Kumar
Updated on 17-Mar-2026 950 Views

Linux is an open-source operating system that is widely used in industry. One of the most notable features of Linux is its command-line interface (CLI), which provides flexibility and power to users. When working in the command line, it is common to run multiple commands concurrently. However, sometimes, you may want to control how these commands are executed and how they interact with each other. This is where job control comes in. Job Control Job control refers to the ability to manage and manipulate running processes in a Linux system. It allows users to start, stop, pause, resume, ...

Read More

Advanced Copy Command with Progress Bar While Copying/Moving Files in Linux

Satish Kumar
Satish Kumar
Updated on 17-Mar-2026 12K+ Views

As a Linux user, you may have found yourself in situations where you need to copy or move large files or directories from one location to another. This process can take some time, and it can be challenging to monitor the progress of copy or move operations. Fortunately, Linux provides several built-in commands that can help you copy or move files efficiently while also monitoring the operation's progress. In this article, we will discuss advanced copy commands with progress bars for copying/moving files in Linux. What is Advanced Copy Command? The Advanced Copy (or cp) command is ...

Read More

How to Generate SSH Keys on Ubuntu?

Satish Kumar
Satish Kumar
Updated on 17-Mar-2026 17K+ Views

SSH keys are cryptographic security keys that provide a more secure authentication method than passwords when connecting to remote servers. Ubuntu makes it easy to generate SSH key pairs using the ssh-keygen command-line tool. This guide will walk you through generating SSH keys on Ubuntu, understanding the different key types, and adding your public key to remote servers for secure authentication. The Benefits of Using SSH Keys over Passwords SSH keys offer significant security advantages over traditional password authentication: Enhanced Security − SSH keys use cryptographic algorithms that are nearly impossible to crack without access ...

Read More

10 Best Rolling Release Linux Distributions

Satish Kumar
Satish Kumar
Updated on 17-Mar-2026 10K+ Views

Rolling release Linux distributions are a popular choice among Linux users who want to stay up-to-date with the latest software packages and features. These distributions have a continuous release cycle, which means that updates are delivered as soon as they are available. Unlike traditional release distributions, which have a fixed release cycle, rolling release distributions provide a more flexible and dynamic user experience. In this article, we'll explore the 10 best rolling release Linux distributions available today. We'll discuss their features, advantages, disadvantages, and unique characteristics to help you choose the right distribution for your needs. What is ...

Read More

How To Get Helm Logs Of Changed Helm Releases?

Satish Kumar
Satish Kumar
Updated on 17-Mar-2026 5K+ Views

Helm is a powerful Kubernetes package manager that simplifies deployment and management of applications through versioned releases called charts. When working with Helm releases, tracking changes is crucial for debugging, compliance, and maintaining deployment stability. Helm logs provide visibility into release history, helping you understand what changed between deployments and troubleshoot issues effectively. This guide covers how to retrieve and analyze Helm logs for changed releases, enabling better monitoring and management of your Kubernetes deployments. Understanding Helm Releases A Helm release is a versioned instance of a chart deployed to your Kubernetes cluster. Each release has a ...

Read More

Process Memory Management in Linux

Satish Kumar
Satish Kumar
Updated on 17-Mar-2026 9K+ Views

Process memory management is a crucial aspect of any operating system. In Linux, the memory management system is designed to efficiently manage memory usage, allowing processes to access and use memory they require while preventing them from accessing memory they do not own. Process Memory Layout Every Linux process has a standardized memory layout divided into distinct segments: Linux Process Memory Layout Stack High Address Unused Heap Data (BSS) ...

Read More
Showing 141–150 of 937 articles
« Prev 1 13 14 15 16 17 94 Next »
Advertisements