Artiklar

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....

Recover forgotten root password on CentOS 7

Synopsis Normally resetting the root password is a simple task if you’re logged in already with...

Suspicious "spamd child" Process Emails

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

What happens when you reach your VPS bandwidth limit?

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

Basic Linux Commands

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

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 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...

Basic iptables usage

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

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...

‘/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...