Want to run your own bots, websites, or even crypto nodes 24/7? A Virtual Private Server (VPS) is the game-changer you've been looking for!
Visit this LINK to use my affiliate link
Discounted rate is good for 1 year plan

- Change currency to EURO for lower rate.
- Choose Cloud VPS 10 - VPS 60
- For region, choose european union or as long as its FREE!
- Choose SSD/NVMe storage type(FREE)
- Choose Ubuntu 22.04
- Leave the rest as default
- Click next > Fillup the form
- Choose your payment method
- Check email for the cpanel login
- Login to your cpanel together with system generated password
- Change your password and activate 2FA authentication with google authy app.
- Wait for another email that includes the IP address of your VPS
- Go to: https://mobaxterm.mobatek.net/download-home-edition.html
- Choose installer edition
- Install and open
- Click session then SSH
- Enter your IP address to remote host
- Tick the specify username and type root
- Click OK button
- Enter your password
- Copy and paste to run this command
mkdir -p ~/.ssh
chmod 700 ~/.ssh
nano ~/.ssh/authorized_keys- Go to: https://filehippo.com/download_puttygen/
- Download, install and open it
- Click generate
- Move your mouse until you complete the progress bar
- Save your private key to a secured location
- You will see Public key for pasting into OpenSSH
- Right click inside the box
- Select all and copy
- Go back to your terminal and paste it
- Control X Y then enter to save the file
- Close the tab
- Right click to your VPS to edit the session
- Tick the checkbox 'Specify username'
- Type root
- Go to advanced SSH settings
- Tick the checkbox 'Use private key'
- Click the icon to open and locate your private key
- Click OK then login now
*This will automatically login to your VPS (no need to type root and password) but do not close your terminal yet proceed to next step 👇
Run this command
nano rdp.shcopy paste this
#!/bin/bash
# Check if the script is being run with root privileges
if [ "$EUID" -ne 0 ]; then
echo "Please run as root."
exit 1
fi
# Check for required parameters
if [ $# -ne 2 ]; then
echo "Usage: $0 <username> <password>"
exit 1
fi
# Define user and password variables from script parameters
NEW_USER=$1
NEW_PASSWORD=$2
# Update the package list and upgrade all your packages to their latest versions.
echo "Updating package list and upgrading packages..."
apt update && apt upgrade -y
# Install all necessary packages
echo "Installing necessary packages..."
apt install -y xfce4 xfce4-goodies xrdp net-tools wget ethtool flatpak
# User Creation
# Add the user with the specified username and password
echo "Creating new user..."
useradd -m -s /bin/bash $NEW_USER
echo "$NEW_USER:$NEW_PASSWORD" | chpasswd
# Add the user to the sudo group for administrative rights
usermod -aG sudo $NEW_USER
# XRDP Configuration
# Configure xrdp to use XFCE desktop
echo "startxfce4" > /home/$NEW_USER/.xsession
chown $NEW_USER:$NEW_USER /home/$NEW_USER/.xsession
# Restart xrdp service to apply new port
echo "Configuring xrdp..."
systemctl restart xrdp
# Enable xrdp at startup
systemctl enable xrdp
# Firefox with flatpak
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak install -y flathub org.mozilla.firefox
# Set as default browser
update-alternatives --install /usr/bin/x-www-browser x-www-browser /var/lib/flatpak/exports/bin/org.mozilla.firefox 200 && sudo update-alternatives --set x-www-browser /var/lib/flatpak/exports/bin/org.mozilla.firefox
# Create the systemd service file for network configuration
echo "Creating systemd service for network configuration..."
sudo tee /etc/systemd/system/eth0-config.service > /dev/null <<EOL
[Unit]
Description=Configure eth0 network interface
After=network.target
[Service]
Type=oneshot
ExecStart=/usr/sbin/ethtool -s eth0 speed 1000 duplex full autoneg off
RemainAfterExit=yes
[Install]
WantedBy=multi-user.target
EOL
# Reload systemd to recognize the new service
sudo systemctl daemon-reload
# Enable the service to start on boot
sudo systemctl enable eth0-config.service
# Start the service immediately
sudo systemctl start eth0-config.service
# Clear command history
history -w
history -c
# Print the message important note
echo -e "
#################################################\n\
# Installation completed.
#################################################\n\
Components installed and started:\n\
- XFCE Desktop\n\
- xrdp\n\
- Firefox\n\
- Network configuration service\n\
"Control X Y then Enter to save
sudo chmod +x rdp.shReplace your desired username and password
sudo ./rdp.sh username passwordsudo apt updatewget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.debsudo apt install ./google-chrome-stable_current_amd64.debIf error occured then run this command, after that run the last command 👆
sudo apt-get install -f- On your PC, search remote desktop connection
- Click to open
- On computer, enter the IP address
- Enter your username then your password
This will prevent the machine from going into a low-power state or locking the screen which the node extensions or other nodes will operate without interruption so you must disable the lock screen, screensaver and power management.

If you encountered any issues join and send message to our telegram


