Bitcoin source code: https://github.com/bitcoin/bitcoin
Component | Model |
---|---|
Motherboard | Gigabyte B450M DS3H |
RAM | Corsair Vengeance LPX 16GB |
CPU | AMD Ryzen 3 1200 |
CPU Cooler | *Fan came with CPU |
Power Supply | ARESGAME 500W Power Supply |
GPU | AMD Radeon 6600 XT |
Storage | WD Black Series 500 GB HDD |
I purchased these components on Amazon or BestBuy & used the following site to help pick each of them out! https://pcpartpicker.com/
Ubuntu 20.04
- On a separate PC, download Ubuntu https://ubuntu.com/download/desktop
- Download Rufus https://rufus.ie/en/
- Insert a USB storage device and use Rufus to turn it into an Ubuntu bootable
- Plug the USB into your new PC and turn it on
- Select Ubuntu
- You can choose to try it first or install it - eventually you want to install it
- When you install Ubuntu, you’ll want to select Minimal Installation and uncheck the boxes for updates & third-party software
sudo apt update
sudo apt-get update
sudo apt install -y git
sudo apt-get install -y build-essential libtool autotools-dev automake pkg-config bsdmainutils python3
sudo apt-get install -y libevent-dev libboost-dev libboost-system-dev libboost-filesystem-dev libboost-test-dev
sudo apt install -y libsqlite3-dev
sudo apt install -y libminiupnpc-dev libnatpmp-dev
sudo apt-get install -y libzmq3-dev
sudo apt install -y systemtap-sdt-dev
sudo apt-get install -y libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools
sudo apt install -y qtwayland5
git clone https://github.com/bitcoin/bitcoin.git
cd bitcoin
sudo bash autogen.sh
sudo ./configure
cd src
sudo make install