Top command has an important role in Unix/Linux system/server administration side. The command “top” displays a dynamic view of process that are currently running under the system. Here I’m explaining some of the useful usage of top command for my…
Administrative tools
How to check the Inode usage for an account in cPanel server?
Checking inode usage – cPanel/WHM First of all, let me briefly explain about Inode. Index Node (inode) is a basic concept in Linux/Unix. Index node/number (inode) is a data structure which contain the information about a file in your server/hosting…
[Malware Detector] Installation & Usage of Maldet on Linux
Why Maldet? This is one of the commonly using Malware detector for Linux servers. The installation and usages of Maldet is quit simple compared to other scanners. It uses threat data from network edge intrusion detection systems to extract malware that…
A quick comparison – Lists, Tuples and Dictionary in Python!
Why this post? These three words are very common in Python language. Everyone, who loves Python should have a clean idea on Lists, Tuples and Dictionaries in Python. All of them are used to manage sequences in Python. Python has…
How to convert a list to string in python?
Sometimes, we need a combined string like output or return from our Python code. Is it possible to obtain a combined string like output from a list? Sure, everything is possible in Python. The only thing you have to do…
What’s new on RHEL7/CentOS7?
Why this topic? Yeah.. The Linux is already updated. This new version (RHEL and CentOS 7) has a lot of changes. It’s time that we had a discussion on this topic. As we all know, RHEL is one of the most…
More about sequences and Lists – Array concept in Python part 2
Dealing Arrays in programming is very important. Lists are very similar to Array concept in programming language. A list can contain any types of variables. This can include variables like, integer, string etc, whatever you wish to add as a…