Numpy is described as a library for the programming language of Python. It adds a lot of supports for matrices, arrays that are multi-dimensional along with a big collection of functions that are high level and can operate on all…
Administrative tools
How to remove large error_log files from cPanel accounts?
Error logs on cPanel accounts may consume a lot of disk space on your server. It may create disk space issues, if your server contains a lot of accounts. Okay, here I’m going to explain “how we can remove those error logs…
Sar command usage with examples in Linux
Sar is one of the smart command line utility in Linux. Also, System Activity Reporter (SAR) is one of the important tool to monitor Linux servers.This command will helps system administrators to check the server resources status at different time…
What is isinstance function in Python?
This is a very important fn in Python programming. It returns a Boolean stating whether the object is an instance or subclass of another object. In this post, I am going to explain about Python function “isinstance” and its different…
What is inode number in Linux?
A short note on inode number – Linux/Unix Inode number in Linux. It’s simply a reference (index) about the file and directory on the System. This is an entry in Inode table. This data structure uses to represent a file…
Check the resource (cpu, memory) usage of users – Linux
In some high load situations, we need to find out the resource consumption of each users on the server to figure out the exact issue. There are a lot of options/commands available in Linux to find the same. Normally, we…
Load monitoring in Linux servers – top, w and uptime commands’ usage for checking the load on server
Load on Linux – top, w, uptime This is a necessary thing to check the load-average on your server for its better and stable performance. In a Linux server/system we can check the load by different ways. High load on…