Login
Register
We care about the Environment

How to Change SSH Port in Linux

In this guide on How to Change SSH Port in Linux, you will learn how to change the SSH port on your Linux server to enhance security and reduce unauthorized access attempts. Changing the SSH port is a proven method to protect your system and optimize network traffic.   Step 1: Open the SSH Configuration … Read more

How to Change DNS Settings on Linux

In this guide on How to Change DNS on Linux, we will show you how to update your DNS settings to improve network performance, enhance security, and speed up domain resolution. Whether you are switching to Google DNS, Cloudflare, or using custom nameservers, these steps ensure a smooth transition. For more information on DNS fundamentals, … Read more

How to Install Speedtest CLI on Linux

Speedtest CLI is a command-line tool that lets you test your internet speed directly from the terminal. In this guide on install Speedtest CLI on Linux, using the official Ookla version for accurate results, we cover multiple installation methods. Step 1: Update Your System Before installing Speedtest CLI, update and upgrade your packages to the … Read more

Evoxt VM Dashboard

Welcome to the Evoxt VM dashboard guide. This article provides a complete overview of your VM details, performance monitoring, connectivity, and configuration options available through the Evoxt VM dashboard. Whether you are managing hardware specs or setting up backups, our Evoxt VM dashboard ensures you have full control over your virtual machine. Overview Displays your … Read more

How to Connect to a Linux VM with IPv6 via SSH

In this guide, you'll learn how to connect to a Linux VM with IPv6 via SSH, ensuring secure and reliable remote access. By following the steps outlines, you can verify IPv6 connectivity, check your public IPv6 address, and establish an SSH connection using IPv6. Verifying IPv6 Connectivity Before connecting via SSH, confirm that both your … Read more

Linux resource monitor: Optimize & Track System Performance

At Evoxt, we know that an effective Linux resource monitor is essential for optimizing server performance. In this guide, you'll explore key tools and strategies to monitor CPU, memory, disk, and network usage, ensuring your Linux systems operate at peak efficiency. Real-Time System Monitoring Using top (Interactive System Monitor) The top command provides real-time insights … Read more

How to Host a Discord Bot on a VPS

Hosting a Discord bot on a VPS offers flexibility, reliability, and control. This guide will help you host your Discord bot on an Evoxt VPS step by step. Step 1: Set Up Your VPS for Hosting a Discord Bot Purchase a VPS Plan: Choose an Evoxt plan that fits your bot’s resource needs (CPU, RAM, … Read more

How to Install SSL on Ubuntu with Certbot

Securing your website by installing SSL on Ubuntu with Certbot is crucial for data protection and search engine ranking. Follow this step-by-step guide to install SSL on your Ubuntu server efficiently. Step 1: Update Your System Before installing SSL, ensure your system is up to date: sudo apt update && sudo apt upgrade -y   … Read more

Install Ubuntu GUI and Connect via RDP

Want to install a graphical user interface (GUI) on your Ubuntu server? Follow this guide to set up a GUI and enable remote access via RDP. Whether you're using a minimal install or a headless server, this tutorial will help you get started. Step 1: Update Your System for Ubuntu GUI Installation Before installing a … Read more

How to set up FTP server in Linux

Step 1: Install vsftpd To set up an FTP server in Linux, first, you have to ensure vsftpd is installed: For Ubuntu/Debian: sudo apt update sudo apt install vsftpd -y For CentOS/RHEL: sudo yum install vsftpd -y Step 2: Basic Configuration of vsftpd Configure vsftpd to allow basic FTP connections and set user restrictions. Open … Read more