NODE GUIDE (amd64)

SELECT ARCHITECTURE:

Page Links (you can just click them!):


  • SSH





  • LND











  • !!!!!!!INFORMATION!!!!!!!

  • BLUE LINES (COMMENTS) ARE ABOUT THE COMMAND/STEP BELOW IT!


  • exit full screen and resize window to about half of the screen, it's easier to read


    DOWNLOAD TEXT FILE AT (right click » download link):
    click » jautobolt.janonimo.com/ja «


    ---------------

    IN THIS GUIDE YOU WILL MOSTLY COPY PASTE whatever is below numbers 1. , 2. etc... until the end of the guide. download the text file so you can copy paste the necessary things and continue easily, also when I mention write down I mean on a piece of paper! dont write seeds and passwords into a:

    computer or any device which might have internet connection. Thanks.


    -------------

    I STRONGLY recomend making a tails USB with Persistent memory to interact with node via ssh and above all it will also be useful for your sparrow wallet!!!!!!!!!!!!!!!!! best way to safely interact with a SPARROW WALLET

    click » https://tails.net/ « REFER TO REC. INFO tab/page


    Incase you didn't follow the advice and prefer to use windows, use Bitvise SSH at your windows pc

    click » https://www.bitvise.com/ «

    ---------------


    However first things first, you will need to flash debian into a usb to install into your future node: I HOPE THIS STEP IS ALREADY DONE if not  go to:

    click » https://www.debian.org/distrib/netinst « REFER TO REC. INFO tab/page

    click on your hardware architecture "amd64" as an example

    then using linux you can simply use dd command to flash the image to a usb

    using windows you will need a tool like balena etcher

    click » https://etcher.balena.io/ «

    as soon as you install and login to the node you can either keep using screen and keyboard or you can quickly setup ssh so you can use your computer to interact and install the node (EXTREMELY RECOMENDED).

    ---------------


    #### START OF NODE GUIDE ####


     ##### SSH #### (RECOMMENDED)

  • !!! YOU CAN TRIPLE CLICK ANY WHITE LINE WITH MOUSE TO SELECT ENTIRE LINE !! or use "copy" button | commands 0. are mostly done using your own computer.

  • COMMENT FOR COMMAND BELOW: in the command below you can change key file name "mainkey" after /.ssh/" " and key comment "main" to whatever you like. if using linux you can just type or copy paste:
  • 0.1 (FOLLOW COMMANDS IN ORDER THEY WILL BE WHITE WITH NUMBER BEFORE) (command below in your computer)
  • ssh-keygen -t ed25519 -f ~/.ssh/mainkey -C "main"
  • *if using tails remember to take both key and pub files from /home/amnesia/.ssh to your Persistent storage and remember to copy them back to your /home/amnesia/.ssh everytime you enter tails OS.

  • Now "cat" public key, replace "mainkey" with the name given above, in case you changed it, in the command below
  • 0.2
  • cat ~/.ssh/mainkey.pub
  • *in step 0.4 if necessary only!! type the output of (mainkey.pub) into authorized_keys using:
    nano /home/admin/.ssh/autorized_keys

  • type on your node and look for eth0: and 19x.xxx.x.xx THIS IS YOUR NODE LOCAL IP: both commands below work, the second prints your local ip precisely
  • 0.3
  • ip a
  • ip addr | grep 'state UP' -A2 | tail -n1 | awk '{print $2}'| cut -f1 -d'/'
  • DO STEP 1.0 by typing into your node command 1.0 then do the following on your computer and type: yes , enter , and type in your node admin password chosen at step/command 1.0
    *REPLACE xxx.xxx.x.xx WITH YOUR IP GOTTEN ABOVE on your computer. copy ssh pub into your node using ssh command or putty/bitvise or manually using nano: to /home/admin/.ssh/authorized_keys
  • 0.4
  • ssh-copy-id -i ~/.ssh/mainkey.pub admin@xxx.xxx.x.xx
  • On your computer use the following command replace xxx.xxx.x.xx with your node local IP to ssh into your node
  • 0.5
  • ssh admin@xxx.xxx.x.xx
  • ## THE REAL THING STARTS HERE ##

    ALWAYS COPY PASTE COMMANDS INTO YOUR NODE BY USING SSH TERMINAL WINDOW ON YOUR OWN MACHINE/COMPUTER
    remember to do from time to time (like every month) with admin user:
    sudo apt update && sudo apt upgrade


  • *input your admin password, and write it down, we will disable root for security purposes so when prompted for password make it a strong one.
  • 1.0 skip if already done (should be)
  • apt update && apt install sudo && adduser --system --shell /bin/bash --group --home /home/admin admin && usermod -aG sudo admin && passwd admin && su admin

  • 2.0
  • chmod 700 /home/admin/.ssh && chmod 600 /home/admin/.ssh/authorized_keys

  • ALWAYS LOGIN OR SSH AS admin INTO NODE !!!!!

    ## SYSTEM & BITCOIN ##

  • 3.0
  • cd && wget -r -nd -l1 --no-parent --reject "index.html*,arm64*" https://scripts.janonimo.com/

  • 3.1 enter root user, you will be prompted for admin password
  • sudo su

  • 3.2 as root user install gnu pgp
  • apt install -y gnupg

  • 3.3 as root user
  • wget -qO- https://deb.torproject.org/torproject.org/A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89.asc | gpg --dearmor | tee /usr/share/keyrings/tor-archive-keyring.gpg >/dev/null

  • 3.4 exit root user to admin user
  • exit
  • you will probably get a prompt saying service might be disrupted type yes and press enter
  • 4.0
  • cd && sudo chmod +x system.sh && ./system.sh
  • now confirm you are at bitcoin user check terminal to see it says bitcoin@hostname and write down user and pass after command (hostname is name given during install):
  • 5.0
  • cd && ./bitcoin2.sh && exit
  • type and enter as admin user which should be the one you are at now admin@nodename/host:
  • 6.0
  • sudo systemctl enable bitcoind.service
  • NODE WILL RESTART - reconect ssh: ssh admin@xxx.xxx.x.xx / or admin@hostname using your own machine/computer terminal
  • 7.0
  • sudo reboot
  • make sure you see these two lines after the next command
  • tcp LISTEN 0 4096 127.0.0.1:9050 0.0.0.0:* users:(("tor",pid=343,fd=6))
  • tcp LISTEN 0 4096 127.0.0.1:9051 0.0.0.0:* users:(("tor",pid=343,fd=7))
  • 8.0
  • sudo ss -tulpn | grep tor | grep LISTEN
  • USE CTRL+C to exit from the log!!!!!!!!!!
  • check bitcoin is running if you see no errors you can start using the next command to check if bitcoin is synced which you will need to wait for before doing step 11. and 11.1
  • 9.0
  • sudo tail -f /home/bitcoin/.bitcoin/debug.log
  • only proceed with fulcrum step 11. 11.1 11.2 11.3 after !!!!! look for "verificationprocess":0.99 (command 9.1 or command 9.0) <<<<<<<<<<<<<<<<<<<<<<<<<
  • 9.1
  • bitcoin-cli getblockchaininfo
  • ONLY AFTER BITCOIN IS FULLY SYNCED DO!!! (ONE LINE AT A TIME!!!!!) 9.2, 9.3 and 9.4 HOWEVER you may proceed to step 10. then step 12.
  • 9.2
  • sudo sed -i 's/^dbcache.*/#dbcache=2000/' /data/bitcoin/bitcoin.conf
  • 9.3
  • sudo sed -i 's/blocksonly=1/#blocksonly=1/' /data/bitcoin/bitcoin.conf
  • 9.4
  • sudo systemctl restart bitcoind


  • #### FULCRUM ####

    !!!!!!!!!!! PAY ATTENTION BELOW at step 11.!!!!!!!
  • !!!!!!!!!ONLY DO STEP 11. and 11.1 ,11.2 and 11.3 AFTER BITCOIN IS SYNCED!!!!!!!!!!!!!!
  • 10.
  • cd && ./fulcrum.sh
  • Get your fulcrum SSL tor address so you can input it into sparrow wallet and Sparrow server. (Rec. Info for instructions)
  • 10.1
  • sudo cat /var/lib/tor/hidden_service_fulcrum_ssl/hostname
  • (SKIP) if sparrow wallet gives you parse cert error do this command at fulcrum user. use (sudo su fulcrum) at admin user to log into fulcrum user then do 10.2.
  • 10.2
  • cd /data/fulcrum && openssl req -newkey rsa:2048 -new -nodes -x509 -days 3650 -keyout key.pem -out cert.pem
  • ONLY DO these 4 commands 10.3 if RAM memory is below 8gb
  • 10.3
  • sudo sed -i 's/#db_max_open_files = 200/db_max_open_files = 200/' /data/fulcrum/fulcrum.conf

  • sudo sed -i 's/#fast-sync = 1024/fast-sync = 1024/' /data/fulcrum/fulcrum.conf

  • sudo sed -i 's/db_max_open_files = 400/#db_max_open_files = 400/' /data/fulcrum/fulcrum.conf

  • sudo sed -i 's/fast-sync = 2048/#fast-sync = 2048/' /data/fulcrum/fulcrum.conf

  • AGAIN SKIP NEXT 4 COMMMANDS (WHITE LINES EXCLUDING NUMBERS) UNTIL AFTER BITCOIN IS SYNCED!!!!!
  • 11.
  • sudo systemctl enable fulcrum.service
  • 11.1
  • sudo systemctl start fulcrum.service
  • 11.2
  • sudo systemctl status fulcrum
  • USE CRTL+C to exit debug log.!!!!!!
  • 11.3
  • sudo journalctl -f -u fulcrum
  • ---!!!! PAY ATTENTION ABOVE !!!!---

    ##### MEMPOOL #####


  • 12.
  • sudo su mempool
  • !!!!!!!!!!!!now copy the last line using cursor/mouse and right click copy make sure mouse is on top of text to copy!!!!!!!!!!!!!!!!!!!!!!!! something like 6kx1aHmacFa7n00W+CxMgA== some SSH copy whatever you select with mouse inside window
  • 13.
  • cd && ./mempool.sh


  • I HOPE YOU DOWLOANDED THE TEXT FILE AT THE START OF GUIDE PASTE THE CODE INTO IT OR INTO A TEXT FILE IT'S "NEEDED" TO UPGRADE MEMPOOL AND AT COMMAND 16. and 20.
  • 13.1
  • exit
  • you should now be at admin@hostname
  • 14.
  • sudo mysql
  • 15.
  • create database mempool;
  • in the below command put the password you got above and replace Password[M] with it copy and paste and press enter:
  • 16.
  • grant all privileges on mempool.* to 'mempool'@'localhost' identified by 'Password[M]';
  • 17.
  • exit
  • 18.
  • sudo su mempool
  • 19.
  • cd && ./mempool2.sh
  • now replace >password< between # # after WEGOTTHIS# with password from step 16 (same as step 13):
  • EXAMPLE: sed -i 's#WEGOTTHIS#LnejAjUqgjV\/Hlw3MS+jKw==#' /home/mempool/mempool/backend/mempool-config.json
  • as i did in the example above IF THE PASSWORD ITSELF CONTAINS A >> / << put a >> \ << behind it!!!!!!!!!!!!!!! (notice after V)
  • 20.
  • sed -i 's#WEGOTTHIS#LnejAjUqgjV\/Hlw3MS+jKw==#' /home/mempool/mempool/backend/mempool-config.json
  • Now change YOURUSERNAME to your Bitcoin user from 5.0
  • 20.1
  • sed -i 's/BTCUSER/YOURUSERNAME/' /home/mempool/mempool/backend/mempool-config.json
  • Now change PASSWORDYOUR to your Bitcoin password from 5.0
  • 20.2
  • sed -i 's/BTCPASS/PASSWORDYOUR/' /home/mempool/mempool/backend/mempool-config.json
  • clear bash history (when you click up arrow is bash history)
  • 20.3
  • history -c && history -w
  • 21.
  • exit
  • 22.
  • cd && ./mempool3.sh
  • incase it doesnt show tor address, input this command, if it does, ignore this command, if it does show tor address save it in a file or in the downloaded text file "JautoBolt"
  • 22.1
  • sudo cat /var/lib/tor/hidden_service_mempool/hostname
  • * copy the last line into a text file and save it this is how
    you access your mempool over tor browser also accesible over https://:localnodeip:4081
    (this below is a tor address)
    mte3okz3nujka6adlpaq5avncsjid.onion 
    (use tor browser to access it outside local network.)



  • check mempool is running well | again use CRTL+C to exit debug.log
  • 23.
  • sudo journalctl -f -u mempool


  •          ####### LND #########


  • Make sure you are at admin@hostname
  • 24.
  • cd && ./lnd.sh
  • change TYPEaliasHERE to your desired lightning node name
  • 26.
  • sudo sed -i 's/alias=YOUR_FANCY_ALIAS/alias= TYPEhereALIAS/' /data/lnd/lnd.conf && sudo chown lnd:lnd /data/lnd/lnd.conf
  • clear bash history (when you click up arrow is bash history)
  • 26.1
  • history -c && history -w
  • 27.
  • sudo reboot


  • reconect ssh using admin@xxx.xxx.x.xx


  • !!!!!type a strong password (for wallet) and write it down (on paper) this is required to unlock LND WALLET!!!!!!!!!! read step 29. !!! before doing step 28.
  • 28.
  • lncli create


  • 29 (follow-up of 28. (NOT A COMMAND))
  • choose if you want to add a passphrase for the seed (passphrase is not password!) if not, press enter and write down the seed CAREFULLY!!(along with the passphrase if you added one) you need seed or both to restore LND WALLET along with passphrase if you chose one WRITE it ON PAPER AND NEVER EXPOSE IT!!!!!!!!!!!!!!!!!!!!!!!
  • 31.
  • sudo chmod -R g+X /data/lnd/data/ && sudo chmod g+r /data/lnd/data/chain/bitcoin /mainnet/admin.macaroon
  • this is the address you fund to then open a channel (its an onchain address)
  • 32.
  • lncli newaddress p2wkh


  • --------------------skip----------
    add watchtower AFTER OPENING A CHANNEL ONLY
    refer to this later
    *33.
    lncli wtclient add 023bad3(lnd pubkey)633c 4bde602b60bf@iiu4gfwgtr(onion addr)ll66qd.onion:9911 (port)

    check watchtowers added
    *34.
    lncli wtclient towers
    ----------------------------------------


  • check LND debug.log (USE CTRL+C to exit log)
  • 35.
  • sudo journalctl -f -u lnd


  • YOU SHOULD GET A CHANNEL BACKUP, SET UP,
    I ADVISE MOUNTING A USB AND BACKING UP
    TO IT. CHECK LINK BELOW
  • https://raspibolt.org/guide/lightning/channel-backup.html


  • INFORMATION I ADVISE ZEUS WALLET TO CONNECT TO YOUR NODE VIA MOBILE PHONE (OPTIONAL) https://raspibolt.org/guide/lightning/mobile-app.html

  • you can use lnurl script which we will, copy your tor lnd rest address to text file after command Z1. or use LNU1.1
  • Z1.
  • cd && ./lnurl.sh
  • GET LND REST ADDRESS with the below command
  • Z1.1
  • sudo cat /var/lib/tor/hidden_service_lnd_rest/hostname
  • Z2.
  • cd /tmp && wget https://github.com/LN-Zap/lndconnect/releases/download/v0.2.0/ lndconnect-linux-amd64-v0.2.0.tar.gz
  • Z3.
  • tar -xvf lndconnect-linux-amd64-v0.2.0.tar.gz && sudo install -m 0755 -o root -g root -t /usr/local/bin lndconnect-linux-amd64-v0.2.0/lndconnect && cd

  • replace abcde...xyz.onion with lnd rest onion address, given at command Z1. or LNU1.1
  • Z4.
  • lndconnect --host=abcdefg.........xyz.onion --port=8080


  • click CTRL + - (minus) to zoom out the big qr code so you can scan it with zeus wallet (using phone)
  • Z5. (not a command)
  • scan the QR code using zeus wallet (using phone) and set alias


  •               ###### THUNDERHUB ####
  • as admin@hostname
  • 36.
  • cd && ./thunderhub.sh
  • 37.
  • cd && ./thunderhub2.sh
  • choose a MASTER PASSWORD by replacing masterpassword any account made without a password will have this pass
  • EXAMPLE: sed -i 's/PASSWORD/passyhere/' /home/thunderhub/thunderhub/thubConfig.yaml
  • 38.
  • sed -i 's/PASSWORD/masterpassword/' /home/thunderhub/thunderhub/thubConfig.yaml
  • choose an account name by replacing username (used to log in)
  • EXAMPLE: sed -i 's/RaspiBolt/MYUSER/' /home/thunderhub/thunderhub/thubConfig.yaml
  • 39.
  • sed -i 's/RaspiBolt/username/' /home/thunderhub/thunderhub/thubConfig.yaml
  • choose an account password by replacing acpass
  • EXAMPLE: sed -i 's/accountpassword/MYPASSWORD/' /home/thunderhub/thunderhub/thubConfig.yaml
  • 40.
  • sed -i 's/accountpassword/acpass/' /home/thunderhub/thunderhub/thubConfig.yaml
  • give it some time after executing the command below 41.!!!! look for "Backup subscription" before exiting with CTRL+C TO EXIT LOG
  • 41.
  • cd /home/thunderhub/thunderhub/ && npm run start:prod
  • 41.1 clear bash history (when you click up arrow is bash history)
  • history -c && history -w

  • 41.2
  • exit
  • as admin@hostname
  • 41.3
  • sudo systemctl start thunderhub

  • give it some seconds to access it

    login using your https://ip:4002 (can be found using ip a)
    and login using credentials you added above

    if you cant access it make sure your lnd wallet is unlocked using:
    lncli unlock

    if it still is not working do!!! the following command:
  • sudo systemctl restart thunderhub

  • congratulations you have reached the end of this guide!

    to check debug.log of thunderhub use:
  • sudo journalctl -f -u thunderhub

  • ###### FINISH LINE #######
    CONGRATULATIONS YOU SELF-SOVEREIGN BITCOINER

    IMPORTANT COMMANDS:


    Bitcoin:
  • (DEBUG LOG)
  • sudo tail -f /home/bitcoin/.bitcoin/debug.log
  • (SERVICE DEBUG LOG)
  • systemctl status bitcoind
  • (DISABLE AUTOSTART)
  • sudo systemctl disable bitcoind.service
  • (ENABLE AUTOSTART)
  • sudo systemctl enable bitcoind.service
  • (RESTART BITCOIN)
  • sudo systemctl restart bitcoind
  • (STOP BITCOIN)
  • sudo systemctl stop bitcoind
  • (START BITCOIN)
  • sudo systemctl start bitcoind
  • (GET BLOCKCHAIN INFO)
  • bitcoin-cli getblockchaininfo


  • Fulcrum:


  • (GET FULCRUM ADDRESS FOR SPARROW or other WALLET)
  • sudo cat /var/lib/tor/hidden_service_fulcrum_ssl/hostname
  • (DEBUG LOG)
  • sudo journalctl -f -u fulcrum
  • (SERVICE DEBUG LOG)
  • systemctl status fulcrum
  • (DISABLE AUTOSTART)
  • sudo systemctl disable fulcrum.service
  • (ENABLE AUTOSTART)
  • sudo systemctl enable fulcrum.service
  • (RESTART FULCRUM)
  • sudo systemctl restart fulcrum
  • (STOP FULCRUM)
  • sudo systemctl stop fulcrum
  • (START FULCRUM)
  • sudo systemctl start fulcrum


  • Mempool: https://ip:4081 to enter it locally | or use tor onion address to access it over tor browser externally


  • (DEBUG LOG)
  • sudo journalctl -f -u mempool
  • (SERVICE DEBUG LOG)
  • systemctl status mempool
  • (DISABLE AUTOSTART)
  • sudo systemctl disable mempool.service
  • (ENABLE AUTOSTART)
  • sudo systemctl enable mempool.service
  • (RESTART MEMPOOL)
  • sudo systemctl restart mempool
  • (STOP MEMPOOL)
  • sudo systemctl stop mempool
  • (START MEMPOOL)
  • sudo systemctl start mempool


  • LND: (lightning node)


  • (DEBUG LOG)
  • sudo journalctl -f -u lnd
  • (SERVICE DEBUG LOG)
  • systemctl status lnd
  • (DISABLE AUTOSTART)
  • sudo systemctl disable lnd
  • (ENABLE AUTOSTART)
  • sudo systemctl enable lnd
  • (RESTART LND)
  • sudo systemctl restart lnd
  • (STOP LND)
  • sudo systemctl stop lnd
  • (START LND)
  • sudo systemctl start lnd
  • (UNLOCK LND (WALLET))
  • lncli unlock
  • (CREATE WALLET)
  • lnclicreate
  • (GET NEW ADDRESS onchain)
  • lncli newaddress p2wkh
  • (GET onchain WALLET BALANCE)
  • lncli walletbalance
  • (GET CHANNELS BALANCES)
  • lncli channelbalance


  • Thunderhub: https://ip:4002 to enter it locally | or use tor onion address to access it over tor browser externally (NOT RECOMMENDED)


  • (DEBUG LOG)
  • sudo journalctl -f -u thunderhub
  • (SERVICE DEBUG LOG)
  • systemctl status thunderhub
  • (DISABLE AUTOSTART)
  • sudo systemctl disable thunderhub.service
  • (ENABLE AUTOSTART)
  • sudo systemctl enable thunderhub.service
  • (RESTART THUNDERHUB)
  • sudo systemctl restart thunderhub
  • (STOP THUNDERHUB)
  • sudo systemctl stop thunderhub
  • (START THUNDERHUB)
  • sudo systemctl start thunderhub


  • #######EXTRAS########


    ------------GET AN LNURL ADDRESS-------------

  • as admin user enter the following command (admin@hostname):
  • LNU1.
  • cd && ./lnurl.sh

  • copy your lnd tor rest address here on the text file or
    your own textfile:
    wjrk5hh7bpyqkkcfjhxmkfaid.onion
    incase it didint print or you need it again type:

  • LNU1.1
  • sudo cat /var/lib/tor/hidden_service_lnd_rest/hostname
  • LNU2. (unlock lnd in case it isn't already)
  • lncli unlock
  • LNU3. (NOT A COMMAND) login to thunderhub and in the left menu click TOOLS in BAKERY click BAKE and switch only GET INVOICES to YES and BAKE NEW MACAROON click COPY the BASE 64 ENCODED MACAROON
  • LNU4. (NOT A COMMAND) now access the webapage:
  • janonimo.com
  • LNU5.0 (NOT A COMMAND) PICK A USERNAME and SELECT LND at "NODE BACEND TYPE" field
  • paste the the copied BASE 64 MACAROON into "Invoice Macaroon (base64 encoded)" field
  • LNU6. ADD https://:8080 to your onion address pasted at step 1. like the following example and add it to the "LND REST Host (Protocol + IP/Domain + Port)" field
  • EXAMPLE: https://wjrk5vie3uwfgaivko5uzx43kjm2yx pxtaczhh7bpyqkkcfjhxmkfaid.onion:8080
  • the test transaction will not work if you're sending from your channel to your channel so best way is to either install wallet of satoshi and send some sats to it and back using your lnurl

    LNURL EXAMPLE:
    user@janonimo.com

    congratulations you now have a LNURL address to give people to send you lightning satoshis (bitcoin)
    __END__




    ------THUNDERHUB through TOR-------


    if you want the thunderhub to be accessible through tor (NOT RECOMMENDED) do:

    1. copy and paste the the five lines below at the bottom fo the file using arrow keys to reach bottom and CTRL+X , y , enter
    sudo nano /etc/tor/torrc

    ############### This section is just for location-hidden services ###
    # Hidden Service Thunderhub
    HiddenServiceDir /var/lib/tor/hidden_service_thunderhub/
    HiddenServiceVersion 3
    HiddenServicePort 80 127.0.0.1:3010

    2.
    sudo systemctl reload tor

    do the command below and copy your tor address to access your thunderhub
    3.
    sudo cat /var/lib/tor/hidden_service_thunderhub/ hostname
    __END__



    -------SPARROW SERVER (for mixing)------

    as admin (admin@hostname):
  • 1.
  • cd && chmod +x /home/admin/sparrowserv.sh && ./sparrowserv.sh
  • 2.
  • Sparrow

  • *go to preferences > and select private electrum using keys (3rd option) enter and with arrows go to continue and press enter

    insert this data and click done | make sure to change port from 50001 to 50002 and use SSL from no to YES

    # For Fulcrum
    URL: 127.0.0.1:50002
    Use SSL?: Yes
  • 3. (not a command)

  • now select wallets and either open a wallet you have (they will become a hot wallet)
    or
    Create a wallet
    enter name for the wallet (anything will do)
    select software (bip 39)
    enter a passphrase if desired
    and
    click Generate New
    NOW MAKE SURE TO WRITE THIS SEED DOWN PROPERLY!!!!!!!!

    *******OPTIONAL BUT RECOMMENDED!!!*****
    NOW SELECT A DECENT PASSWORD FOR THE NODE which will also protect Sparrow (used to enter wallet and unlock it)
  • 3.1
  • cd /home/admin/.sparrow/wallets
  • 3.2
  • ls -la
  • now remove wallet using remove command (rm) EXAMPLE:
  • 3.3
  • rm testwallet
  • now do we will use tmux so you can open Sparrow server but be allowed to "close the window" since Sparrow to mix must be running (it will run in the background)
  • 4.
  • tmux new -s sparrow_server
  • 4.1
  • Sparrow
  • 5. (not a command)
  • Wallets > create wallet > type in your seed words written before seperated by spaces
    type in your passphrase if one was selected
    Create wallet
    type in a WALLET PASSWORD
    go to Receive and either copy your Adress or click Show qr and scan QR or take photo of it
    LOCK your wallet when you leave it mixxing or leave it!!!!!

    IMPORTANT NOW TO PROPERLY EXIT SPARROW AND LEAVE IT RUNNING!!!!
    use:
  • CTRL + b
  • d
  • now to check your tmux instances do:
  • tmux ls

  • *you should see sparrow server: 1 windows (created TUE NOV 02 HOUR) (date example)

    TO ENTER IT NOW, AND EVERYTIME YOU WANT, UNLESS YOU KILL THE PROCESS OR RESTART SYSTEM YOU DO:

    !!!!!!
  • tmux attach
  • !!!!!
    This was to exit and leave it running once again CTRL + B d


    To kill tmux and all running servers/sessions do:

    !!!!!!!!
  • tmux kill-server
  • !!!!!!!!!

    you can also use VLOCK since if you exit(as admin user typing exit) / logout from admin tmux
    will die so use VLOCK to leave your admin running but you will need to enter admin password
    to enter it making it a bit safer.

    type:
  • vlock


  • now instead of logging out simply close SSH window forcefully so everything keeps running.
    congrats!!!

    __END__

    -----------------------UPGRADE--------------------



    the following pages are the offical pages of what's installed
    https://bitcoincore.org/en/download/
    https://github.com/cculianu/Fulcrum/releases
    https://github.com/lightningnetwork/lnd/releases
    https://github.com/sparrowwallet/sparrow/releases
    https://github.com/mempool/mempool/releases
    https://github.com/apotdevin/thunderhub/releases

    ---- BITCOIN UPGRADE ----
  • CHECK INSTALLED VERSION
  • bitcoin-cli --version | grep version | cut -d ' ' -f 6
  • CHECK LATEST VERSION (ONLINE)
  • curl -sL https://github.com/bitcoin/bitcoin/releases/latest | grep "<title>Release" | cut -d ' ' -f 6

  • U1.0 BITCOIN UPGRADE
  • cd /tmp && wget -r -nd -l1 --no-parent --reject "index.html*,arm64*,upgrade*" https://scripts.janonimo.com/upgrade/bitcoin_upgrade.sh

  • U2.0
  • cd /tmp && sudo chmod +x bitcoin_upgrade.sh && ./bitcoin_upgrade.sh


  • ---- FULCRUM UPGRADE ----
  • CHECK INSTALLED VERSION
  • Fulcrum --version | grep Release | cut -d ' ' -f 2
  • CHECK LATEST VERSION (ONLINE)
  • curl -sL https://github.com/cculianu/Fulcrum/releases/latest | grep "<title>Release" | cut -d ' ' -f 5

  • U1.0 FULCRUM UPGRADE
  • cd /tmp && wget -r -nd -l1 --no-parent --reject "index.html*,arm64*,upgrade*" https://scripts.janonimo.com/upgrade/fulcrum_upgrade.sh

  • U2.0
  • cd /tmp && sudo chmod +x fulcrum_upgrade.sh && ./fulcrum_upgrade.sh


  • ---- LND UPGRADE ----
  • CHECK INSTALLED VERSION
  • lncli --version | cut -d ' ' -f 3
  • CHECK LATEST VERSION (ONLINE)
  • curl -sL https://github.com/lightningnetwork/lnd/releases/latest | grep "<title>Release" | cut -d ' ' -f 5 | cut -c2-

  • U1.0 LND UPGRADE
  • cd /tmp && wget -r -nd -l1 --no-parent --reject "index.html*,arm64*,upgrade*" https://scripts.janonimo.com/upgrade/lnd_upgrade.sh

  • U2.0
  • cd /tmp && sudo chmod +x lnd_upgrade.sh && ./lnd_upgrade.sh


  • ---- SPARROW SERVER UPGRADE ----
  • CHECK INSTALLED VERSION
  • Sparrow --version | cut -d ' ' -f 3
  • CHECK LATEST VERSION (ONLINE)
  • curl -sL https://github.com/sparrowwallet/sparrow/releases/latest | grep "<title>Release" | cut -d ' ' -f 4

  • U1.0 SPARROW SERVER UPGRADE
  • cd /tmp && wget -r -nd -l1 --no-parent --reject "index.html*,arm64*,upgrade*" https://scripts.janonimo.com/upgrade/sparrowserv_upgrade.sh

  • U2.0
  • cd /tmp && sudo chmod +x sparrowserv_upgrade.sh && ./sparrowserv_upgrade.sh


  • ---- MEMPOOL UPGRADE ----
  • CHECK INSTALLED VERSION
  • sudo cat /home/mempool/mempool/backend/package.json | grep "\"version\"" | cut -d ' ' -f 4 | cut -c2-6
  • CHECK LATEST VERSION (ONLINE)
  • curl -sL https://api.github.com/repos/mempool/mempool/releases/latest | grep tag_name | head -1 | cut -d '"' -f4 | cut -c2-

  • U1.0 MEMPOOL UPGRADE (as admin user)
  • sudo systemctl stop mempool && sudo su mempool
  • U2.0 MEMPOOL UPGRADE (as mempool user)
  • cd && wget -r -nd -l1 --no-parent --reject "index.html*,arm64*,upgrade*" https://scripts.janonimo.com/upgrade/mempool_upgrade.sh

  • U3.0
  • cd && chmod +x mempool_upgrade.sh && ./mempool_upgrade.sh
  • If you didnt save somewhere mempool DB code repeat step 14. and 16. as admin user then continue with the following
  • IF THE PASSWORD/CODE ITSELF CONTAINS A >> / << put a >> \ << behind it!!!!!!!!!!!!!!!
  • U4.0
  • sed -i 's/WEGOTTHIS/6kx1aHmacFa7n00W+CxMgA==/' /home/mempool/mempool/backend/mempool-config.json
  • Now change YOURUSERNAME to your Bitcoin user from 5.0
  • U5.0
  • sed -i 's/BTCUSER/YOURUSERNAME/' /home/mempool/mempool/backend/mempool-config.json
  • Now change PASSWORDYOUR to your Bitcoin password from 5.0
  • U6.0
  • sed -i 's/BTCPASS/PASSWORDYOUR/' /home/mempool/mempool/backend/mempool-config.json
  • clear bash history (when you click up arrow is bash history)
  • U7.0
  • history -c && history -w
  • U8.0
  • exit
  • U9.0 (as admin user)
  • sudo systemctl start mempool


  • ---- THUNDERHUB UPGRADE ----
  • CHECK INSTALLED VERSION
  • sudo cat /home/thunderhub/thunderhub/package.json | grep "\"version\"" | cut -d ' ' -f 4 | cut -c2-8
  • CHECK LATEST VERSION (ONLINE)
  • curl -sL https://github.com/apotdevin/thunderhub/releases/latest | grep "<title>Release" | cut -d ' ' -f 4 | cut -c2-

  • U1.0 THUNDERHUB AMD64 UPGRADE (as admin user)
  • sudo systemctl stop thunderhub && sudo su thunderhub

  • U2.0 (as thunderhub user)
  • cd /home/thunderhub/thunderhub && npm run update && exit

  • U3.0 (as admin user)
  • sudo systemctl start thunderhub