Статті

/sbin/mingetty console: No such file or directory

Comment out all the lines in /etc/init/tty.conf and then reboot

Basic Linux Commands

Below is a brief guide for basic usage of a Linux shell (command line). Once you've mastered the...

Basic iptables usage

Iptables is a program that allows you to configure Linux's built-in firewall. By default, no...

CSF getting modprobe errors

When restarting CSF you get errors similar to below: FATAL: Could not load...

Could not initialize random number generator or /dev/random not found

mknod /dev/random c 1 8cd /dev/sbin/MAKEDEV std

How To Resolve Missing cPanel EMail Users

The cPanel E-mail Addresses page loads the list of E-mail users from two files in...

How do I upload files large or small to my VPS server?

We don't do posting and going to data centre anymore to upload files.Also uploading via any of...

How to Find the folder with most files / inodes?

To find the folder with most files or inodes run the following command:find / -xdev -printf...

How to Install Imagick on a cPanel VPS Server

First ensure you have imagick installed via yum: yum install ImageMagick ImageMagick-develIf...

How to Install mod_cloudflare on cPanel VPS Servers running CentOS

bash <(curl -s...

How to SSH into your VPS

After receiving your VPS login details, the first thing you'll want to do is log in to the VPS....

How to change the primary IP address of a WHM/cPanel server

This is for CentOS/RHEL based servers. Steps in WHM: Log into WHM and go to Basic cPanel...

How to create TUN/TAP on LXC Container

To actually use a tun/tap device it must be created inside the container on every boot, so add...

How to find the most connections from IP address using netstat

Login via SSH onto your VPS.Run the following:netstat -antu | grep :80 | grep -v LISTEN | awk...

How to install Python with mod_wsgi on a CentOS VPS or Server with cPanel

The world knows that cPanel/WHM is not too Django, or python friendly. However, this is a step by...

Installing CSF (ConfigServer Firewall) on a server

This guide will walk you through installing CSF on a VPS/Dedicated server. Preparing the server...

Migrating/Restoring large cPanel domain from shared hosting account to your VPS server

cPanel facilitates you to restore full domain including email accounts, MySQL databases, database...

Name Server Options

3 options exist when you have a Managed VPS Server:1. You could manage all your dns via the...

NoVNC console not working LXC Container

If CentOS 6:Ensure there is no other tty#.conf files. If so rename them to tty#.old (Note #...

Suspicious "spamd child" Process Emails

If you have a dedicated server or VPS with the Config Server Firewall (CSF) software installed...

Unable to open pty: No such file or directory

vzctl exec $CTID /sbin/MAKEDEV tty vzctl exec $CTID /sbin/MAKEDEV ptyorvzctl exec $CTID "cd...

VPS Automated Systems

We use High Availiblity clusters of LXC and OpenVZ servers. If at any point servers get high cpu...

What happens when you reach your VPS bandwidth limit?

If your VPS exceeds its bandwidth limit, our system will automatically suspend the service. You...

What is guaranteed RAM, burstable memory, vSWAP and SWAP?

Guaranteed RAM is the RAM(Memory) size which is allocated to a VPS and can be used whenever...

cPanel Quotas set to unlimited

SSH into server and run the folllowing:touch /aquota.usertouch /aquota.groupchmod 0600...

‘/bin/rm: Argument list too long’ error

You may of come across this error like us when running the command rm -rf *, fortunately there is...

Find All Large Files On A Linux System

We can use find to search directories for files greater than 20MB, display the path and file...