Themes

Linux Basics

Number of tutorials: 43

6 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…

3 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 …

6 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…

-3 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…

481 0

Mount iPhone in Debian/Ubuntu linux

To connect an iPhone to Debian or Ubuntu Linux, you need to perform the following: sudo apt-get install ideviceinstaller python-imobiledevice…

0 0

How to remove all Docker Containers and Images

How to stop all Docker Containers docker kill $(docker ps -q) How to remove all Docker Containers docker rm $(docker ps -a -q) How to…

2 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 ./…

1 0

VPS migration over the Internet

If you want to migrate / transfer the VPS from one host to another and don't want to reinstall the system again, you can use the disk transfer of the…

32 0

Testing connectivity speed using GRML

In this tutorial we're going to show you how to check your connection speed for your VPS. Turn off the VPS through admin.hukot.net. Next step, mount…

3 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…

24 0

Generating an SSH Key Pair in Windows, MAC, Linux

SSH is a network protocol that ensures the security of data transmission and verifies your identity using public key cryptography. You need to…

16 0

How to check connectivity speed in Linux from shell

Just as there are possibilities to test the speed of Internet connection via www services, it is possible to test the connection speed directly from…

29 0

How to copy files with rsync over SSH

In this howto we will cover the steps needed to copy files with [url=https://rsync.samba.org/]rsync[/url] over SSH in Debian, CentOS or Ubuntu Linux…

5 0

How to restrict user logins to SSH

If we want to allow SSH login only to specific users, we need to edit the SSH configuration file. nano /etc/ssh/sshd_config At the end of the file,…

-5 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 …

23 0

How to disable SSH root login

To disable root login for SSH, you need to edit the configuration file /etc/ssh/sshd_config. nano /etc/ssh/sshd_config Find the following line and…

12 0

Install Linux Malware Detect for Debian/Ubuntu

Linux Malware Detect is an open source Malware scanner you can use to detect and clean malware infections on your WordPress (for another CMS too) web…

-14 0

Nginx, MySQL, PHP installation - Debian 9

LEMP is a software bundle used to provide dynamic web pages and web applications. LEMP stands for a Linux operating system with an Nginx web server,…

How to protect VPS from DDoS attacks - Linux

54 0

How to protect VPS from DDoS attacks - Linux

Distribued denial of service (DDoS) is unfortunately still becoming more and more common way to attack an organization's infrastructure. This…

How to migrate VPS

14 0

How to migrate VPS

If you need to migrate a virtual server between two hosts over a network, you can use this simple tutorial using DD over SSH or Netcat from a Linux…

4 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…

1 0

Installing MongoDB on Ubuntu

MongoDB is an open-source database primarily used in modern web applications. MongoDB Repository MongoDB is available in Ubuntu packages, but the…

51 0

Setting up firewall with UFW on linux

One of first defenses of your server is firewall. Firewall was often solved with complex and mysterious tools in the past. Today we can use tool…

Installation and setup of Git - Ubuntu/Debian

8 0

Installation and setup of Git - Ubuntu/Debian

Git is a distributed version control system. The program allows for nonlinear project development and efficiently handles a large amount of data by…

38 0

Adding SWAP size - Ubuntu/Debian

One of the simplest ways to enhance your application's memory protection is by adding Swap memory. Swap is an area on your hard drive used for…