aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2016-10-29 11:35:17 +0200
committerRiccardo Spagni <ric@spagni.net>2016-10-29 11:35:17 +0200
commit1710a7dbc27577cfb58ee29c62fbac4607a4cf14 (patch)
tree5f1bed4f9b544b6f656fef2036132c412f67d192 /README.md
parentMerge pull request #1268 (diff)
parentAdd instructions to README.md for building on the Raspberry Pi 2 (diff)
downloadmonero-1710a7dbc27577cfb58ee29c62fbac4607a4cf14.tar.xz
Merge pull request #1269
145d0b7 Add instructions to README.md for building on the Raspberry Pi 2 (NanoAkron)
Diffstat (limited to 'README.md')
-rw-r--r--README.md50
1 files changed, 49 insertions, 1 deletions
diff --git a/README.md b/README.md
index abba6385a..61f7da79d 100644
--- a/README.md
+++ b/README.md
@@ -145,7 +145,11 @@ invokes cmake commands as needed.
this to be worthwhile, the machine should have one core and about 2GB of RAM
available per thread.
-* The resulting executables can be found in `build/release/bin`.
+* The resulting executables can be found in `build/release/bin`
+
+* Add `PATH="$PATH:$HOME/monero/build/release/bin"` to `.profile`
+
+* Run Monero with `monerod --detach`
* **Optional**: build and run the test suite to verify the binaries:
@@ -165,6 +169,50 @@ invokes cmake commands as needed.
HAVE_DOT=YES doxygen Doxyfile
+#### On the Raspberry Pi
+
+Tested on a Raspberry Pi 2 with a clean install of minimal Debian Jessie from https://www.raspberrypi.org/downloads/raspbian/
+
+* `apt-get update` and `apt-get upgrade` to install all of the latest software
+
+* Install the dependencies for Monero except libunwind and libboost-all-dev
+
+* Increase the system swap size
+
+ sudo /etc/init.d/dphys-swapfile stop
+ sudo nano /etc/dphys-swapfile
+ CONF_SWAPSIZE=1024
+ sudo /etc/init.d/dphys-swapfile start
+
+* Install the latest version of boost (this may first require invoking `apt-get remove --purge libboost*` to remove a previous version if you're not using a clean install)
+
+ cd
+ wget https://sourceforge.net/projects/boost/files/boost/1.62.0/boost_1_62_0.tar.bz2
+ tar xvfo boost_1_62_0.tar.bz2
+ cd boost_1_62_0
+ ./bootstrap.sh
+ sudo ./b2
+
+* Wait ~8 hours
+
+ sudo ./bjam install
+
+* Wait ~4 hours
+
+* Change to the root of the source code directory and build:
+
+ cd monero
+ make release
+
+* Wait ~4 hours
+
+* The resulting executables can be found in `build/release/bin`
+
+* Add `PATH="$PATH:$HOME/monero/build/release/bin"` to `.profile`
+
+* Run Monero with `monerod --detach`
+
+* You may wish to reduce the size of the swap file after the build has finished, and delete the boost directory from your home directory
#### On Windows: