Skip to content

🚀 Quick Start with VPS

This guide will help you make your first connection to your new Amnezia Hosting server and introduce you to the basic commands for managing the system.

🚀 Step 1. Get Server Credentials

After your VPS is successfully activated, the main access details will be sent to the email address in your account:

  • Server IP Address (e.g., 192.168.1.100)
  • Username (usually root)
  • Password or SSH Key

💻 Step 2. Connect to the Server via SSH

Depending on your operating system, open a terminal and enter the connection command.

For Linux / macOS / Windows (via Terminal or PowerShell):

bash
ssh root@YOUR_SERVER_IP

Example: ssh root@192.168.1.100

First connection

On the first connection, the terminal will show the warning The authenticity of host... can't be established. Type yes and press Enter, then paste your server password (the password characters will not be shown as you type).

🔄 Step 3. Update the System First

Right after your first login, be sure to update the package list and installed software to the latest security versions. Run the command:

bash
apt update && apt upgrade -y

🛠️ Essential Commands for Managing Your VPS

Here is the basic set of Linux commands that every administrator needs:

CommandDescription
pwdShow the current folder you are in
ls -laList all files and folders in the current directory
cd /path/to/folderChange to another folder
df -hShow how much free disk space is left
free -hShow RAM usage
htopLaunch the task manager (CPU and RAM monitoring)
nano fileOpen a text file in the editor (exit with Ctrl + X)
apt install packageInstall a program from the repository
systemctl status serviceCheck a service's status (e.g., ssh)
rebootReboot your server

🛡️ Next Step

After the basic update, you can move on to deploying your personal VPN.