VPS 7 min read

How to Log In to Your Linux VPS on Truobox

Truobox

Truobox

June 15, 2022

Introduction

You’ve just ordered your Linux VPS on Truobox and now you need to connect for the first time. It’s normal to have questions if this is your first server: where do I find my credentials? how do I connect? what tools do I need?

The good news is that connecting to a Linux VPS is easier than it looks. This guide covers two ways to log in: through the noVNC console in the client panel (great for quick access) and through an SSH client such as Bitvise (recommended for day-to-day administration). By the end, you’ll be inside your Linux server and ready to start configuring it.

Linux VPS from $4.99/month. Our VPS servers offer dedicated resources, full root access, and the most popular Linux distributions. See VPS plans →

What you’ll need

Before you start, make sure you have:

  • An active Linux VPS in your Truobox account.
  • The welcome email you received when the service was activated (it contains your credentials).
  • A computer with an internet connection to reach the server.

Finding your login details

When your VPS is activated, Truobox sends you a welcome email with everything you need to access your server. That email includes these key details:

  • VPS name: The identifier for your server.
  • IP address: The public IP assigned to your VPS (for example, 185.xxx.xxx.xxx).
  • Location: The data center where it’s hosted.
  • Username: Usually root (the Linux administrator account).
  • Password: The initial access password assigned to your server.

Look for this email in your inbox (check your spam folder too). Store these details somewhere safe — you’ll need them every time you connect.

Method 1: Access through the noVNC console

The noVNC console is the fastest way to reach your VPS without installing anything. It runs straight from your web browser.

Step 1: Sign in to the client panel

Go to truobox.com and click “My Account”. Enter your email address and password to reach the client area.

Step 2: Navigate to your VPS

Go to Services > My Services and find your active Linux VPS in the list. Click on it to open its management panel.

Step 3: Open the noVNC console

Inside your VPS management panel, find and click the “noVNC Console” option. A new window opens with your Linux server’s terminal.

Step 4: Log in to Linux

In the terminal you’ll see a prompt asking for credentials:

login:

Type your username (usually root) and press Enter. Then type your password and press Enter again.

Keep in mind that when you type a password in Linux, nothing appears on screen — no asterisks, no dots. That’s normal security behavior. Just type the full password and press Enter.

If the credentials are correct, you’ll see the system prompt and you’re inside your VPS.

For day-to-day administration of your Linux VPS, we recommend using an SSH client instead of the noVNC console. An SSH client gives you a much better experience:

  • Copy and paste commands between your computer and the server.
  • Better performance and responsiveness.
  • Built-in file transfer (SFTP).
  • Multiple simultaneous sessions to the same server.

Bitvise SSH Client is an excellent free option for Windows. On macOS or Linux, you can use the built-in terminal with the ssh command.

Step 1: Download and install Bitvise

Download Bitvise SSH Client from its official site: bitvise.com. Install it by following the wizard (next, next, install).

Step 2: Configure the connection

Open Bitvise SSH Client and fill in these fields in the “Server” section:

  • Host: Enter your VPS IP address (the one in your welcome email).
  • Port: Leave the default value of 22 (the standard SSH port).

In the “Authentication” section:

  • Username: Type your username (usually root).
  • Initial method: Select “password”.
  • Password: Enter your VPS password.

Step 3: Connect to the server

Click the “Log In” button at the bottom of the window. The first time you connect, Bitvise shows you a window with the server’s fingerprint. That’s expected — it exists so you can verify the server’s identity. Click “Accept and Save” to continue.

Bitvise establishes the connection and automatically opens an SSH terminal window. If you see your server’s prompt, the connection was successful.

Step 4: Verify everything works

Once you’re in the terminal, run a simple command to confirm your VPS has internet connectivity:

ping -c 4 google.com

If you see replies with latency times (for example, 64 bytes from... time=10ms), your VPS is working correctly and has internet access.

You can also run a few other handy commands to get familiar with your server:

# Check the operating system version
cat /etc/os-release

# Check available resources
free -h       # RAM
df -h         # Disk space
nproc         # Number of CPUs

# Check the server hostname
hostname

SSH access from macOS or Linux

On macOS or Linux you don’t need to install anything extra — the built-in terminal already includes an SSH client. Just open the terminal and run:

ssh root@YOUR_IP_ADDRESS

Replace YOUR_IP_ADDRESS with your VPS IP. The first time, you’ll be asked to confirm the server’s fingerprint (type yes). Then enter your password and you’re in.

Connection example

ssh root@185.123.456.789

Best practices after your first login

Once you’ve confirmed you can reach your VPS, we recommend taking these initial security steps:

Change the default password

The password you receive in the welcome email is generated automatically. Replace it with one of your own that’s strong and easy for you to remember:

passwd

The system asks for your current password and then the new one twice. Use a password of at least 12 characters with uppercase letters, lowercase letters, numbers, and symbols.

Update the operating system

It’s good practice to update your system packages right after your first login:

# For Debian/Ubuntu
apt update && apt upgrade -y

# For CentOS/AlmaLinux
dnf update -y

Set up a basic firewall

If your VPS doesn’t have a firewall configured, it’s a good idea to turn one on:

# For Ubuntu (using UFW)
ufw allow ssh
ufw enable

Linux VPS from $4.99/month. Dedicated resources, full root access, and the most popular distributions (Ubuntu, Debian, CentOS, AlmaLinux). Our VPS servers are ready for your project. See VPS plans →

Conclusion

Logging in to your Linux VPS on Truobox is a simple process you can complete in minutes. The noVNC console gives you immediate browser-based access with nothing to install, while an SSH client like Bitvise offers a far better experience for daily management, with copy and paste, file transfers, and multiple sessions.

The recommended workflow is this: use noVNC for the initial login and basic setup, then switch to SSH for everything else. Once you get comfortable with the Linux terminal, managing your VPS becomes second nature.

Remember to change your default password, keep your system updated, and set up a basic firewall. With those first steps covered, your Linux VPS will be secure and ready to host your projects.