# Decentralized WebServices (DEWEB) 激励测试网详细图文部署教程开启，速度参与！

By [321X123.ETH](https://paragraph.com/@321x123) · 2022-11-12

---

去中心化云存储，这不是第一个项目，也不会是最后一个。

目前，像去中心化云存储的价格都不高，闹不闹自己决定，有闲置的服务器可以折腾下。

Deweb是基于Cosmos的可靠、可扩展、安全和分散的云计算服务。在一个cosmos黑客松中获过奖。目前的测试网**不是明牌激励测试网，但可能有奖励**。

**本教程仅供参考，请以官方教程为准。**

[https://github.com/deweb-services/deweb](https://github.com/deweb-services/deweb)

最低配置 2 CPU

4 GB RAM （官方教程写的要求偏高，实际8GB+即可）

80GB SSD

服务器：

ubuntu 20.04

安装配置环境。

特么的，折腾了半天后，才在官网发现一个一键安装神器！

乖乖呀，兄弟姐妹们做事情一定要认真呀，不然累死牛呀！

**NodeJumper：****https://nodejumper.io/dws-testnet/installation****(复制粘贴）**

![](https://storage.googleapis.com/papyrus_images/b1586c794a319afa0794ee2e5aa5e64fbb2c04d79625de00018b75e4aaada192.png)

一键自动安装节点：

    source <(curl -s https://raw.githubusercontent.com/nodejumper-org/cosmos-scripts/master/dws/deweb-testnet-sirius/install.sh)
    

下面内容可以不看了，复制链接去看官方网出的吧！

1:先安装screen，来保证终端推出后后台节点程序运行正常

    apt install screen
    
    再安装git
    
    apt install git
    
    接下来按照官方github的教程即可。
    
    （1）：sudo apt-get install build-essential jq
     
    （2）：sudo rm -rf /usr/local/go
    
    下载golang
    
    （3）：curl https://dl.google.com/go/go1.19.linux-amd64.tar.gz | sudo tar -C/usr/local -zxvf -
    
    （4）：
    
    cat <<'EOF' >>$HOME/.profile
    export GOROOT=/usr/local/go
    export GOPATH=$HOME/go
    export GO111MODULE=on
    export GOBIN=$HOME/go/bin
    export PATH=$PATH:/usr/local/go/bin:$GOBIN
    EOF
    source $HOME/.profile
    
    
    配置好环境后，查看一下go版本，如下图：
    
    （5）：go version
    

![](https://storage.googleapis.com/papyrus_images/1c39823f370bc01e1630097d91f1203572fb7dc5669904baff9caee308079df4.png)

2:克隆编译dewebd源代码

    git clone https://github.com/deweb-services/deweb.git
    cd deweb
    git checkout v0.3.1
    make build   #it build the binary in build/ folder
    

![编译有点慢](https://storage.googleapis.com/papyrus_images/11afc5e8c71ab4ed5b8fcc8ec6bb58c290be17da4ddba9aaf0b5425624d546c7.png)

编译有点慢

查看DEWEB的版本

    build/dewebd version
    

![](https://storage.googleapis.com/papyrus_images/231ff17259c0b7c8028e4f93add4967d5289cd5096ffa505a726a464cdaa84dc.png)

编译源代码：

    make install
    

![](https://storage.googleapis.com/papyrus_images/15a46165f3ac889922110af0ea58d31e6214621e4b5422eb50aaba3da6c13a44.png)

---

*Originally published on [321X123.ETH](https://paragraph.com/@321x123/decentralized-webservices-deweb)*
