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 gitsudo 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-devsudo apt install -y libsqlite3-devsudo apt install -y libminiupnpc-dev libnatpmp-devsudo apt-get install -y libzmq3-devsudo apt install -y systemtap-sdt-devsudo apt-get install -y libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-toolssudo apt install -y qtwayland5git clone https://github.com/bitcoin/bitcoin.gitcd bitcoin
sudo bash autogen.sh
sudo ./configurecd src
sudo make install