Yes. With Tilaa, you are completely in control.
Unlike managed hosting solutions where access is restricted, all our VPS services include full Root (Linux) or Administrator (Windows) access. This means you have the freedom to install any software, configure system files, and tweak the kernel settings exactly to your needs.
Linux: Root vs. Sudo
By default, you receive the root password for your server. The root user has unrestricted privileges to modify, move, or delete any file on the system.
While you can log in as root, it is safer to create a standard user account for daily tasks and use the
sudo command when you need elevated privileges. This prevents accidental deletion of critical system files.
Using the 'sudo' command
The sudo (SuperUser DO) command allows a permitted user to execute a command as the superuser.
Example: Updating your system.
sudo apt update
When you run this, the system will ask for your user password (not the root password). By default, Linux remembers this verification for 15 minutes so you don't have to type it for every command.
How to switch to the Root User
If you need to run many commands as root and don't want to type sudo every time, you can switch to a root shell session.
The Recommended Method: sudo -i
We recommend using sudo -i. This simulates a fresh login as the root user, ensuring all environment variables are loaded correctly.
user@server:~$ sudo -i
[sudo] password for user:
root@server:~#
Note the prompt change:
-
$indicates a standard user. -
#indicates you are working as root (be careful!).
Legacy Methods
You might see guides online mentioning sudo su - or sudo -s. While these work, sudo -i is generally considered the cleaner, modern standard for becoming root.