grep case sensitive parameter & explanation while running grep –help command Check out this video where we show a practical usage of grep case sensitive option using -i parameter: <img src=https://i.ytimg.com/vi/ID/hqdefault.jpg alt width=480 height=360> Further reding: Basic Linux Comma...
Q2: How can I find and kill a process in Linux? A2: To find a process, you can use thepscommand combined withgrep. For example, to find processes related to a specific application: ps aux | grep application_name To kill a process, first identify its Process ID (PID) using the above...
netstat(network statistics) is a command-line tool that displays network connections (both incoming and outgoing), routing tables, and a number of network interface statistics. It is available on Linux, Unix-like, andWindowsoperating systems.netstatis powerful and can be a handy tool to troublesh...
The Linux ‘du‘ (Disk Usage) is a standard Unix/Linux command used to check the disk usage information of files and directories on a machine. Theducommand has many parameter options that can be used to get the results in many formats. Theducommand also displays the files and directory si...
to more advanced topics, such as compiling from source and installing a specific version of the command. Finally, we’ll provide guidance on how to use the command and verify that the correct version is installed. So, let’s dive in and start mastering the ‘alias’ command in Linux!
You can check if your system has npu with this command: dmesg | grep -i npu Analyze the output to figure out if there is an NPU or not. Checking Rockchip NPU utilization Thankfully, Rockchip utilizes thedebugfsfeature. Debugfs is a special type of virtual filesystem that provides debug ...
4. Using top Command The top command displays the processor activity of your Linux system, and tasks managed by the kernel in real-time. To understand how the top command works, read this article:12 top Commands to Check Linux Process Activity ...
Wrapping Up: Installing the ‘file’ Command in Linux Getting Started with the ‘file’ Command in Linux Thefilecommand is a handy tool in Linux that helps you determine the type of a file without opening it. It’s a utility that examines the file and provides information about it. Thefil...
The cut command in Linux allows removing data on each line of a file. Read this tutorial to know how to use it effectively to process text or CSV data file.
How to check Transparent HugePage status in Linux? Method-2: Usingtopcommand topis a real-time command-line utility that provides a dynamic, live view of the processes running on a system. It can be used tomonitor system performance, including memory usage per process. Below is a detailed ...