Satish Kumar

Satish Kumar

937 Articles Published

Articles by Satish Kumar

Page 33 of 94

How to Enable and Use firewalld on CentOS 7?

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

Firewalld is a dynamic firewall management tool for CentOS 7 that provides a user-friendly interface to configure and manage firewall rules. Unlike traditional iptables, firewalld supports network zones and allows changes without restarting the entire firewall service. This article demonstrates how to enable and effectively use firewalld on CentOS 7. Installation and Setup Firewalld is included with CentOS 7 but may not be enabled by default. First, check if firewalld is installed and running − sudo systemctl status firewalld To enable and start the firewalld service − sudo systemctl enable firewalld sudo ...

Read More

How to Extract or Unzip tar.gz Files from Linux Command Line?

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

Tar.gz files, also known as "tarballs, " are compressed archive files commonly used in Linux and Unix-based operating systems. A tarball contains one or more files or directories compressed using the gzip algorithm, significantly reducing file size. They serve two main purposes: efficient data transfer between systems and storage of file backups in a single, manageable archive. Understanding the Linux Command Line The Linux command line interface (CLI) provides a powerful text-based method for interacting with your system. To access the terminal, press Ctrl+Alt+T or find it in your applications menu. Once open, you'll see a prompt like ...

Read More

How to Deploy RedHat Enterprise Virtualization Hypervisor (RHEV-H)

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

RedHat Enterprise Virtualization Hypervisor (RHEV-H) is a bare-metal hypervisor based on the open-source Kernel-based Virtual Machine (KVM) technology. It provides hardware-based virtualization that enables multiple operating systems to run efficiently on a single physical server, creating a scalable and cost-effective virtualization infrastructure for modern data centers. System Requirements Before deploying RHEV-H, ensure your system meets these minimum requirements: Processor − 64-bit x86 processor with virtualization extensions (Intel VT or AMD-V) Memory − At least 4 GB of RAM for the hypervisor Storage − Minimum 10 GB disk space for installation Network − Network interface controller supporting ...

Read More

Delete empty files and directories in Linux

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

Empty files and directories in Linux systems don't consume significant disk space, but removing them periodically helps maintain system cleanliness and organization. This tutorial covers various methods to delete empty files and directories using the powerful find command in Linux systems. Delete Empty Files in a Directory The find command with specific options can locate and remove all empty files in a directory structure. The basic syntax combines type filtering, empty file detection, and deletion in one command. find . -type f -empty -print -delete Let's examine this command with a practical example. Consider ...

Read More

Command Substitution in Bourne Shell

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

Command substitution is one of the most powerful features of the Bourne shell, allowing you to capture the output of one command and use it as an argument or input to another command. This mechanism enables complex command chaining and automation in Unix and Linux systems. What is Command Substitution? Command substitution allows you to execute a command and replace the command with its output. The Bourne shell provides two syntaxes for command substitution: `command` or the modern preferred syntax: $(command) The $(command) syntax is recommended because it's more readable, ...

Read More

How to Enable Apache Userdir Module on RHEL/CentOS?

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

If you are running a web server with Apache on RHEL/CentOS, you may need to enable the Userdir module to allow users to create and serve their own web content. The Userdir module enables users to access their own web directories using a URL format like http://example.com/~username. Enabling the Apache Userdir module on RHEL/CentOS is a straightforward process that involves installation, configuration, and security considerations. This article will guide you through the complete setup process. Prerequisites and Installation Step 1: Install Apache Web Server Before enabling the Userdir module, ensure Apache web server is installed on ...

Read More

How to File a Software Bug to Fedora?

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

If you are a software user or developer, you have likely encountered a software bug at some point. A software bug is an error or flaw in a computer program that causes it to produce unintended or incorrect results. These bugs can range from minor nuisances to major issues that cause programs to crash, and they can occur in any software application regardless of its complexity. Fedora is a popular open-source operating system that is used by millions of people around the world. It is known for its stability, security, and cutting-edge features, making it a favorite among developers ...

Read More

Avoiding unwanted directory while using zip

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

ZIP files are one of the most widely supported compression formats, especially when sharing files across different operating systems like Linux, Windows, and Mac. However, when creating ZIP archives from the command line, we often encounter the problem of unwanted directory structures that make the extracted files difficult to navigate. This article explores techniques to create clean ZIP archives without unnecessary parent directories, using Linux command-line tools and bash built-in commands like pushd and popd. The Problem with Full Path Compression When using the zip command with the -r (recursive) option, the entire directory path gets included ...

Read More

Combine and Execute Multiple Linux Commands

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

Linux is a powerful and versatile operating system that has gained immense popularity in the computing world. One of the most useful features of Linux is the ability to combine and execute multiple commands at once, which can significantly improve your productivity and efficiency. In this article, we will discuss various techniques for combining and executing multiple Linux commands, along with examples that demonstrate their practical applications. Combining Commands with Pipes The most common way to combine Linux commands is by using pipes. A pipe is a feature that allows the output of one command to be ...

Read More

20 Things to Do After Fresh Installation of Fedora 26 Workstation

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

Fedora 26 Workstation is an operating system built on the Linux kernel, which provides users with a highly customizable, secure, and powerful computing experience. It is designed to cater to developers, system administrators, and users who want to leverage the latest technologies and features. If you have just installed Fedora 26 Workstation, here are 20 essential things you can do to make the most of your new installation. 1. Update Your System After installing Fedora 26, the first thing you should do is update your system. This ensures you have the latest packages and security patches. ...

Read More
Showing 321–330 of 937 articles
« Prev 1 31 32 33 34 35 94 Next »
Advertisements