База знаний U1HOST
  • База знаний U1HOST
  • Открыть U1HOST
  • ЛИЧНЫЙ КАБИНЕТ
    • Регистрация в биллинге U1HOST
    • Как заказать виртуальный сервер U1HOST
    • Переустановка операционной системы на сервере
    • Изменение пароля от виртуального сервера
    • Часто задаваемые вопросы по услугам U1HOST
  • Виртуальные серверы (VPS)
    • Какие существуют типы облачных серверов
      • VPS хостинг: свобода управления сервером для ваших проектов
      • Выделенные серверы: максимальная мощность для ваших задач
    • Подключение к серверу через Termius SSH-клиент
    • Как подключиться к удалённому рабочему столу Windows RDP
    • Лучшие SSH-клиенты: сравнение PuTTY, Termius, MobaXterm и другие
  • НАСТРОЙКА VPN
    • Настройка собственного VPN-сервер за 6 шагов
    • Настройка Amnezia VPN на VPS без терминала: WireGuard и OpenVPN за 5 минут
    • WireGuard: Установка и настройка на собственном сервере
    • OpenVPN - настройка личного VPN-сервера
    • Как создать собственный прокси-сервер на VPS с 3Proxy: быстрая и ручная установка
    • NekoRay VPN клиент на Windows — подключение, проксирование и автозапуск
    • Установка AmneziaVPN на Android TV — как снова смотреть YouTube в 2025
  • Настройка ПО
    • Установка MikroTik RouterOS на виртуальный сервер
    • Как установить Keitaro на сервер — инструкция по трекеру
    • Screen — мощный консольный мультиплексор для Linux-систем
    • Установка и настройка Nginx на сервер с SSL и PHP
    • SpeedTest: измерение скорости сети на Linux-серверах
    • Установка бесплатного SSL-сертификата Let's Encrypt на сервер с Nginx или Apache
  • ИИ
    • Как установить DeepSeek на сервер — пошаговая инструкция для VPS
  • PERSONAL VPN SETUP GUIDE
    • Setting Up a Personal VPN with VLESS Marzban
    • Setting Up a Personal VPN with AmneziaWG
  • РУКОВОДСТВО ПО МАЙНИНГУ НА СЕРВЕРАХ
    • Установка ноды Privasea: полное руководство с командами
    • OpenLedger: Установка ноды и участие в тестнете с вознаграждением – Полный гайд
    • Multiple Network: Установка и настройка ноды на Linux – Полное руководство
    • Cysic: Пошаговое руководство по установке и настройке ноды
  • MINING SERVERS CONFIGURATION GUIDE
    • OpenLedger: Step-by-Step Guide to Node Setup and Participation in the Rewarding Testnet
  • ТЕХНИЧЕСКАЯ ДОКУМЕНТАЦИЯ
    • .NET Framework 3.5: Установка в Windows 10
    • Usermod в Linux: Управление пользователями
    • Команда cp в Linux: Копирование файлов и каталогов
    • Команда nc в Linux: Использование для сетевых соединений
    • IOPS в Linux: Тестирование и оптимизация дисковой производительности
    • UnixBench на Linux: тестирование производительности сервера
Powered by GitBook
On this page
  • About OpenLedger
  • Basic Tasks to Get Started
  • Installing a Node on a VPS: A Detailed Guide
  • 1. Installing MobaXterm
  • 2. Install Docker
  • 3. Install the required dependencies
  • 4. Install the necessary files and start the process
  • Installing a Node on Windows: A Detailed Guide
  • 1. Go to the link and download the Docker installer
  • 2. Open the Docker file
  • 3. Go to the link and click on the Windows icon
  • 4. Click Download
  • 5. Extract the file
  • 6. Click "Login Node" and enter the account credentials you registered earlier
  • 7. Start the node
  • 8. Wait a few minutes, and the status will change to "Connected"
  • 9. Return to the website and confirm that your node has been added to your account
  • Installing a Node on Android: A Detailed Guide
  • 1. Open the website on your phone
  • 2. Tap Download APK
  • 3. Open the app and log in
  • 4. The node is now running
  • Earnings Rate
  • Additional Commands
  1. MINING SERVERS CONFIGURATION GUIDE

OpenLedger: Step-by-Step Guide to Node Setup and Participation in the Rewarding Testnet

Step-by-step guide to setting up and running an OpenLedger node. Detailed instructions on how to install on VPS to get rewards in the test network.

PreviousCysic: Пошаговое руководство по установке и настройке нодыNext.NET Framework 3.5: Установка в Windows 10

Last updated 4 months ago

Reading Time: 15 Minutes | Last Updated: January 2025

About OpenLedger

OpenLedger is a sovereign data blockchain for AI that has recently launched a rewarding testnet with 51% of $OPN tokens allocated. At this stage, participants can complete simple tasks and run nodes to farm points.

Key Project Features:

  • Investment: $8,000,000

  • Investors: Polychain, HashKey, Balaji Srinivasan, and others

  • Server Requirements: 1 CPU / 1 GB RAM / 10 GB Storage

  • Supported Operating Systems: Windows, Ubuntu 22.04, Android

  • Ports Used: 8000, 8080, 5555

All farmed points will be converted into the project’s main token, $OPN. The conversion rate will be announced closer to the TGE.

Basic Tasks to Get Started

1. Register and Claim Daily Rewards

  1. Claim your initial 50 PTS through Daily Rewards

Collect PTS daily. A streak bonus is also available for consistent daily activity.

2. Set Up Social Media Accounts

Now, link your social media accounts here to earn an additional +100 PTS.

  • Connect Twitter/X (+50 PTS)

  • Join Discord (+50 PTS)

  • Subscribe to Telegram (+50 PTS)

Important: Social media account verification may take approximately 30 minutes.

Installing a Node on a VPS: A Detailed Guide

1. Installing MobaXterm

  • Connect to the rented server using root.

  • Execute all commands sequentially.

2. Install Docker

sudo apt remove docker docker-engine docker.io containerd runc
sudo apt install -y apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt update
sudo apt install -y docker-ce docker-ce-cli containerd.io
sudo docker --version

3. Install the required dependencies

sudo apt update
sudo apt install -y libgtk-3-0 libnotify4 libnss3 libxss1 libxtst6 xdg-utils libatspi2.0-0 libsecret-1-0

4. Install the necessary files and start the process

wget https://cdn.openledger.xyz/openledger-node-1.0.0-linux.zip
apt install unzip
apt install screen
unzip openledger-node-1.0.0-linux.zip
sudo dpkg -i openledger-node-1.0.0.deb
sudo apt-get install -f

If there are any errors, ignore them! Always type y and press Enter (if prompted).

sudo apt-get install desktop-file-utils
sudo dpkg --configure -a

Start a screen session.

screen -S openledger_node
openledger-node

If there are any errors, ignore them! Always type y and press Enter (if prompted).

sudo apt-get install libgbm1
sudo apt-get install libasound2

Start the node. After a minute, the application will launch with an account authentication prompt

openledger-node --no-sandbox

Click "Login Node" and enter the account credentials you registered earlier.

Start the node

Wait a few minutes, and the status will change to "Connected"

Press Ctrl + A + D to detach the session. Return to the website and confirm that your node has been added to your account.

Installing a Node on Windows: A Detailed Guide

2. Open the Docker file

4. Click Download

5. Extract the file

6. Click "Login Node" and enter the account credentials you registered earlier

7. Start the node

8. Wait a few minutes, and the status will change to "Connected"

9. Return to the website and confirm that your node has been added to your account

Installing a Node on Android: A Detailed Guide

2. Tap Download APK

3. Open the app and log in

4. The node is now running

Earnings Rate

Additional Commands

ЕIf the Node Disconnects

sudo apt update
sudo apt install xfce4
sudo apt install xvfb
Xvfb :99 -screen 0 1920x1080x24 &
export DISPLAY=:99

If this error occurs, fix it

touch ~/.Xauthority

Открываем конфиг и ставим такие значение

apt install nano
sudo nano /etc/ssh/sshd_config

X11Forwarding - yes

X11Displayoffset - 10

X11UseLocalhost - yes

  • Save and close using Ctrl + X, then Y, and press Enter.

  • Restart the node.

sudo systemctl restart sshd

Additional Information

Our Plan (149 RUB/month) is fully compatible for running an OpenLedger node!

Log in to your account using Google on the

Download and install .

1. Go to the and download the Docker installer

3. Go to the and click on the Windows icon

1. Open the on your phone

Telegram Channel:

U1HOST Hosting:

DE-Promo
official website
MobaXterm
link
link
website
https://t.me/u1host
https://u1host.com