The pgrep is a command-line utility used to find the process IDs of a running application. It’s inlcuded in procps package and pre-installed on most of the Linux distributions. The process name can be full or partial, which running by a user or other attributes. This article we will discuss the basics of the Linux
Make Linux Great Again
Stacer – Linux System Optimizer & Monitoring Tool
Stacer is a GUI based application written in C++ to monitor and optimize Linux OS. The latest build version of Stacer is 1.1.0, which provides all in one stop for our common activities we perform using Terminal like package management, process management, Host details, CPU, Network and Disk monitoring, startup applications, and a few more.
Heartbleed Still Found in the Wild: Did You Know That You May Be Vulnerable?
It’s been six years since Heartbleed was first discovered, and the OpenSSL vulnerability can still be found and exploited across the internet. As a matter of fact, 19% of global attacks target the OpenSSL Heartbleed vulnerability due to the volume of unpatched public-facing servers. Whether it’s from poor scanning or fear of rebooting production servers,
How to Find the Length of a List in Python
In Python, lists are the mostly used data type to store collections of the same type data. This guide shows you how to find the length of a list in Python. len() Function# The len() function is a built-in function of Python, used to get the length of a specified object. It can be a
How to Install Python IDLE in Linux
IDLE is an Integrated and learning environment created with Python using the GUI Tkinter toolkit. This is mainly used by beginners to get familiar with Python. IDLE is a cross-platform application that works with Mac OS, Windows, and Linux. In windows, IDLE comes by default with the installation. For Mac OS and Linux, we have
13 Best Photo Image Editors for Linux
In this article, I have reviewed of some the best photo editing software available on different Linux distributions. These are not the only photo editors available but are among the best and commonly used by Linux users. Related Article: 8 Best Video Editing Software I Discovered for Linux 1. GIMP First, on the list, we
How to Kill a Process in Linux Systems
Sometimes, in your system some applications becomes unresponsive and unexpectedly crashes. Even after starting again it will not work because of the application process not shuts down completely. In such situation, you need to stop or terminate the process or kill the application process. In Linux, you can kill the process using multiple ways. This
How to Monitor Apache Performance Using mod_status in Ubuntu
While you can always have a peek at Apache log files to get information about your webserver such as active connections, you can get a very detailed overview of your web server’s performance by enabling the mod_status module. What is the mod_status module? The mod_status module is an Apache module that allows users to access
How to Install Roundcube Webmail on CentOS/RHEL 8/7
Roundcube is a free and open-source, fully-featured web-based multilingual IMAP webmail software, with an application-like user interface that is fully functional and customizable, and uses the latest web standards. It is built using PHP and offers full functionality that you can expect from a modern email client. Roundcube Features: It’s multilingual, supports over 70 languages.
How to Find the Length of a List in Python
Lists are one of the most commonly used data types in Python and are used to store collections of items of the same type. This article shows how to find the length of a list. len() Function # Python has a built-in function len() that returns the length of a given object. The object can