Tutorials
Search thru our knowledge base
11 0
How to delete a large number of files in a directory - Linux
It may be necessary to clean up a directory from unnecessary data. This often involves "cache" directories. In a Linux shell, you can use various…
11 0
How to check disk space usage in Linux?
If we want to find out what occupies space on the server, we can use several commands. We can use the command du. du -kscx * du -hc --max-depth=4 …
11 0
Import MySQL database using SSH
Tutorial assumes that you already have your .sql file on the server. If you haven't uploaded it yet, you can do so via sftp: sftp server-ip@host get…
11 0
HowTo NFS Mount - Debian/Ubuntu distros
Introduction NFS (Network File System) is a distributed filesystem protocol that allows you to mount remote directories on your server. This allows…
11 0
Rename network interface
The best way to rename a network interface is through udev. Edit the file: /etc/udev/rules.d/70-persistent-net.rules to change the interface name…
11 0
How to install MySQL server 5.5.62 on Debian, Ubuntu
This tutorial also works on other versions of MySQL server in branch 5.5.x. Uninstall any existing version of MySQL sudo rm /var/lib/mysql/ -R …
10 0
Recursively changing permissions on directories or files
If you want to change permissions for directories or files in Linux, BSD, or MAC OS in bulk and recursively, below you will find a simple guide on…
10 0
How to set up an email inbox in the Mail client - Windows 10 - IMAP
When you launch Mail, click the Add Account button. Select the Advanced Settings option. Select Internet e-mail as the account type. Fill in…
10 1
Mounting your own ISO file for installation of the operating system
After purchasing a virtual server, if you haven't found the desired operating system, you can upload your own ISO file to us and install the…
8 0
WordPress - bulk fix of file and directory rights - shell
Bulk file rights fix for WordPress, from a shell in the required directory: # recursively finds directories and changes permissions for them find ./…
8 0
How to export PostgreSQL database
If you need to back up or move a database, you'll need to create a database dump. You can create a database dump on our web hosting via SSH. You can…
8 0
Creating a database in ISPConfig
We will add a database for our domain, as we did it here. Creating a Database User To add a database, first, we need to create a database user. In…
8 0
How to connect iPhone in Debian/Ubuntu linux
To connect an iPhone device in Debian/Ubuntu Linux, you need to install the following packages: sudo apt-get install ideviceinstaller python…
7 0
How to stop all Docker Containers
To stop all Docker containers simply run the following command in your terminal: docker kill $(docker ps -q) How It Works The docker ps command…
7 1
Cookie bar PRO - implementation
To ensure the proper functioning of the cookie bar, it is necessary to define cookies at cm.hukot.cloud Panel Installation In the following steps,…
7 0
Alpine Linux - how to install Docker
Installing Docker on Alpine Linux is simple. Follow these steps: Important: Docker installation on Alpine Linux is in the community repository. So,…
7 0
Recovering a forgotten password for hosting and domain services administration - Hukot.net
It sometimes happens to everyone that they forget their password, but what to do if you forget the password to administration of hosting services …
7 0
Mass change of file permissions in Linux, BSD and MAC
Performing a bulk change of permissions, owner, and group for files and directories in Linux is not a problem. If you only need to apply this to…