Tag: centos

Business vector created by vectorpouch - www.freepik.com

Top 10 Web Hosting Control Panels 🔝🔟

Quick List of the Best Web Hosting Control Panels OpenPanel – a robust hosting panel designed to provide your users with a VPS-like experience. cPanel – Best Linux-only web hosting control panel for users who want a control panel...

Screenshot of the WSO 2.6 Shell

⚠️ WSO 2.6 Shell 😲

WSO (web shell by oRb) is a simple and easy to use tool for any would-be hacker to learn and use. WSO 2.6 Shell This shell allows an attacker to perform the following actions: View detailed server informationFile management (uploading, downloading...

Linux Server file transfer 01 - Connect to FTP from 🐧 Linux and download files

Connect to FTP from 🐧 Linux and download files

To connect to the FTP server, we have to type in the terminal window ‘ftp’ and then the domain name ‘domain.com‘ or IP address of the FTP server and port. ftp example.com 21 you will be asked for username and...

c8 hue 6 - How to find, count and kill 🐧 Zombie Processes

How to find, count and kill 🐧 Zombie Processes

If you have zombie processes it means those zombies have not been waited for by their parent (look at PPID displayed by ps -l). You have two choices: Fix the parent process (make it wait);Kill the parent; or live with it. Remember that living with...

c8 hue 6 - Installing CentOS 7 🐧 on VirtualBox

Installing CentOS 7 🐧 on VirtualBox

First lets download the VM image from this website. Why use VM images instead of the real CentOS ico? The VirtualBox and VMware images are created in such a way that they are less in size but contains all the standard packages required for instant...

email 3249062 1280 - Get Email Alert on low Disk Space

Get Email Alert on low Disk Space

Here is a small script that will send you an email when the disk usage rises above the percentage specified by the THRESHOLD variable (90% in the example bellow). If you don’t want to step up to a full monitoring solution such as Nagios...

nodejs - Install NODE.JS on CentOS

Install NODE.JS on CentOS

To install Node.js on CentOS perform (as root):

curl -sL | bash -
yum install -y nodejs

It will output each step as it moves along, prompting you to manually install any 3rd party dependencies.

Verify the install with:

node -v