How to Control search engine crawlers with a robots.txt file Website owners, can instruct search engines on how they should crawl a website, by using a robots.txt file. When a search engine crawls a website, it requests the robots.txt file first and then follows the rules within. It’s important to […]
Category: Linux
Installation/Upgradation of IPTABLES and CSF
Steps to Update/Install iptables iptables v1.6.0 cd /usr/src wget -O /usr/src/iptables-1.6.0.tar.bz2 https://www.netfilter.org/projects/iptables/files/iptables-1.6.0.tar.bz2 –no-check-certificate tar -jxf iptables-1.6.0.tar.bz2 cd iptables-1.6.0 ./configure –prefix=/myiptables –with-xtlibdir=/lib/xtables –disable-nftables make make install mv /sbin/iptables /myiptables/iptables.backup mv /sbin/iptables-restore /myiptables/iptables-restore.backup mv /sbin/iptables-save /myiptables/iptables-save.backup ln -s /myiptables/sbin/iptables /sbin/iptables ln -s /myiptables/sbin/iptables-restore /sbin/iptables-restore ln -s /myiptables/sbin/iptables-save /sbin/iptables-save ———– For […]
Icons is missing in paper lantern theme
When accessing the accounts enabled with the paper lantern theme we could see that the image icons not being displayed. We have tried a cpanel upgrade on the server but could still find the issue being persisting. Steps to reproduce: Login to any cpanel with paper lantern enabled. Once logged […]
Headers and client library minor version mismatch—-cPanel Servers
php -i | grep API Server API => Command Line Interface PHP API => 20090626 Zend Extension Build => API220090626,NTS PHP Extension Build => API20090626,NTS DOM/XML API Version => 20031129 API Version => 3001 MHASH API Version => Emulated Support Client API version => 5.3.12-MariaDB Client API library version => […]
SSH Automation
Secure Shell (SSH) is a cryptographic network protocol for operating network services securely over an unsecured network.[1] The best-known example application is for remote login to computer systems by users. SSH provides a secure channel over an unsecured network in a client-server architecture, connecting an SSH client application with an […]
How to install tor browser in ubuntu
Tor is free software and an open network that helps you defend against traffic analysis, a form of network surveillance that threatens personal freedom and privacy, confidential business activities and relationships, and state security. Tor protects you by bouncing your communications around a distributed network of relays run by volunteers […]
Understanding VI or VIM
VI OR VIM is the famous and most commonly used text editor for Linux operating systems. In this post, I would like to write shortcuts in VI or VIM which can make text editing easy. vi” is a text editor from the early days of Unix. It became quite […]
SSH login without password in a simple 3 Steps
In this page, I would like to enable the ssh passwordless entry to a server in 3 steps. For this, we are making use of ssh-keygen and ssh-copy-id ssh-keygen helps you generate SSH keys if the key are not generated ssh-copy-id will help you to copy the key to the […]