This guide explains how to connect to both Linux and Windows VPS servers, using tools built into your operating system.
root
for Linux, Administrator
for Windows)Windows 10 and 11 come with OpenSSH built in:
ssh root@YOUR_VPS_IP
yes
when prompted about authenticity.✅ You’re now connected!
YOUR_VPS_IP
22
root
, and enter your password.Just use the terminal:
ssh root@YOUR_VPS_IP
First-time connection will ask to confirm the fingerprint (yes
), then enter the password.
Recommended for advanced users.
ssh-keygen -t rsa -b 4096
ssh-copy-id root@YOUR_VPS_IP
You can now log in without a password.
Win + R
, type:mstsc
and press Enter.YOUR_VPS_IP
Administrator
✅ You should now see your Windows VPS desktop.
YOUR_VPS_IP
Administrator
credentialsInstall Remmina or another RDP client:
sudo apt install remmina
Then launch:
remmina
Add a new connection:
YOUR_VPS_IP
Administrator
Click Connect.
Problem | Fix |
---|---|
🔒 SSH: "Permission denied" | Double-check your password or SSH key |
🔄 RDP: "Can’t connect to remote computer" | Ensure port 3389 is open on Windows VPS |
🧱 Connection timeout | Verify your firewall and server is running |
🧾 Wrong credentials | Use credentials from your VPS welcome email |