kill command in Linux (located in /bin/kill), is a built-in command which is used to terminate processes manually. kill command sends a signal to a process that terminates the process. If the user doesn’t specify any signal that is to be sent along with the kill command, then a default TERM signal is sent that terminates the process.
[mai mult...]Ls Command in Linux
ls is one of the basic commands that any Linux user should know.
The ls command lists files and directories within the file system, and shows detailed information about them. It is a part of the GNU core utilities package which is installed on all Linux distributions.
Checking your Linux Version
The term “Linux version” in the context of Linux operating systems typically refers to the specific distribution and version of the Linux kernel that is running on a given system.
For those you don’t know, the Linux kernel is the foundation of the Linux operating system, providing the fundamental services and functionality required to run applications and manage system resources. Each Linux distribution contains a specific version of the Linux kernel and a set of tools and utilities designed to work with that kernel version. Different Linux distributions may also include different packages, libraries, and software applications.
[mai mult...]How to Reboot or Shut Down Linux using the command Line
How to Unzip Files in Linux
Zip is the most widely used archive file format that supports lossless data compression. A zip file is a data container containing one or more compressed files or directories, which can later be extracted to restore the original files. Zip also offers a range of advanced features. You can password-protect your ZIP archives to keep your data safe or split large files into smaller parts to make them more manageable.
[mai mult...]How to copy Files and Directories in the Linux Terminal
Like any other operating system, you can copy and paste files and directories (folders) in a Linux distribution using the desktop interface. But you can save time by copying those files in the Terminal.
[mai mult...]How to view free Disk Space and Disk Usage from the Linux Terminal
The df and du commands report on disk space usage from within the Bash shell used on Linux, macOS, and many other Unix-like operating systems. These commands let you easily identify what’s using up your system’s storage.
How to use Cron on Linux
Cron jobs are a fundamental yet powerful tool within the Linux operating system.
[mai mult...]How to use tcpdump command on Linux
The tcpdump command can be used to capture network traffic on a Linux system. It’s a versatile command line utility that network administrators often rely on for troubleshooting.
What you’ll come to find is that the amount of networking traffic captured on an interface can be easily overwhelming. tcmpdump makes our job a little easier by allowing us to isolate only the traffic we’re interested in. Of course, in order to do this, you need to be familiar with the various flags and settings that go along with the command.
How to find Files containing specific text using Grep And Ripgrep in Linux
The grep and ripgrep Command Examples for Efficient Linux File Search
The grep and ripgrep commands in Linux are powerful utilities for searching text patterns within files. They provide various options to fine-tune the search and enhance efficiency. In this detailed guide, we will learn how to use grep and ripgrep commands to find files containing specific strings of text within their contents.
