Skip to content

Linux & Servers

Category: Linux

9 guides

Linux & Servers

Root User Management via SSH in Linux/Centos

  1. Login as root (replace localhost with your server address) ssh root@localhost To create a Root User Account 2. Type in this command and press…

1 min read

Linux & Servers

How to Install WHM DNSOnly

Install cPanel DNSONLY To install cPanel DNSONLY, run the following commands: To open the /home directory, run the following command: cd /home To install GNU Wget,…

Linux & Servers

Remote Host Identification Error

Symptom(s): Can't access the server via SSH and this message shows: @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ IT IS POSSIBLE THAT SOMEONE…

2 min read

Linux & Servers

Updating Root Password via SSH in Linux/Centos

1. Login as root (replace localhost with your server address) ssh root@localhost 2. Type in this command and press enter passwd 3. Type in your new…

Linux & Servers

Installing Nano Editor on Centos

Nano editor makes it easier to edit files through the terminal/command prompt window. In order to install it on CentOS 1. Login as root (replace localhost…

Linux & Servers

Installing IonCube Loader on Centos

1. Launch the SSH terminal 2. Install the RPM file wget -q -O - http://www.atomicorp.com/installers/atomic |sh 3. Install the ioncube loader yum -y install php-ioncube-loader 4.…

Linux & Servers

Change Locale Language

To see list of available locales type following in terminal locale -a Now to change the locale type export LANG=<some_locale> For Example to change to English…