Skip to content

Instantly share code, notes, and snippets.

View tannerdsilva's full-sized avatar
🎯
Focusing

Tanner Silva tannerdsilva

🎯
Focusing
View GitHub Profile
@tannerdsilva
tannerdsilva / hostXMRNode.md
Last active February 18, 2024 01:05
How To Build And Host a Monero Node from Source

How to Build and Install a Monero Node on a Debian-based System

Hello. In this document, we will walk through the steps of building and hosting your own Monero node from source on a Debian-based Linux system. These systems include Raspbian, Debian (9 and above), and Ubuntu (18.04 and above). This tutorial assumes that you are capable of accessing the ROOT terminal of your Debian-based system, and are capable of getting your system online if necessary. You may plan on using an external storage device to store the blockchain, this tutorial will include the optional steps to support external storage. Alternatively, this setup procedure can also accomodate users looking to host a pruned blockchain with restricted storage space.

Here are some useful links for reaching this prerequisite if you do not currently have access to a Debian-based system that meets the recommended system requirements.

@tannerdsilva
tannerdsilva / makevm.sh
Last active March 20, 2018 02:58
Creates a VirtualBox VM with the given name and installer ISO.
#!/bin/bash
base="/path/to/vm/directory"
bridge_interface="eno2" # network interface to bridge the VM to
diskMB=50000
# a few sanity checks
if [ -z "$1" ]; then
echo "usage: makevm.sh <vm name> <path for installer ISO file>"
exit 1
fi