Post
Topic
Board Bitcoin Technical Support
Re: Bitcoin Full node and LN into RPi 3
by
osoverflow
on 10/05/2019, 16:02:01 UTC
Did you add enough swap space? this can cause the RPI to crash.

To add a 1gb swap file, in /swapfile:

Code:
sudo dd if=/dev/zero of=/swapfile bs=1024M count=1000
sudo mkswap /swapfile
sudo swapon /swapfile



Good catch! I will create it. I also read about enabling zram, to compress ram, but my linux version (Libre Elec) has no support for that.