Install Chia Blockchain on Ubuntu

Posted on May 4, 2021

Chia is a new kinda of Crypto Currency that instead of using PoW (Proof of Work) it uses Proof of Space and Time which ends up using hard drive space to “mine” farm.

Install Chia Blockchain

You can copy and paste all of these commands in a terminal.

sudo apt update -y
sudo apt upgrade -y
sudo apt install -y git
git clone https://github.com/Chia-Network/chia-blockchain.git -b latest --recurse-submodules cd chia-blockchain
sh install.sh
. ./activate
chia init

The . ./activate command is needed to be able to run the chia commands. I believe it sources into the current shell so the commands work correctly.

Install Chia Blockchain Gui

After you have run the above commands, do the following to install the Chia Gui

chmod +x ./install-gui.sh
./install-gui.sh
cd chia-blockchain-gui
npm run electron &

Launching Gui after it is installed

In the future for launching the Gui you should be able to copy and paste the following commands in.

cd chia-blockchain 
. ./activate
cd chia-blockchain-gui
npm run electron &

You can also put all of the above commands into a bash shell script and then just run the script instead of having to run the commands all over again every time you want to launch the gui.

This entry was posted in ChiaCrypto Currency and tagged chiachia-blockchaincryptoinstall by admin. Bookmark the permalink.

Leave a Reply

You must be logged in to post a comment.

最新文章

  1. OpenGL角轴
  2. PostgreSQL 在centos 7下的安装配置
  3. POJ 3450 后缀数组/KMP
  4. What Controls are new for windows phone 8.1
  5. 1-1 Java简介
  6. HDU 5024 Wang Xifeng's Little Plot(枚举)
  7. spark stream初探
  8. Linux下安装McAfee防病毒软件(企业版本)
  9. HDU 5777 domino
  10. gitlab 操作指南
  11. fatal error: Eigen3/Core: 没有那个文件或目录
  12. Windows Server 2012 R2 英文版安装中文语言包教程
  13. MySQL报错ERROR 1558 (HY000): Column count of mysql.user is wrong.
  14. java线程池如何合理的设置大小
  15. C#.NET常见问题(FAQ)-如何判断某个字符是否为汉字
  16. 如何防御mimikatz致敬Mimikatz攻防杂谈学习笔记
  17. win7控制面板一打开就停止的解决方法
  18. linux普通用户被内存被限制的问题
  19. java语言基本环境搭建
  20. selenium alert JS弹窗问题处理

热门文章

  1. golang拾遗:实现一个不可复制类型
  2. vue2安装sass 预编译
  3. C#后缀表达式解析计算字符串公式
  4. JZOJ 4253.QYQ在艾泽拉斯
  5. CenterOS7上搭建RabbitMQ集群
  6. 与时俱进的治疗策略不断提高RA无药缓解机会[EULAR2015_SAT0058]
  7. Json.stringfiy json未定义
  8. Vue 禁止按钮多次点击 重复提交数据(指令实现)
  9. golang输出字母a-z
  10. 麒麟v10系统安Influxdb2.0教程