# Privasea. Installing a node


By [Kinzo | Airdrop | testnet | node ](https://paragraph.com/@xonaito) · 2025-02-01

---

**Privasea** is a decentralized AI network that uses fully homomorphic encryption and machine learning ( **FHEML** ) to securely transmit data.

Another project launched a node, and not just launched a node, but even allocated a significant part of the supply to node owners

The official start of the testnet is scheduled for **January 27, 2025** , but you can already bet. The moderator in **Discord** answered the question about the rewards as follows:

“ **Running nodes will be encouraged, but no further information is available yet** .”

Connect to the rented server via **root**

*   We update and install the necessary packages
    

    sudo apt update -y && sudo apt upgrade -y
    

    sudo apt-get update
    sudo apt-get install ca-certificates curl gnupg
    sudo install -m 0755 -d /etc/apt/keyrings
    curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
    sudo chmod a+r /etc/apt/keyrings/docker.gpgecho \
      "deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
      "$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \
      sudo tee /etc/apt/sources.list.d/docker.list > /dev/nullsudo apt update -y && sudo apt upgrade -ysudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugindocker --version
    

*   We collect a pool
    

    docker pull privasea/acceleration-node-beta:latest
    

*   Create a directory and go to it
    

    mkdir -p ~/privasea/config && cd ~/privasea
    

*   Getting storage files
    

    docker run --rm -it -v "$HOME/privasea/config:/app/config" privasea/acceleration-node-beta:latest ./node-calc new_keystore
    

*   We will need to enter a password, write the password in a notepad in advance — copy it — and paste it with the right mouse button
    
*   You need to enter the password — **2** times
    
*   Next we get our **node address** and **node filename**
    
*   Now on the left in **Moba,** click on **the ellipsis** and the **root folder**
    
*   Now to the privasea folder
    
*   Now the **config folder**
    
*   Click on the text file and on the blue arrow above — download this text file to your **PC**
    

> _This text file contains your private key from the node wallet._

*   You can import it into **EVM** wallet
    
*   Next, we enter these commands in the terminal
    

    cd config/
    ls
    

*   Copy the content starting from UTC and save it to notepad (copy it completely)
    
*   Next we enter
    

    mv UTC_LINE wallet_keystore
    

*   Example
    
*   Great! Now let’s go to [**the faucet**](https://faucet.quicknode.com/arbitrum/sepolia) and request test **$ETH on the Arbitrum Sepolia** testnet
    

> _Here is a list of all the faucets on_ [**_testnets_**](https://t.me/cryptoforto/1422) _, and also use the bridges (_ [**_1_**](https://testnetbridge.com/sepolia) _/_ [**_2_**](https://rinkeby.orbiter.finance/) _) if you need to transfer funds from_ **_Sepolia_** _to_ **_Arbitrum Sepolia_**

*   Next, go to [**the site**](https://deepsea-beta.privasea.ai/privanetixNode) and connect any wallet ( **for example, Maine** )
    
*   Click on **Set one up now!** and enter your nickname **+** set a commission of **1%**
    
*   Below we enter **the node address** ( **you can get it in the terminal** )
    
*   There will be an example below.
    
*   Click on the black button “ **Set up my node** ” and confirm transactions in the **Arbitrum Sepolia test network**
    
*   We see that our node is still “ **Offline** ”
    
*   Next, we return to the terminal and enter this command
    

> _Attention! In the line you need to replace the word “_ **_PASSWORD_** _” with your password, which you previously set when creating the node_

    KEYSTORE_PASSWORD=ENTER_YOUR_KEYSTORE_PASSWORD && docker run -d --name privanetix-node -v "$HOME/privasea/config:/app/config" -e KEYSTORE_PASSWORD=PASSWORD privasea/acceleration-node-beta:latest
    

*   Now the status on the site should change to **Online**
    
*   This is what normal logs look like
    
*   Let’s look at the logs
    

    docker logs -f privatenetix-node
    

*   After a few hours, the node verifies the tasks and for this we will receive **TPRAI** , which can be staked and receive rewards similar to **Cysic**
    

**Useful commands**
===================

*   View logs
    

     docker logs -f privanetix-node
    

*   Delete node
    

    docker stop privatetix-node
    docker rm privatetix-node
    rm -rf ~/privasea
    

**This article was written by the channel**
===========================================

[https://t.me/Cryptonaito](https://t.me/Cryptonaito)

---

*Originally published on [Kinzo | Airdrop | testnet | node ](https://paragraph.com/@xonaito/privasea-installing-a-node)*
