From 8b23baea8ae7d9b53ac5cf5248bdb0e7874ebf97 Mon Sep 17 00:00:00 2001 From: openoms Date: Tue, 12 Feb 2019 14:57:50 +0000 Subject: [PATCH 01/14] set public_IP to local_ip if no PublicIP found on startup --- dietpi/README.md | 3 +++ home.admin/_bootstrap.sh | 8 ++++---- home.admin/assets/bootstrap.service | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/dietpi/README.md b/dietpi/README.md index ac4ac7e6b..834186e9f 100644 --- a/dietpi/README.md +++ b/dietpi/README.md @@ -158,3 +158,6 @@ Allows you to automatically execute a custom script at the end of DietPi install Option 1 = Copy your script to /boot/Automation_Custom_Script.sh and it will be executed automatically. Option 2 = Host your script online, then use AUTO_SETUP_CUSTOM_SCRIPT_EXEC=http://myweb.com/myscript.sh, it will be downloaded and executed automatically. | 0=disabled NB: Executed script log /var/tmp/dietpi/logs/dietpi-automation_custom_script.log + +### Guide to clone your SD-cards and shrink the image in linux: +https://beebom.com/how-clone-raspberry-pi-sd-card-windows-linux-macos/ \ No newline at end of file diff --git a/home.admin/_bootstrap.sh b/home.admin/_bootstrap.sh index c68a53aed..05c5e66f3 100644 --- a/home.admin/_bootstrap.sh +++ b/home.admin/_bootstrap.sh @@ -283,16 +283,16 @@ if [ ${configExists} -eq 1 ]; then source ${configFile} # update public IP on boot - # wait otherwise looking for publicIP fails - sleep 5 freshPublicIP=$(curl -s http://v4.ipv6-test.com/api/myip.php) if [ ${#freshPublicIP} -eq 0 ]; then - echo "WARNING: Was not able to determine external IP on startup." >> $logFile + echo "WARNING: Was not able to determine external IP on startup. Setting publicIP to local_ip" >> $logFile + local_ip=$(ip addr | grep 'state UP' -A2 | tail -n1 | awk '{print $2}' | cut -f1 -d'/') + sed -i "s/^publicIP=.*/publicIP=${local_ip}/g" ${configFile} else publicIPValueExists=$( sudo cat ${configFile} | grep -c 'publicIP=' ) if [ ${publicIPValueExists} -gt 1 ]; then # remove one - echo "more then one publiIp entry - removing one" >> $logFile + echo "more then one publicIp entry - removing one" >> $logFile sed -i "s/^publicIP=.*//g" ${configFile} publicIPValueExists=$( sudo cat ${configFile} | grep -c 'publicIP=' ) fi diff --git a/home.admin/assets/bootstrap.service b/home.admin/assets/bootstrap.service index c83db1fe6..11244a582 100644 --- a/home.admin/assets/bootstrap.service +++ b/home.admin/assets/bootstrap.service @@ -8,7 +8,7 @@ After=network.target [Service] User=root Group=root -Type=simple +Type=oneshot RemainAfterExit=true ExecStart=/home/admin/_bootstrap.sh StandardOutput=journal From d2c9a110e1a1e29c998f8786c740456bf3678bb3 Mon Sep 17 00:00:00 2001 From: openoms Date: Tue, 12 Feb 2019 15:22:19 +0000 Subject: [PATCH 02/14] write local IP as a placeholder if no publicIP exists --- home.admin/_bootstrap.sh | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/home.admin/_bootstrap.sh b/home.admin/_bootstrap.sh index 05c5e66f3..87eab5ba1 100644 --- a/home.admin/_bootstrap.sh +++ b/home.admin/_bootstrap.sh @@ -285,9 +285,16 @@ if [ ${configExists} -eq 1 ]; then # update public IP on boot freshPublicIP=$(curl -s http://v4.ipv6-test.com/api/myip.php) if [ ${#freshPublicIP} -eq 0 ]; then - echo "WARNING: Was not able to determine external IP on startup. Setting publicIP to local_ip" >> $logFile - local_ip=$(ip addr | grep 'state UP' -A2 | tail -n1 | awk '{print $2}' | cut -f1 -d'/') - sed -i "s/^publicIP=.*/publicIP=${local_ip}/g" ${configFile} + # prevent having no publicIP set at all and LND getting stuck + # https://github.com/rootzoll/raspiblitz/issues/312#issuecomment-462675101 + if [ ${#publicIP} -eq 0 ]; then + localIP=$(ip addr | grep 'state UP' -A2 | tail -n1 | awk '{print $2}' | cut -f1 -d'/') + echo "WARNING: No publicIP information at all - working with placeholder: ${localIP}" >> $logFile + sed -i "s/^publicIP=.*/publicIP=${local_ip}/g" ${configFile} + fi + fi + if [ ${#freshPublicIP} -eq 0 ]; then + echo "WARNING: Was not able to determine external IP on startup." >> $logFile else publicIPValueExists=$( sudo cat ${configFile} | grep -c 'publicIP=' ) if [ ${publicIPValueExists} -gt 1 ]; then From eff35f5f68984b07fcece4c01ab72b3a1be6ee55 Mon Sep 17 00:00:00 2001 From: openoms Date: Tue, 12 Feb 2019 18:44:11 +0000 Subject: [PATCH 03/14] resolve merge conflict --- home.admin/_bootstrap.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/home.admin/_bootstrap.sh b/home.admin/_bootstrap.sh index 87eab5ba1..5f66be265 100644 --- a/home.admin/_bootstrap.sh +++ b/home.admin/_bootstrap.sh @@ -245,6 +245,8 @@ if [ ${hddIsAutoMounted} -eq 0 ]; then # check if pre-sync was already activated on last power-on #presyncActive=$(systemctl status bitcoind | grep -c 'could not be found') echo "starting pre-sync in background" >> $logFile + # make sure that debug file is clean, so just pre-sync gets analysed on stop + sudo rm /mnt/hdd/bitcoin/debug.log # starting in background, because this scripts is part of systemd # so to change systemd needs to happen after delay in seperate process sudo chown -R bitcoin:bitcoin /mnt/hdd/bitcoin 2>> $logFile @@ -283,6 +285,8 @@ if [ ${configExists} -eq 1 ]; then source ${configFile} # update public IP on boot + # wait otherwise looking for publicIP fails + sleep 5 freshPublicIP=$(curl -s http://v4.ipv6-test.com/api/myip.php) if [ ${#freshPublicIP} -eq 0 ]; then # prevent having no publicIP set at all and LND getting stuck @@ -290,7 +294,7 @@ if [ ${configExists} -eq 1 ]; then if [ ${#publicIP} -eq 0 ]; then localIP=$(ip addr | grep 'state UP' -A2 | tail -n1 | awk '{print $2}' | cut -f1 -d'/') echo "WARNING: No publicIP information at all - working with placeholder: ${localIP}" >> $logFile - sed -i "s/^publicIP=.*/publicIP=${local_ip}/g" ${configFile} + freshPublicIP="${localIP}" fi fi if [ ${#freshPublicIP} -eq 0 ]; then @@ -299,7 +303,7 @@ if [ ${configExists} -eq 1 ]; then publicIPValueExists=$( sudo cat ${configFile} | grep -c 'publicIP=' ) if [ ${publicIPValueExists} -gt 1 ]; then # remove one - echo "more then one publicIp entry - removing one" >> $logFile + echo "more then one publiIp entry - removing one" >> $logFile sed -i "s/^publicIP=.*//g" ${configFile} publicIPValueExists=$( sudo cat ${configFile} | grep -c 'publicIP=' ) fi From f51985ba40ef3fc94cfd05dd7258097f6acae574 Mon Sep 17 00:00:00 2001 From: openoms Date: Sun, 17 Feb 2019 00:10:10 +0000 Subject: [PATCH 04/14] add torrent with prebuilt DietPi image for the Odroid HC1 and update dietpi readme --- dietpi/README.md | 49 +- ...spiBlitz1.0_OdroidHC1_DietPi6.21.1.torrent | 262 +++++ dietpi/logs/HC1_sdcard_build_output | 986 ------------------ dietpi/pictures/5_options_to_copy.png | Bin 38244 -> 0 bytes 4 files changed, 297 insertions(+), 1000 deletions(-) create mode 100644 dietpi/RaspiBlitz1.0_OdroidHC1_DietPi6.21.1.torrent delete mode 100644 dietpi/logs/HC1_sdcard_build_output delete mode 100644 dietpi/pictures/5_options_to_copy.png diff --git a/dietpi/README.md b/dietpi/README.md index 834186e9f..3ea4b31f1 100644 --- a/dietpi/README.md +++ b/dietpi/README.md @@ -14,7 +14,21 @@ See the hardware specs: [hardware specs](hw_comparison.md). ![](pictures/DroidBlitz.jpg) +## Download the fully prebuilt RaspiBlitz on DietPi SDcard image +for the Odroid HC1 / HC2 / XU3 / XU4 from this [torrent](/home/buidl/Documents/droidblitz/dietpi/RaspiBlitz1.0_OdroidHC1_DietPi6.21.1.torrent) + +Steps to run: +- download the .img file, +- burn to a 16 GB SD with [Etcher](https://www.balena.io/etcher/) +- extend the rootFS partition with a partition manager (disks, Gparted, etc.) +- boot the Odroid ith the SDcard and login with ssh admin@at.your.raspiblitz.ip, password: raspiblitz + +Using this image you can skip the rest of this guide as it is mostly about how this image was built. + +The setup continues with the [RaspiBlitz Setup Process](https://github.com/rootzoll/raspiblitz/blob/master/README.md#setup-process-detailed-documentation) + +--- ## Setting up the DietPi OS ### Download the updated DietPi image @@ -22,17 +36,20 @@ See the hardware specs: [hardware specs](hw_comparison.md). For the Odroid HC1 / HC2 / XU3 / XU4 a v6.20.6 DietPi image with fail2ban installed is uploaded here: https://mega.nz/#!AcdVBAbR!O-W3jP5LUgw7lMY8S9XcBWcKX3IhRNAAFmaYzDXIUC0 -Burn the SDCard with [Etcher](https://www.balena.io/etcher/) and extend the rootfs partition to the size of your card with a partition manager. +Burn to the SDCard with [Etcher](https://www.balena.io/etcher/) and extend the rootfs partition to the size of your card with a partition manager. Insert the SDcard into the Odroid. -Power up and continue with: [Run the DietPi optimized Raspiblitz SDcard build script](#Run-the-DietPi-optimized-Raspiblitz-SDcard-build-script) +Power up and continue with: [Run the DietPi optimized Raspiblitz SDcard build script](#Run-the-RaspiBlitz-build_sdcard.sh-script) ### Build your own DietPi image: -For the Odroid HC1 / HC2 / XU3 / XU4 download this image: +Watch out this an ardous process. +Updating from a v6.14 DietPi image is causing a bootloop under some circumstances. Will be sorted once the current, >6.2 version is uploaded for the Odroids. + +For the Odroid HC1 / HC2 / XU3 / XU4 the start is this image: https://dietpi.com/downloads/images/DietPi_OdroidXU4-ARMv7-Stretch.7z -and burn it to the SD with [Etcher](https://www.balena.io/etcher/) +Burn it to the SD with [Etcher](https://www.balena.io/etcher/) Getting started with DietPi: https://dietpi.com/phpbb/viewtopic.php?f=8&t=9#p9 @@ -73,12 +90,17 @@ Reboots password: `dietpi` >Ok > Cancel > Cancel -Search `fail2ban` > Space to select > Enter +Search `fail2ban` > Space to select > Enter +SSH server > switch from Dropbear to the OpenSSH-server > Install > Ok >Opt out of survey > Ok Reboots again -## Run the DietPi optimized Raspiblitz SDcard build script +Changing the SSH server will change the SSH keys again. To clear: +`ssh-keygen -f "/home/[your-linux-username]/.ssh/known_hosts" -R "dietpi.IP"` + + +## Run the RaspiBlitz build_sdcard.sh script In the desktop terminal in Linux / MacOS or Putty in Windows: @@ -87,7 +109,7 @@ password: `dietpi` Should end up here on version v6.20.6 or higher: ![](pictures/bash_prompt.png) -run the SDcard build script in this format: +run the build_sdcard.sh script in this format: `wget https://raw.githubusercontent.com/[GITHUB-USERNAME]/raspiblitz/[BRANCH]/build_sdcard.sh && sudo bash build_sdcard.sh [BRANCH] [GITHUB-USERNAME]` Be aware of that the fork needs to be called `raspiblitz` for the git download to work. @@ -95,19 +117,19 @@ if you intend to use @openoms`s forked version: `wget https://raw.githubusercontent.com/openoms/raspiblitz/raspiblitz-dev/build_sdcard.sh && sudo bash build_sdcard.sh raspiblitz-dev openoms` -See my example output on the Odorid HC1: [HC1_sdcard_build_output](logs/HC1_sdcard_build_output) `ssh admin@[IP-OF-DROIDBLITZ]` password: raspiblitz -### The setup continues as described in the RaspiBlitz setup [README.md](/README.md#documentation) +The setup continues with the [RaspiBlitz Setup Process](https://github.com/rootzoll/raspiblitz/blob/master/README.md#setup-process-detailed-documentation) +--- ### Examples of copying the blockchain data from a HDD using a powered USB to SATA adapter -![copy the blockchain from a HDD of a Raspiblitz](pictures/5_options_to_copy.png) ![example setup](pictures/HDD_copy_example.jpg) ![](pictures/adapterHDD_HC1.jpg) +--- ### Useful commands for debugging: To test a new configuration run XXcleanHDD.sh and strictly restart (this makes _bootstrap.sh and 00mainMenu.sh run in the right order) @@ -123,10 +145,9 @@ To test a new configuration run XXcleanHDD.sh and strictly restart --- -Currently the DietPi update process has a bug causing bootloop if left alone. Will be sorted once the current, >6.2 version is uploaded as the starting image. -## Excerpts from the default dietpi.txt -(https://github.com/Fourdee/DietPi/blob/master/dietpi.txt) to be used once the automatic install is feasible. +## Excerpts from the default [dietpi.txt](https://github.com/Fourdee/DietPi/blob/master/dietpi.txt) +to be used for a fully automatic SDcard building process. ### Automate installation with the dietpi.txt Need to copy to SDcard /boot/dietpi.txt after burning the image with Etcher. @@ -159,5 +180,5 @@ Option 1 = Copy your script to /boot/Automation_Custom_Script.sh and it will be Option 2 = Host your script online, then use AUTO_SETUP_CUSTOM_SCRIPT_EXEC=http://myweb.com/myscript.sh, it will be downloaded and executed automatically. | 0=disabled NB: Executed script log /var/tmp/dietpi/logs/dietpi-automation_custom_script.log -### Guide to clone your SD-cards and shrink the image in linux: +### Guide to clone your SD-cards in Windows, MacOS and Linux and shrink the image in Linux: https://beebom.com/how-clone-raspberry-pi-sd-card-windows-linux-macos/ \ No newline at end of file diff --git a/dietpi/RaspiBlitz1.0_OdroidHC1_DietPi6.21.1.torrent b/dietpi/RaspiBlitz1.0_OdroidHC1_DietPi6.21.1.torrent new file mode 100644 index 000000000..51d925ccb --- /dev/null +++ b/dietpi/RaspiBlitz1.0_OdroidHC1_DietPi6.21.1.torrent @@ -0,0 +1,262 @@ +d8:announce46:udp://public.popcorn-tracker.org:6969/announce13:announce-listll46:udp://public.popcorn-tracker.org:6969/announceel36:http://182.176.139.129:6969/announce32:http://5.79.83.193:2710/announce0:34:http://91.218.230.81:6969/announce0:el0:31:http://secure.pow7.com/announce0:32:udp://62.138.0.158:6969/announce33:http://thetracker.org:80/announce35:udp://tracker.ilibr.org:80/announce0:0:0:40:http://tracker.kicks-ass.net:80/announce0:29:udp://eddie4.nl:6969/announce0:0:39:http://tracker2.itzmx.com:6961/announce0:34:http://mgtracker.org:6969/announce0:44:http://tracker1.wasabii.com.tw:6969/announce32:http://tracker.ex.ua:80/announce36:udp://tracker.mg64.net:2710/announce38:http://retracker.krs-ix.ru:80/announce0:34:http://mgtracker.org:2710/announce32:udp://explodie.org:6969/announce0:0:0:27:http://t1.pow7.com/announce0:35:http://p4p.arenabg.ch:1337/announce39:udp://shadowshq.eddie4.nl:6969/announce39:http://www.wareztorrent.com:80/announce46:http://tracker.edoardocolombo.eu:6969/announce31:http://atrack.pow7.com/announce33:http://open.touki.ru/announce.php44:udp://tracker2.indowebster.com:6969/announce32:udp://tracker.sktorrent.net:69690:0:0:27:http://pow7.com:80/announce35:http://torrentsmd.com:8080/announce0:0:0:43:http://tracker.dutchtracking.nl:80/announce0:40:udp://tracker4.piratux.com:6969/announce44:http://tracker.dutchtracking.com:80/announce0:0:27:http://t2.pow7.com/announce0:0:33:http://bt.henbt.com:2710/announce0:38:http://tracker.bittor.pw:1337/announce0:0:37:udp://tracker.eddie4.nl:6969/announce0:0:0:36:udp://shadowshq.yi.org:6969/announceel0:36:udp://tracker.mg64.net:6969/announce34:http://mgtracker.org:2710/announce33:http://bt.henbt.com:2710/announce0:35:http://p4p.arenabg.ch:1337/announce0:0:0:0:0:33:http://open.touki.ru/announce.php33:http://thetracker.org:80/announce0:38:http://retracker.krs-ix.ru:80/announce0:0:0:0:0:40:udp://tracker4.piratux.com:6969/announce29:udp://eddie4.nl:6969/announce27:http://t1.pow7.com/announce0:0:0:44:http://tracker.dutchtracking.com:80/announce27:http://t2.pow7.com/announce0:32:http://tracker.tfile.me/announce44:udp://tracker2.indowebster.com:6969/announce39:udp://shadowshq.eddie4.nl:6969/announce0:39:http://tracker2.itzmx.com:6961/announce0:0:0:36:udp://shadowshq.yi.org:6969/announce0:0:32:udp://tracker.sktorrent.net:69690:34:http://mgtracker.org:6969/announce40:http://tracker.kicks-ass.net:80/announce27:http://pow7.com:80/announce31:http://secure.pow7.com/announce36:udp://tracker.mg64.net:2710/announce37:http://tracker.mg64.net:6881/announce31:http://atrack.pow7.com/announce0:0:37:udp://tracker.eddie4.nl:6969/announce0:32:http://tracker.ex.ua:80/announce42:udp://tracker.opentrackr.org:1337/announce0:0:38:udp://bt.xxx-tracker.com:2710/announce0:43:http://tracker.dutchtracking.nl:80/announce0:41:http://tracker.dutchtracking.com/announce39:http://www.wareztorrent.com:80/announce46:http://tracker.edoardocolombo.eu:6969/announce0:0:44:http://tracker1.wasabii.com.tw:6969/announce35:http://torrentsmd.com:8080/announce0:44:http://tracker2.wasabii.com.tw:6969/announce0:0:38:http://tracker.bittor.pw:1337/announceel43:udp://tracker.coppersurfer.tk:6969/announceel43:http://tracker.opentrackr.org:1337/announceel30:udp://zer0day.ch:1337/announceel30:udp://zer0day.to:1337/announceel33:http://explodie.org:6969/announceel49:udp://tracker.leechers-paradise.org:6969/announceel31:udp://9.rarbg.com:2710/announceel30:udp://9.rarbg.me:2780/announceel30:udp://9.rarbg.to:2730/announceel35:udp://p4p.arenabg.com:1337/announceel41:udp://tracker.sktorrent.net:6969/announceel36:http://p4p.arenabg.com:1337/announceel42:udp://tracker.aletorrenty.pl:2710/announceel43:http://tracker.aletorrenty.pl:2710/announceel37:http://tracker.bittorrent.am/announceel39:udp://tracker.kicks-ass.net:80/announceel37:http://tracker.kicks-ass.net/announceel40:http://tracker.baravik.org:6970/announceel38:udp://torrent.gresille.org:80/announceel36:http://torrent.gresille.org/announceel38:http://tracker.skyts.net:6969/announceel49:http://tracker.internetwarriors.net:1337/announceel37:udp://tracker.skyts.net:6969/announceel40:http://tracker.dutchtracking.nl/announceel40:udp://tracker.yoshi210.com:6969/announceel40:udp://tracker.tiny-vps.com:6969/announceel48:udp://tracker.internetwarriors.net:1337/announceel33:udp://mgtracker.org:2710/announceel41:http://tracker.yoshi210.com:6969/announceel41:http://tracker.tiny-vps.com:6969/announceel42:udp://tracker.filetracker.pl:8089/announceel31:udp://tracker.ex.ua:80/announceel33:udp://91.218.230.81:6969/announceel37:https://www.wareztorrent.com/announceel36:http://www.wareztorrent.com/announceel43:http://tracker.filetracker.pl:8089/announceel29:http://tracker.ex.ua/announceel41:http://tracker.calculate.ru:6969/announceel39:udp://tracker.grepler.com:6969/announceel45:udp://tracker.flashtorrents.org:6969/announceel37:udp://tracker.bittor.pw:1337/announceel49:http://tracker.tvunderground.org.ru:3218/announceel40:http://tracker.grepler.com:6969/announceel46:http://tracker.flashtorrents.org:6969/announceel38:http://retracker.gorcomnet.ru/announceel34:http://bt.pusacg.org:8080/announceel35:http://87.248.186.252:8080/announceel36:udp://tracker.kuroy.me:5944/announceel35:udp://182.176.139.129:6969/announceel37:http://tracker.kuroy.me:5944/announceel35:http://retracker.krs-ix.ru/announceel40:http://open.acgtracker.com:1096/announceel33:udp://open.stealth.si:80/announceel33:udp://208.67.16.113:8000/announceel37:http://tracker.dler.org:6969/announceel40:http://bt2.careland.com.cn:6969/announceel36:http://open.lolicon.eu:7777/announceel43:http://tracker.opentrackr.org:1337/announceel33:http://explodie.org:6969/announceel36:http://p4p.arenabg.com:1337/announceel43:http://tracker.aletorrenty.pl:2710/announceel37:http://tracker.bittorrent.am/announceel37:http://tracker.kicks-ass.net/announceel40:http://tracker.baravik.org:6970/announceel36:http://torrent.gresille.org/announceel38:http://tracker.skyts.net:6969/announceel49:http://tracker.internetwarriors.net:1337/announceel40:http://tracker.dutchtracking.nl/announceel41:http://tracker.yoshi210.com:6969/announceel41:http://tracker.tiny-vps.com:6969/announceel36:http://www.wareztorrent.com/announceel43:http://tracker.filetracker.pl:8089/announceel29:http://tracker.ex.ua/announceel41:http://tracker.calculate.ru:6969/announceel49:http://tracker.tvunderground.org.ru:3218/announceel40:http://tracker.grepler.com:6969/announceel46:http://tracker.flashtorrents.org:6969/announceel38:http://retracker.gorcomnet.ru/announceel34:http://bt.pusacg.org:8080/announceel35:http://87.248.186.252:8080/announceel37:http://tracker.kuroy.me:5944/announceel35:http://retracker.krs-ix.ru/announceel40:http://open.acgtracker.com:1096/announceel40:http://bt2.careland.com.cn:6969/announceel36:http://open.lolicon.eu:7777/announceel37:https://www.wareztorrent.com/announceel33:udp://213.163.67.56:1337/announceel34:http://213.163.67.56:1337/announceel34:udp://185.86.149.205:1337/announceel33:http://74.82.52.209:6969/announceel32:udp://94.23.183.33:6969/announceel32:udp://74.82.52.209:6969/announceel34:udp://151.80.120.114:2710/announceel35:udp://109.121.134.121:1337/announceel33:udp://168.235.67.63:6969/announceel36:http://109.121.134.121:1337/announceel32:udp://178.33.73.26:2710/announceel33:http://178.33.73.26:2710/announceel28:http://85.17.19.180/announceel30:udp://85.17.19.180:80/announceel34:http://210.244.71.25:6969/announceel28:http://85.17.19.180/announceel36:http://213.159.215.198:6970/announceel35:udp://191.101.229.236:1337/announceel30:http://178.175.143.27/announceel32:udp://89.234.156.205:80/announceel29:http://91.216.110.47/announceel34:http://114.55.113.60:6969/announceel35:http://195.123.209.37:1337/announceel33:udp://114.55.113.60:6969/announceel34:http://210.244.71.26:6969/announceel34:udp://107.150.14.110:6969/announceel31:udp://5.79.249.77:6969/announceel34:udp://195.123.209.37:1337/announceel31:udp://37.19.5.155:2710/announceel35:http://107.150.14.110:6969/announceel32:http://5.79.249.77:6969/announceel32:udp://185.5.97.139:8089/announceel33:udp://194.106.216.222:80/announceel33:udp://91.218.230.81:6969/announceel29:https://104.28.17.69/announceel28:http://104.28.16.69/announceel33:http://185.5.97.139:8089/announceel31:http://194.106.216.222/announceel34:http://80.246.243.18:6969/announceel32:http://37.19.5.139:6969/announceel31:udp://5.79.83.193:6969/announceel32:udp://46.4.109.148:6969/announceel34:udp://51.254.244.161:6969/announceel35:udp://188.165.253.109:1337/announceel33:http://91.217.91.21:3218/announceel32:http://37.19.5.155:6881/announceel33:http://46.4.109.148:6969/announceel35:http://51.254.244.161:6969/announceel32:http://104.28.1.30:8080/announceel28:http://81.200.2.231/announceel33:http://157.7.202.64:8080/announceel35:http://87.248.186.252:8080/announceel33:udp://128.199.70.66:5944/announceel35:udp://182.176.139.129:6969/announceel34:http://128.199.70.66:5944/announceel36:http://188.165.253.109:1337/announceel26:http://93.92.64.5/announceel35:http://173.254.204.71:1096/announceel32:udp://195.123.209.40:80/announceel32:udp://62.212.85.66:2710/announceel33:udp://208.67.16.113:8000/announceel35:http://125.227.35.196:6969/announceel32:http://59.36.96.77:6969/announceel30:http://87.253.152.137/announceel35:http://158.69.146.212:7777/announceel43:udp://tracker.coppersurfer.tk:6969/announceel30:udp://zer0day.ch:1337/announceel49:udp://tracker.leechers-paradise.org:6969/announceel31:udp://9.rarbg.com:2710/announceel35:udp://p4p.arenabg.com:1337/announceel41:udp://tracker.sktorrent.net:6969/announceel42:udp://tracker.aletorrenty.pl:2710/announceel39:udp://tracker.kicks-ass.net:80/announceel38:udp://torrent.gresille.org:80/announceel37:udp://tracker.skyts.net:6969/announceel40:udp://tracker.yoshi210.com:6969/announceel40:udp://tracker.tiny-vps.com:6969/announceel48:udp://tracker.internetwarriors.net:1337/announceel33:udp://mgtracker.org:2710/announceel42:udp://tracker.filetracker.pl:8089/announceel31:udp://tracker.ex.ua:80/announceel33:udp://91.218.230.81:6969/announceel39:udp://tracker.grepler.com:6969/announceel45:udp://tracker.flashtorrents.org:6969/announceel37:udp://tracker.bittor.pw:1337/announceel36:udp://tracker.kuroy.me:5944/announceel35:udp://182.176.139.129:6969/announceel33:udp://open.stealth.si:80/announceel33:udp://208.67.16.113:8000/announceel43:udp://tracker.coppersurfer.tk:6969/announceel43:http://tracker.opentrackr.org:1337/announceel30:udp://zer0day.ch:1337/announceel33:http://explodie.org:6969/announceel49:udp://tracker.leechers-paradise.org:6969/announceel31:udp://9.rarbg.com:2710/announceel35:udp://p4p.arenabg.com:1337/announceel41:udp://tracker.sktorrent.net:6969/announceel36:http://p4p.arenabg.com:1337/announceel42:udp://tracker.aletorrenty.pl:2710/announceel43:http://tracker.aletorrenty.pl:2710/announceel37:http://tracker.bittorrent.am/announceel39:udp://tracker.kicks-ass.net:80/announceel37:http://tracker.kicks-ass.net/announceel40:http://tracker.baravik.org:6970/announceel44:udp://tracker.piratepublic.com:1337/announceel33:udp://213.163.67.56:1337/announceel34:http://213.163.67.56:1337/announceel34:udp://185.86.149.205:1337/announceel33:http://74.82.52.209:6969/announceel32:udp://94.23.183.33:6969/announceel32:udp://74.82.52.209:6969/announceel34:udp://151.80.120.114:2710/announceel35:udp://109.121.134.121:1337/announceel33:udp://168.235.67.63:6969/announceel36:http://109.121.134.121:1337/announceel32:udp://178.33.73.26:2710/announceel33:http://178.33.73.26:2710/announceel28:http://85.17.19.180/announceel30:udp://85.17.19.180:80/announceel34:http://210.244.71.25:6969/announceel28:http://85.17.19.180/announceee10:created by18:qBittorrent v4.1.513:creation datei1550360894e4:infod5:filesld6:lengthi3782809088e4:pathl40:RaspiBlitz1.0_OdroidHC1_DietPi6.21.1.imgeed6:lengthi427e4:pathl10:README.txteee4:name36:RaspiBlitz1.0_OdroidHC1_DietPi6.21.112:piece lengthi1048576e6:pieces72160:dĜ[jEl=fS0:z+Q.ݝC1TPQn<O]! d[4?{JF)w@s-$AWz2494-@&E˛L;6~-8'c詝h8\ƕ\% _\w?!v1,3EZF,k#:󭝚mQȾlH1E? {ChqxԄJQגfE5k=i˛ IѬ/"HPJ=wQ#/;_^C,4EH=o_H:8H FFy*#?sQλ8pD2m \Rwxi[7I8r`j/WnG+vpq|ΟwF`miT]a6h>Pտ?M19hݛesxeyKl+Ok*ՒQ;2 ȭwy/vMRlqe ?,2ׯOT*lttB>*f;hEypNu/p"S#&_9҆FJw>qKr+N! "h;q?KͅݞN;q?KͅݞN;q?KͅݞN1]:t@2v'6%@^ߪ)l^fBvc9E{;͛oF<uÂB"Vqhv.OF +Z EhVyy4)P,OTH}%DUi 5" 5{") +gxdА%𦄰Ofdj@o6 T[b3߿g(RȰ{&J;K'JWhj;R%MZex'w8]h,D?'b@ۣtQ ԣ3[BP[A7-_ rØl~p]$6TC5v@3 +$[K'}ҩXc5(%EA)B*r".u:%,l1|I "TjzFiQ;uH٬QRd5:i[1$/v7֞qxjy G~ĐIH!!ur$x\=3i'·ar2VK{a]0A"HKy.$s=ţŗuG)sQQpΣ齰3abaE^3JSYvz"k`3\ jB'Rs Mٸ@$(^B +J|SB̔!Tӥȩ)׈f,qs uRש +x)8eG=*E/Z!(VFZ03q\ 7=TI :=,߁Z %F!u֏71Vfc]?%)hq.MӨ4x(yyVh^46ըs((3{PpΧiD}xvM&SBx'uoW λeQO#r[10'm ۸p) 2(jd4feߓ5v̵SXY"ɬtk\c@cxiO'B3Ϙ_{d +f;%#CcGc`w/6d %B?K>QzHj|dxXLؘd/'*mCkz vj8ױ(Yі_&[~\q6ВPQ>FL̍`R?I@V^RXNOhJKnܒk513$9~S8>.9y'<}^K OʨڳAF姮(@$V$ \I>PfSvS۴|]jN4RlwV&>!GlˎImp j4r(+Ce:ezX5> cR_Id,xy cGr6N+v[aqh#m9QKٸCk8q+ի0JL<>p?!_*wPE1䦒HdL0ܢiwr僎sXt:eukr}pjN'OX-k] +4LL|RgU,=D[ $"H72c+=ŷBý&#v;:B9x]ѰWYGoZ`rY?/Ϧ/]!{O{6Byz!XC##/&F6im@ Q_^R2NLX&! \~ll@u(1WÊ Oy^VΒtmb@7sl%Im[:,ʧw3 J[} g҇Z08WQ䈁D JG„ěΘ~}.8*s4)OھKa(kc0vP$>Mva"0E=D)2W`y=m;L; uyѹ/9ȓ?8DH۾Cmz{z_ƆiÜ7|tq_%Xّ~2zK ;n*BZMp/_A9ιb<^IПH,;C_HIljdJ-%zڛ_*Qub?eEz/'UQxE$NUls׾MN\c0feiɠhT>W_.'Hl( +ms8u @LaE8GƏ9k ώ7 +"&# iu_jꪆs5Y6=u`n$J)evq}&D,-7m|e5P J 0ͰW]rH9֤o]oxIZ=iDqx$ʥ羳:@ZuX0D=;&qh^MI@9\@K>=珼jYE=F y 5;yd&p)iPmvԸ- TJ@5fU-ȌVv(ɑˆ||=N23 +y`kg/&1V ?' 7J}cw+'('GW "NL&'l W)pyl0KC)-N\B-m/l1nk7&J&W?X?jF%cFbC?ɶhF@x42nY֬W YՏzW7|hqLY,BT@M[l[xF>jƉ j{޺l"q`ݤ"n ,jA9-ǂ{[9W7E p8-SYgGAkߛ =M:ʴ1(H_Dyo>#X8hRVAN ^_o|Q;Ool &@! +*G]~7S;L3+ +1pDS^Cʥt| ^t*ܑ1+-ZQ_vi g{n fbLp@1mV&U$vr?+ +o[O$)(e3{netgu=.Ϊrh ǩ r$_k܈ol-yh:70 +v=YObj^RUq(Iۀsvǀ '[BBN=Ap=WIѷi~]XL3'˓m&VWi 96KSʉ=֬QG 9g1vDþKJ-.G{FH|<.pR-e]l-J KvglS;Ȳ{lμoh)Y '{F'y +3}&*WRde-!zvX,!;3{ jZ`*P)+!_ъҥ'Cr}"06nQNB +|󠷴v}x@+(,h~ ͶQN6fs<&`[Y=EŶ7͈$Q2p-2t?lVLwJ!+wg + Z ԑʓQ}8֦%pY$؜@քմ} 1. `6첿;iN˯YNـOIަB W;?-SeV7.=~њق\lQ*3NBރ4Y]и ؁P&R͍GaT nvTu~QAkዢp?¦Sq\u.y4d޶l/1 b.xA| EL;.5.u1pJo &j^1.J'P:GzHˇ?Y{ީH8wY+:8QLů 456~`*;qH%P&S.61߭V8S=¾nqE6]c9/G س R5H6cҨ d˿1-;e4nx$?<;OiK4.!&@`5>5ӗ^`e 2w-ǒvUΫPSoj|#P-_[z&woH7fPAU':6m4Y K@e0] V/H0dr'wjU+bp\ۙgPu7GrHnz~Vtf;eY?nGlLQbAf yYaEb(3 VBc#?U<\ֳoܥ6)oC4:|J?(b4:7Iiq? ?3Ӵ!Λ[΃w+=g_Cs1@n&Y?!Ye;*TKF[92Gڥ1C_Bcѐ] 䗷 Cwy:x-O,O<+`$jcG $ u~D."ފ>d\l.|M|+f0mCZyeӭ +Z:|rvPn呃`8YE8Σ:Xi6ZO{)1Dnw)c"M3BS?v,?qs_W<ˈ>3Qæд<;ٵtV64bDh1~եhJzM}ey uF9A.8|"x߷q^-t g-`ja=s'(G9>q<@#l^Q+FbHX]^d砑?H=5-y]I)k+In^ ѵtiKB &`ޯYHI{ZmQX3e]X q\ɸ]Dj =4F)<{-)=[E}FNeMQE}+r p.ȀsvBJI{0ėp̯8{vz\")&VįAi n_ 'zIښh +?JBg)>+q&ԚR {l  װ IGxzܶU_n}Ҁ"4-AY׶bP" TmE؟AF1.uyO!b)תPGQ@3J{xEGK%:ۋt ^DaQXS4>Ħ +Λ9܅]?ɎFRұ4o!3drwsB fxC /r#!k{2rc_UA[r(TCVQ ^-gr:쯫0+ +Z6P^euq3SG#47e|dMpEGJ{=.BVe*ZիPU!iY}G/Y`$9 +ѷc\ݳ.[X{L-;n;q?KͅݞN;q?KͅݞNCUPғݥd BL߅onI,4v +@5+<Ҡ1h;;y}4S.}&NL??N."3azck+Ncd%ϧp K47լ֠ h`qCJf,;@JrһޛۛϾhfm :>4ư[yUjA )P^t)ȏ%&~ 5մ9ˬUgK!gT4vJRf)Xwot*$ ݰr:+Z%e79oT!r3_Ґ$;j]++70^ & stN _cdWQOsMU =sg pV%1Ɩ ꃠcM c>G)6h!366qjf,pm6ga68*(7zgLkPeJOQ  +ZIlgmK92@:sÒq܎U>mh?^7dgyIy~ +/}< J n Sbm/FZV*`2Y+)QԳj{&oDWo 7_9?]Up$l2;sҼfXGhxd66{Rx<]4-rfl;ɶ<C.;_QbBDSg^YͰҜ= Ht5X` +9һ8}1%xԎ'SU%(+4+m8+9aw &{ߍVl7[dDC4wJq{&hS=n,:ֻO]G`iP]g"04UF Lu(nC_AP56כ)G :Pgs<}n퍵R+IhH-` $zw?xz@Z}IlGU(ctS5UϦ%Zdjs? >\۠A1`7k)߮2l! Q'#LZVlM5y\S G+Ns1dg􊛛hr;5Y MxSiCLI+Ȳ["9R9 m-<8ys S}Gf + Jqo)4{8ϙjpwmlь~*W{ [7x##QI61Q?8eAi2#KjD٥/JM鄳k1j(_-2ijjMNs^z_$g33uHM;0c@#= e>q;̯"69yEbL m_j?Z^ݿ=oO o}-wMzM"fTڂfi:%T +/3OsxX>Zw2B#= +ƼvDa;s镔|2 #KNGbCm˺%SvyS߻~w'[ ̆|dZ]ߟD+ƥaCv@HX㳫СT|7q_a=08^Z;+zy&o]KH-#̶ ,t!CΏW +Loľ +͓:q)8ua @/wߓ~Z9 +҃X`E07,BQh{ݍ[;z{S!i )pj9hLd9F,D[;v +Gi|50F +4yeu-uC}W'۝2O VlګQ@m ?/UiOD@!Q(pKG4jAmE%,%XūA҃Ut8ER>Mf?V+,9Ƙ6ID[+)2UN+&pD +1x|rMQjx.euzR/Iz4ư[yUjA[rA6Ǩ0qg-3|?إB"g?D;q?KͅݞN;q?KͅݞN>ON΄ٝ!Mܑ=9g)V;-<ͺp$v'[sPj|KjA$5{#fM:kkk)})Pc*c/m!fW~4ثl8_d& +FMIMص}Op +4yeu-uC}W, 554/K*<pKG4jAmE%,%XūA҃Ut8ER>Mf?V+,9Ƙ6ID[+)2UN+&pD +1x|rMյhރعײįbSC͏d(@ 1xa>fV8D5{X؊cEy5(Wnj"Q:MiワmI}H9"sL9U0]m;$J57hL+eKV3Z7d|V٨rJt'\X]l,A}Sk=h^'TJ e&]>$n蔋O6Kw֛_N!y.co_;KqnsZ?54XpVdַ*m'ŋΟ!s˞\x =xzAC۴KV]u%ϙb<͋ KLW[1p.mbxEB Q/Uô,fYӶ9r\FĽa@i# vԙQKyMj*l4-ܴXfm~i@X_8iS?ВU9'j)u.> t)$fyAB W$(^<+oMLhON66 wGP:a%F4HM=?tQF,{gi4!@] z!M t]ai;.D{O|KmjQt +!Saqk5̜B/Z!(VFZ03zAm.nSͶXw?Pa9ݽ7%|{ŋ5gO}3*HoR9_tt!oK0ج.O&g$avjEUvY$5B߲i$YX +cg1nC ɴ!eSyKHl@?+Ӟk ל[f*VoW" GQ`U G\N*»aJ8t71XW eEU|AV'̅pa/8afDHίĉm!TH4QòD57v:N_@7ed`Jд}tW" Gڋ +3Z޼8m7p&&ob3*x^BQjԪabXeȥؕ;\|&<>Nd!- b}aXA5W GV 7A|{A>]<>mZY+:Z[syc- n{(vê!*l5*dCyC>gv,w`=gS>gC3X{FgjTMWf(F;Co6I;*ː(μj (Ø$t E]I`gcP~^]3Pip|A%,%f?>MUqYX0Y.IP1@oFmr0½b/d{?Yn<þYH, A¡,ĊVTe3 +7acFtkFHLFȲ>>54ZG/ ?8O` ;q?KͅݞN;q?KͅݞN;q?KͅݞNxH/JL{[_!0kI6~<'lJYA1ި\ɏNESJtGpoبyW;5Uդ*"o6).=P*fA g_̈́șBONOwM:@ȹ߷HޮC\Ш •KAԔs^d r\ȤRG ݆.߁| +mMHKXTESkg:HOϚE\S5J\% 5JҖ=k)qݘm hS='FymVMtGoMSmu8omS!'qsJO{A@1г!P@)u^m[a43z@D#^ynն~{pE0Q)`>A+F i $V$؟F6]?[LE\BARVЊ\E:rGC:oyj[OGW[egN}s4GQtħ\kPB:[+~+\937ѻc2">}CF(K@Ŷ/+~sz~Jz%h*?껛btaW *h='B٪3O6B WL-pڸ'^Ӥᗉ]"5V,gƐT\ȢKJ.%L!Ա s7eRYK=}~Am/AZ` "IKfufLc϶@zD4 >M"dc!l)W23zى5ϜuY2[ +N7ܵ +-Xq?BCϣ%Ll8Va BM9EFhhQ9^Mܪ"Mj`s2 ߏf;6}4`UNG'V[4mq()$ስ +uYC'9RZCgLR2ɐHeXCž9C3mLz{| +Eo"/!Urs#s4.r6w2etK5T,CɉtЀ2yBC#dj4]hJ+$;zf`+Q14݆ :-uhhV3auStq"bnmD=0j?_[S⫓7!Ϗs^.?;Z@ m6۝H4/Q ÷3+fe| ]^mN|c#zʙڞ՟G`ʡ o`R#fL&lV$ÄI:T:ob~j.Rghͱt;q?KͅݞN;q?KͅݞN;q?KͅݞN~a^uCnE~*+גMݽ#b``$.|~^ i߲BL +VxyL`6QZ:eyzy_j` ? İWtʔ+5ƒy}z=W\XA[e$Q[~> #9&FDG|wߍl*hH$r'2Gy]%# +:'EqkkrF۔PTðd LeҶ %)%Vqə,:mW}c$x(펇[p4kIֲ& ͛5mf/%kFx%z; +iߊ$jϭ! &T-^2߼3v^?V~ŴyS̾t@ 3])Ҭ %Jaft +*E +SKM O!T4<ȼQDvog*Κj'oyRLZfZt4y: aT<"3G53o2:'=LRz-8&Yϕ;e&ět񈆑$D!i%2}SP>0T.;}C ZPg_ 6z8C{̓%$ R)bHᴀ?]d{c(PR3!x"y觽} +{=z4s"C#&X5&"8{# lF o42̜O'Sصd"Y%\5ٞ%*B99>*p|ѨuC_eEJi'bx$GhDJ#ds +'qɷFѕ2<>H`!!( ,Qorik-hqxtXW}[]H ^)׀P;g³Q테-Zw-!RR"1i'~yy8(9V`h@g+/s + Rb.SwbT~SU(NsIݧBqqtS\M|ȼE}orJ<_@F ӌ +7&р-J1- +K&.vs[~1#ԓ y5CND7]nJmdG[P;pdޜ3fi4M{<}5 Jn p+(dQZ4iPcƄ D>W" G+xޠC<, )f=́%fo_~z=WNs؀=ƓѼLc TlĎ%s&k)1 lҴlf"aLkIr.dKXjյ{Xu{C`rJ]A]Gj.pO th:"=1 ߘ/grģcR/+~ɎǁJ r7Ѝ,\\#:4{Gpce6IagFooA)CÖVk@=27 λH"Cܢ9akD]I?%ޱÕ*N_PCkqv8Osk"IrNA@ MR@Q3+`drьi31ZaG L:^Z)4SŝE@Q?մ[> 69xłGZӱS u! ӈQ 9'>j/MAZp>jm?G];q?KͅݞN;q?KͅݞN;q?KͅݞN,x{A(O"P#YoW B_s,-{ZzzkxsAD(]z|z67!RrȥTs8W1 +C|d|ge'(7@:$K C^~Nyq:3_T2 + Dv]}|q]{6am qt(} H0+H63(Z+h^5%dgRTkt@푊}hTh DQAΜOFp`TjR!򼆟#_θk۸XFԃ*5OR; }i ="e l=cG%<9LHI"kndxfPݨ TO"ƲJ +<޳hHD9$B}ojD)݊"n6L-3 iYsz-37âECS_T5>cR ycOa Ov\+gGȣaߨ`Zá?M:- Ge&+&3wML<7{FX[C>}INtBb5͎8Fޯ +̆HdR} `= z1/#:I^c+WK%b@-i$nޑ('{ ;Yz0gDy^Spp&^߆SdFKMman3p\{ E8!&@!0ߦ7F"A>ӷ(3@$2,Fct,,tDA_S'WMSf1N\ݞb6P%:͌ʛPHo}}Hlճj+n6PBL^fHӫJty-"OEu$ ol`@ iʃ@plӊ˱"VjDCBhuZ[*Hc$Ղ251X%y`ؒK*a. V2(` D*0<( ,mƝOl$Cisdh Q2r .PKt6G0e$m{~fK .pZ/Odat,r}-Ů$bV)ܵn{nų0+.>x8K7>%r@nQiIJk yg qT„Yr`Bmz0&N2,ʽc(R6SdZC\PU?: sq9߹ fQރ}9ȧwbDDRHZ*)e6VW&AF[Ԡ `gz'TEl<˟T&8pva|gYPMA lklq\R+u^)~~0c)zu"H c>P"k>7[F]Î$k|yV8EӀ;[ޘE| !zQTI gM 1M%}m: +Bw1j{VS0MO7na-ض9O" T"+s2;UuZ-C  +U4m98/ +͒/P/J+?Wo>мH`j { b,Q~ߏsLa1$̋IlLǿ3{$:`4䏔Bw4fT/esB;͠|{GZ7ƈ'NF{ +}pds'wTlݴWYM$zn^R%reUt{Pgə sV AX&3lb=|wك2C9PY9oWHߒzXY\S}"Iu8G~q2'xyy藸N[̕`~8HĨz!k3rnRŭ9Nb Hwv9Ś9_H Z^R[yX9ޗJHxatyZv)LGC%0BVz.]U +xUvMI;q?KͅݞN;q?KͅݞN;q?KͅݞN5`ϓ[:$oU:) _W$$T^HxNZp+o9mQBK\AbĨHڐk 0zaBkK⊲˖?A!:oaz#$rSya9*{hxArC'y^&^lY`kW`T=4*Yw\, ,^gًg T8dib +BiHF +'WJs_\[ W-n*IoPjn``\'u ߑEG&ٳbսVŸJπb@32ePМ@Σgut b LS>YwTW\%jDKPUiG=b׍;Ɛ.Yi5 iܴ:rt$Z {M_o:_m4G_סu#شf˲X3[j#ejISlVBdXK6?~6#zE[a q]*uF(9[t٘25΅OūB4ŁZvwtry~{Ő^=3ǰMCgg7ڙ+B4/@ vh~6R<%\԰.VJ  qN? ;Ac q^"Sյc60Jx)ǓwL \.Y y "#F$}00g@#LMcJR5sZyUG!LLsM(M"mx|o.;˩^u +fY\`"bZ$!P1!K9U33sEM&YV9ޔ  Տ4\V-gv4\KodRZol wxaT ݙƩĠ*h)8DY[zm SnnbHZ [a +>YJE߱lBTMd9NLѥG7T2oBd/5J;nJ0UCm|F=ο_[%u[k'p\ɺ515~O~"r G +[rFf$VBOiհ~?z R>]km0ѻG%W\F077mh\%^q.;'/GP\>L5$*6Bd $J Q=|εXW _J'VZ*V +f w " tah {TǮH.5v&77׈I6ׄ5ȁ0=13IVeIã8,N)0L-qsV U9끎kc *α-CRVb8TU狥Y0t~8/lh/К)eD_ji㧈0\M.#"P06n?ꦠoK\Ku೾hX;d'.؁WX=ؠ2beoQ`+-sQl-/C%Ζ llVde䩄=v'!p oW$<Ƥ\$DK='Nq]4-VfФ=syJ1A"G 52l*l_ʻs8jG {EYQ:*{UfVhw'n|]#$.ܡr\x0q8#W~7k*NDKUg pe?Tk7 9F.`d%d45Vv [^a|xE8NXh?k;ԥfDG`LzH*ztPmɽq/XJ i)vN9Y2Y<ФJ ;ܽswrܜ[wX&uqgB!Uon{vx`TOB-&z/nY+U#G2,n[p{Gic͟ N;]i!{/)*z{{zdN9$wˀ2XkY`$!Gl<{Hzcn~h.>Bp +% _Fof MvKjA!j;q?KͅݞN;q?KͅݞN;q?KͅݞN |hFֺIsږl{R( 㛶HQ:W1v~`(jBÞD楪!DߺW>~xۖR2d1Z$xog9ףExo+^2-0̥̅by +7d05G%jOOw_-8Gk"aql*zF+J2P- \ԩV j#x=9?;7/k*4't'烄D[aZMpm@^a3a፰)X[M8դjR{F8ņnsW72lQ 59OAg?bjW3˙[ڢ`1`d9`SxN=4Yb +q3^ 㝔';zW`~fhGȞnHKLQޕ[en/U|7 jܝ)X+6&OFAy>w썀@yqgCmq̀OX,`r\-朘)@qasU|Kk KMˡ !̼ ++d\]B'vϘ9nST,.2sAίܧdq:ɝՙTx,EJ,)[!ʩ8)n<,HRu :…ާ#J̕@׽9݅[l;79lFެqxI4'Y׬)@hLGc0sv\5 _9BQaU6v9<%Dc*G J9y6N{,# $ #p_,/,[zZ|܊ -Lӎ* +5d|R>eꊔV* LANKD:P'ꀶW.VV.2J +`݉!;7pVz _K +νᇷ}AUkQ>5f'5B,|yT_zؘ7&(:XvǷR4~bgf>ǼO bƟFț >^("xe+c1$$EI .R/~Kjf*t \D͙/&JrԨeqˡSd]=6,%wXj\EdjW9|"a0tUIqI1-mr +'AjK]'v9AI2M¤r齊`89Pf?ts%h\إmgp?`$[GDoVgN'G~o.jwH ;dC-a[eyR7@m'B0C9`곹r3'"S5ieֈ2,YϮ8.oiM"KZZ>ҁ0 #}ekL^;q?KͅݞN;q?KͅݞN;q?KͅݞNY9K 'z8+zXҳ̚WG+ލ +t'ƍpp:Z(8=8C.A$_]饒_D/%E=RT< BX"Y0|B@ᓳgMwBX ' ܬЉd/;0d\{Ta4 _0آqRyzɔzOӐCTzz}kH9XOR^bnR:F Y( 8 %+e:~?I~g2 c SC20֖ aOe%J8 V道&bG硤(zA_i" V[yHGr<@XL +$c Hf!PcIq&ƞ(᷼" wXn@ݮTOU~A468!4͍\rznoQsTJ;x'r_}"돬k.xn{Ս.Cu||u'j5)co֦LtP+-+ DrXg +``KXw+y^}/.DaS4+ +iprÑ v3Lz̽"g=Q7l9+gͩ(i Kg\teshnItX4Auk!%;36A).iޏ#/)^ၝd2zFZbOօ1@71:}cOvH4#9LnyVW,#pЏdO6ξ},jG8Bo;򷻚"ǧޫ`%r;kL\m`7P,y l@e ;Kfm6ŏxS델*Av!3+,)WWz{ѣf1 ܝbϓS&֓Mx]tx| ,t >\^9 't쀬&sz@CC!g )t}e|kSj7G^ogORٳ\kY׃ݶ +$,ݓgtP!Et%Zq/$? eR<Jm1㇪YxMH_p69ž{v@o [Y؏fF!g4%N >0a\ܢݑܛDK椣R5*Ex USJ\zFY}hyOG| ǟyi|xX܏sQ5 rcWONx9Sv,2XW\gѳW4j7Ω/OyVCͨ>g\\9ɳ?븓N +bBϑ&*#![홵mĠV5na[cPԚv +K'I, &gyO˳ruiCZ'Z4UOb*:Qȅbe,Z#M͘zjSla4jvnteU@S'X1jؙN҂l)Nڑ9ꢥ=ЮxAT7}uET_›&`;_ȭf WQ>%sɃ\ +J`bo#sT6W?f}|7KB5vfJ;q?KͅݞN;q?KͅݞN;q?KͅݞNu֨17%ljQP@IͯPsF( 5n>OzGa@qv +j/7+G=;8tD +7lX;Emq0yj7p0qH%)q/ߏ'P`h?AJ#Z'GLWtA&G(eWq-*6'oYIbp&_J/þG[,6 +N_{ .#\(Z97Я2(7fߢt"f0ӦwSaC)e&|2Sv#PmUrc^< |7 +4i{6J23P{yV_W43~Wy-@X(-7M7WaLuDeE*SQX7,аe>G!ws20&~6g^^@Ɯ֝a,N@0 8fjݥ`Լv[*Qi -6g j)Hŀ,?ƋѺ, Yeh5< +mM7ؖaҼd.$îB|GM)d$dIB?AbQe +_s{ #BaHEzƱme +MWY*  Η}G>d隬L]v#> yt7s}\ٛs[9S1 g\[4^ @%FR7t{%%Hzr7TH?" ܓ:,6] ` +c\"%TrQ%Sv!o:>%d^9D irg0f0ݶ8scɁC"WkP6nVjU1>@1y $yOY/Q2X2c2*nE?@^aR$@j1c<+~9'{I2UAqϸCI~XN>(Ax,^֦Ս_fA^ښRdm,~n+;mL[RX+s~hhx5>2X&>3YV&.-n {'$,^`E޹m(!Je~%˳>bd(o6t[DvKS\fj@39l +J"S.9?>ր_[qArMCx_Mk&Fvi}:vkw'Ǟ/1.Y6j6퇝G^Pb;m9Ȥ=lz/ZkswUV{78a8 8w̢re2)֭"@OVyX2PYNf]pc}w.-!kr" ae*@ ?P +۝2>~e#3៬%*/'T?7nWR=bi*lYli=\M/'kVQ;rK^_T<2Peӿ3@(VOl%?4\샊@R1E·BWQk @5BC G]Y-d<!=.T1Os +T]p2߆L(uu|pz;me\~-x7t+QgAH-ް&!zRޭ^NHD_  +aKdM R7{ښ7Ui ʢZŬchQd X <2e  I0co̺@u&zOgk+ .⏙C]P/ߋ4v*ސKV mۺ b5 }urM̾-G3mAEu^}P^חtyXI9]]nVx1A' ]6C0 ')sZgÃq$}Ӱ 5[-YUi-܏įmݜB&n2OpȂ}te5i"x.領Wcé8y0JwAķp3DDI_KC+tPC{J5L}jhQCvr.TOAheeaiGx2V}-_'K@;x|nG<&ejKNlXpm9с:C6Ln. A&\K$"RōρF6!=3a< hI{F@Z&5b]'Y)WCpTհ)JK**7b<0uHv0LTKç0 +΍.a\T(8o^uakthʪ6X!=⚱b$}E-]\5DriTʣ>@tyE/ + iy9_PlX2۸ "ԫ }THݦXe{!MAYibcY5&ˠ+}?ae$pU^aKT0Es~}! +ƌ߻00 Io#bVM{AӧBܳ`n9乙GiHKH*p-d{iN h?bu6BdgnOK9\yd5-zkز^/EB% C$pH\yͨ.E⡄w Єk@FڕfGxLUw۸25 ek382%5,: \@%AIWfzӁ0HwiQ=nj:wR d39ruRd~Md]_S^B{RF/"dMjZ ysnX"zkZs6cM7-UctZEC(IgWTd1^$"ɢ$},_Yhefny)pߣv51kEQawU fF[%)pd4p,;)K"&I!ں+e5BV>ulzsLQR/DYo.GL7tfH.DŽ4FtF>]jiBwJ]uYSujD T97f.o{ymAqSzLYO_'ңmd:h@}hY+FƄIN~6%ۥ 7.ῳi {: mn|SShJ;~&Q@˜[3g͟h4pn =cE.^o5@yd6jBXL[3Q\e5~ڭ"ZD#2'B_-x }Zu6(SDv G-41Σα )F*XO[ԯ +_{΀즉'ƙT{6mnѫpb0C Qܝ+%b +|`w#͠S]x'-wbs~t??=\ Lu e"鵁##OMp$!f֤;Z'?$]75FW/~:m;O=kg|y\ Cvr@N$k\yFߤ]fқYH祦68a@ .(B "`#ьeEs,[ce,l-:i7\ʹ7l1p%xٳ?n"D"9{ /ضLכOqBKjb;~q0;n]4;_mYn9nI}2'GRf)͊>:-{綽{mK +[QfDHH + +2MFXN 5͖+pq- 2]ßbΪO#I [۬ a-8BZ71xnT@#m(yh}w7vױUG}Fu&n.8%!M@n]xaF *oLxSQ/ZVaH5VCooOD`u>֐B]Bb5j=Bǵ ,03X;k@JHЖ:@ MkʳZjØm0\֬Zzxf1v`&Dsb0LYV'6]lQ3NJ& ;q?KͅݞN;q?KͅݞN;q?KͅݞNRdNs^n +Y|S,Ǫ V ]bWH1*\׻?ӆp7յ1 MFކ*(| I:7 2`5,w(kavaq3_vHnD-s`ػe,yi[ swDXX$' pEjKg0<`]B.!rTK,rQɆxolXoRtc7[W|lGxi̇ܪ:7HHBhtdOJhܝkRw yZЗn'(D?Ŵiw{y$h[5TH\i["VwYjrjj 7 {O(0m#+ էrRsϡZP1gq*YXĬa+Cq8_)]ɬIHn?)) -V*9_ M(ܿ1=,d-(b xzlm + ⨂}r˻O[ꡪQ9D$եH]zAC* iBs5xnܲgTGD9@~4}ڃTA M 7;0Glp" .2ܱa[|Yp=i{+ׇC6_KMRV^:eA a_Ƃ]|;?l+|=^Ws&C?(mb<&#ĵm! +ZySA} )˅ّb &c$u".rG:/,󛧡٠Dڏi/n?A@lebl?.Y` +"ڂFIHrWMֆ~C/aFkw` RfyO&djxԙ$#x )]7~1J4^ˠD +%rJ9S._Mfn/k7[^ޠЪIq)Xܦml|řЏNQѕ_歿$sV8 Q+~Ւw]6qN{[W蠠c G5~HhCRhX9wGDˆ| qiOL{a y2M֠'Q紇e%gE`Ad0q:fPS3إW$WV9)ԑTyOX8vh$O1|eE*l}$Ŵ~YFљaeOD[!PK<K#54 "d $8c4V=x~?ӠRL-_kyaoG #vΝH'޷g?  }` ޱGil`.<f$ALH8rHfd!!L*Ѧx6BH֏wD8% pۖ߸L +SE\V7LI +Ĥ'~&n!u&a ϚHz>PjELXi"SO/J+"{D Ɥ+pN(as,2=L + ,+}EïSPނM3?\ɣ5#>dtswԸ1图3tBfⳃGz9YXgygΨt-E̚ދ!^uH:~W~6A)ȱ-\dg1.eЅC3J>*U6=RΕYxSZMT qʐ?2*N;˳E&n^@aj̡jr_Vv׀;HT[z0E+/i{$3.)aDAdWr=9{`ʡ`<, Kug?c((hnL@5`zmvK?9*1:3q"?gG$7F jA!,P Uέ.0#n! Sao@pR$mJW$=#0l2y%#=+6Np>P;ո)`~TRD4 bҫ=r O-{{"v$8cy>ќoQɹGc-#2Vfͳ96h?p%5%]ߜ*gx2; oJZ;q?KͅݞN;q?KͅݞN;q?KͅݞN]& h&~cʂk$z_zgizD?Q.% .gj<:왋;,ip9:V%rZ!"jWUPҙsUh0Vp lZ#ZYO0vJO v![}z*6cc_M)mwZwɥrc[ =Uӽ[Wd{Hխc$ 'meAav!5:"xμi#33:"FoɾgԌw]}: Yn'uW[MƹadkzAIop뿺8J W]S ++` .br{E|![!ϋϔ 4Ä0卥a0o}&23#~61 "9 R-?Sa _^G0 |8-UMWT+ۚ*MiTZtp4$&v{8E$:=tȭ|s#ܣ[,Yr6ղYCoYzh`mm8wwi#W;C@t:#bUރoB^j9s02&t*DYD,vN yQAAHk[\Z&< N|IO"4RH2ņ*_%/ T p{)W-g0pHіy!A7_jIaYgX2Ƅ [<7=mW3_dY3$^scOBW1"x!ˢ)oݣ/a6Po`S|#a- +e&8FX,c:|A"~(.P7r [z@Raد lu8+7Hwt։`丽rqj}b4z1n>g2V6N"ɄM|Ul8Fo Tc,-cMxƕgricVs/nq?Rsd*.𝓧8Z\k'X@",SUMs.;>V$5jEiGuR;R8T48OږaR=/,{{zUSw6r3͵A N-MBP>[=µ'5K>cSt6c:2-=ĉtdQ#x-DF&z:ymްqA&I$T>uiP_߁Ga}aNTZtVVIJuv{"rrF$Pk} 6{A$"TTǨ>Dfͻ>^ ջlnʤ,?.l;ıș-ɬ_۩‚ %3(Y5}6& +$T/0U;~op($oĭ 5]r] ;7ݭ2)MQm;mOurBsx;q?pZј@bhwX_W,/$ZY:,5xyQMPƒI܎.;_烪A#Ű_TnN(-$-tFU퍊Sxsqqt4! j{l8\?Yt_/Qw"\7&M0;q?KͅݞNY#StUI/AlNrRZi+CC۱Gs1L|ۣӛ*lůH#fr,aUHpAG6[zw[S{b77i+x<5PNkTB=S (Iz2u-7-Y;PSS&MQbl,Mol9oR"` <\dSqjPiI=Y+ch|-]pո =""IE규6ĕZ=DF( lr [3b +p[*_Tli[^E |\Ldojol;q?KͅݞN;q?KͅݞN;q?KͅݞN^B&Nd6)e=ȯ1Xplp9P܁cLݠ"3{) _o?%;w(|csV;q?KͅݞNyҕlCF!t;q?KͅݞNm”;wQ0;q?KͅݞN}$]zwH@x;q?KͅݞNDM,z|7.Y=_Gˠo+8s?gɣnVUHlo1xM ^E0⟵rzkO":Mg9;V/}(vTʃ(ԊG.#IHN[40 2?h1/>vCZIa77w!ĥRǯYEH|ځ9v&䣧Φ׍F-9; 0o_+WVɑhR:zުzX+[$$~c`[$=.T=iyLJ@ 6&bnuю6cYZ8dkRW~RHU67qCW#]4xKEܶ"Q|gyMaPs1s-{ oH>\(zLw)%!e`XgٚINk(ܻ.jH<eH2rZ&KxA2you⽥-afaj ;FS=r^n~PBֻ>=€A_*T+ViNanb*BG@ڃI NO߰)k-¤4q :ZVU̖PM3b0-J=1 |Ƚ0滌dh,_/ecG̢=p͖sQ[O/'VgUPIk] ФIx鼐IVؼc?KHG_= !¥p ^˙(of +X Y'|jC/Q]q b`C-Mz ';q?KͅݞNh7a*)KÆ[;w?'R!6L#CQ@e+ XkWOk-adX +p*܃#q7~{b['e %2B 2 q +]Uphf?dAe79CAnG"-9bc@c ls`E޼;=bSi)XX#ćOU,fwQRU ڷ'+mrMo;[:\:+NHd5ky3zR_6B7뢆1Y -$Bt NHN)njU1Jbr]S8|h)'Cb jEsB?pM4,QC`m BY!Su^᫿gsfXo j{?պ,TNBsF>ɤ'+ ?=#VonV2BmPԗ7I24%:܂ |?WnrD:s:l/8TPYiR$ q5J-iS,5+@ɘowgk4[]}dg#OtɈo;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN|.D]A9m=pU03X+'f% ;)B@EgE*ÖBѿ0LSEv=k/9VP DB:4k0VV).xLe,VdVV;i4;q?KͅݞN;q?KͅݞN;q?KͅݞNۍB`'RSaĥdBB3 Kf:+I54A/f x{0ZD1J8:|xHqfG|V6 +Wܯ0؂rЫ248ӧ+"qY'dQ2M3Xr Vi,Io^9W'؞0 Nx~EH~3}%dۚ,{8NVFƆݒ lld2ysb388P# =ˉH7Yb!Vu@qXca:@k7QKǩ=6aE}Sn1BpJ?^ȣiWypPΐ'3ylڃn0v,Sc +iA@E"\#$ޓnRZY§U*)F 4@VqTzeq. 8)ߓ4@Z(x.АvPSX{uMZ"ͫ;0Xi[i;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞNGT@(t2]lYaQ)| EV/ +8/AgM7@FWL!uGDOl3a%:sW^R} 2(׻p-@}@Z-`[Q\+~; L92"Vj1s/ZX-M-4Oam+OU_uGǯwнLZ2/Ȩqv$I|")f-4@mEk +&ړcPcF0j4t/Ş(dkF܅;Y\\잣Dlйr?NuzLIih7s˴SV?fM2ׂш9\Q25x^a JOOpӭb_w'#5d)s_W8x&kYm/V0yv fIrԂFVa1|H|F\;q?KͅݞN;q?KͅݞN;q?KͅݞNʧh^)LDdc!֖<sobZ<éosXnڗ]L*,,b4ʚc*v譋V^ر~HG͸,VV}~\l ЕBR%05K ((\'KRnY`j!Gw%Ꮺu*a/zJ1[3;^I~ aC~Xxlcu,a}ԧwF70V֎ R;(Ū˞Ē|c@4k1 ዯTշWOC{GW~K?Rx#ǣޱ1Q˃YU,2_>&W gF +s;6*>.aK()KF 20Ljy2񶹓 + 4ݥ=##N |YW]QC) %3bo/PWM3hljH +3~L8zb~5Z,k.m1B]4NHLS[l_I[+|_ƩN7~=\lzb"v#ΨFY,? IFc0 %ʣL_PV]oY +?#Q*7ȧ8٦4Y%p0Mqv G"CqF%MLzLfܓ]z4xM49ёI-l> [k (wHTmuyZby2 +{XqFq h=#zN"̚QϽ+?Vo+E, Bk3&E3n'fK7wѢ^HKEc˳8G-KzȒtͫ}R_'5UtxOf .C ܀yͷBw{Y ,|㹕P: 0>]n`GKx]/Lu\SOVKoX:`|ח`"k +!oM`K+kxbZ"xV9 +>r >fzPo"DGS13mƭmV[ULr]=WK: 8uut_6nQi[6'4<c.a"pic;E3U//Gddt nUUp{ P5} Pg9A'i^WԐ'u9=< &L^LN뎠ڈPisf`ҒΙBm:0ZX:eiw v|V\3a okF2)pXnB: G?\ehXF4~G΀aNh(aƗE{w^V$B+dC  N:x~Otkd3RbJ4ib[+rdY&熆ϰqsw'::f^ +We󅆤O2>6ǐXRyTt)fP^KLgȱ%h2[VGn jws}1"K+/ 1"Ffg 1MI P =7$ {@ <% aEWVW +9f:Gߚ|G&|)Q( s|J#1byqة~p"f䴪ږ+CtHllDBDq-(}[8ڍSlqʦ@bEX ߼ +AVx3ϻ R~ߤȤ3ZCe+Kͼ(, |$#>|?{[t(o!e3V^&.L' 2B:M'`E5CeH7঵7^RUI[&)p\n|VEO]NeB(_Ak"enžaf7ŃL0}@f9QEVkvPW|!UelF@>TeS)t,7!q( C>/>hF<.^U?A䘘l;q?KͅݞN;q?KͅݞN;q?KͅݞNG'BrvNg|U/m(g] 1Qbňg8]*&)7$qx/jxhb:T0aF?QvQR? +m|#Sn*Ig͢$?罠͌!}wsR@{d!-ٖfj.)x5? zTnrW1 jܺ? fcpO7(m3 [@f?Laj)5EOr]?b8(אS_3!XeRj"H9Dpi-\O¶zgѝTCEąeP!𘝃36 mH%d(e'N¶ooZM)[C};ڃ;2ssqyAMG)ےF@9? %wDL`%R-f-4Xk%  ?-I%T̜Ni!D7F3Xq CzY$=k&Q0f3~zN39F7VME\Y1zFN1}{V`EHSLBt-v@_bޏr\,؟"t $/xdΤ3%LnI /+:܋Ѐ[*}+©3%U6Zy*$j\jS.ҿ=1p ,P511 uBrYɁ vrgJ(%I9b[fd!\FGW@F҇E R|nHX`Gl8jsAnﭾD\04:^E\Dezo_}eaqoEN#pEJjj3%*ܞG?S񟔉d,DI-(ٯSX6B! +U +}YNDArmY{&pC29Um8Ycw':MuKр`5Ti=p[I_3Wc_ m"gg6P$W\li<ڡQXgتAV +h$2tZkoYb"bRrw"VI2cXOUt̂MJ29l]=#NŖE/S@kɜ0j;OS8˜oŔఙc!-QLtqׇ{ߝa6ь+ן$xg]܏&Fb)bo8$ +QqMdz86'Y8Rƚ|'@Z)J8?- +IL)&B&(EZ ~P7sk(U8ɽ,tv ;- ۙD^"qRvomY{Bd B`Fgqت`9Y*#X_XS!HCg2|NY+d3e.’1␠D[LMT=2#'C=;q?KͅݞN;q?KͅݞN;q?KͅݞN~XVAףOO`wXPNYg(tdT verhS'%g_V;aJg[bLȘ| +ebkߢ!t®-%'R_ -lk3š$LHK>mߚ@-$-@-[x̱;q?KͅݞNNJ)xqOXA"?1sހ&D` j$:\x;6~ L3+ +\(1?=>J|q&b`D +Q=hv<%sI=.r /'h̬sLȽ!pIOʆ}sD:Q +́W/'7J3Aow=Nj9!IlFҘ!?VC[ bZShط@yOⴥr"nve/fqt*pgeJ}6gSl[ж=r^u S fK~; 3ښy ;`=0I:mae~h 0!_}YZ{$LWMlOgdP%3dLQ4Y:U֕1Dm͈rL=/HT}W۟8ȊKK%dpn<"ݞZ}ZP^f.ޅ?(+ku ?6deq!r5͌UvRR"P/5 xl䔩ݱFo68TF;!~ý¡_wM~\1ezOc53VFnw#ODLT5X9yX1~l'-IKND ", EgṬaj(נE>Mԣ\q9M}{K>LfD8<6S$X0.e̹cc_|K}Ԇw-ɟr[XIm&T^\&#ZbNG:/ +ᢥ>30^Om\:(diXa!LѦ,a +ez=woY28Stܭ=5Cn恅ǰa`r*B9=`ȔT* +J!iF|siL! 7H8L%;T?u%'r}ɖPGj* ư^g ۪4mݹ_T()/kMl.fJ&"E8GU-bxT3ԉX @Rsp-ފ!MSf ӧ,ed]6ͤ~#BklPT Up5h^ ,c! ̗wn|{ΰfyDFbG qb_7R[XMi̡G啎Zk+ڽ 3 / +|ikis K0? +G3wBE (זj`1Ag{"=}G8pD/_]|ɲDҫ@m $=X| ]w5Aqi'bMp&Pp+4Tdĸ%t0w %ȻO' +J/~G̋kOĢR]/F ˦.R',O16%5yI63nn#LBjW(R$va\lSRϾ)= ql)/U}*RLv"m%-w"{H`O?!oM"imj3XѰPB3C8bzJ:Ɛ%Jed\Vc2fًyI«(Ey˜ ]A' !k'lm[pVjk_ ߏL? *PG ++'WRdkM%,ɶiD/0;vw<Ͽfǭ=^ArS~@|! +d?WcqU]w yiQJ)\4'Ix(hVE]L fhbjY'ei7Ii00g?:git7i^=eQ}Jt 0j9op0`+d% gc +7Q[`*!qܚ +yab + /[}c7-biL"Y# R@tD^kq$Niٰ@Дфjïe\U`~zEo*Va ՏC"gB }zy{F(N[}3i49!cvT,|}eNvܠz wcpYˋ9Wޏ6#Ü.")!}ci{;%Au-<[z> + i/ mh=z(QxI۩{A0b}̲0@1PA~/Qpc^\(fo$M@P{|jkjv~?͖uP\7t!Y} U>lc~VDd";oyoZ-Q"Me%s +-gs|3Xj0%Ie`^sQұ ;}!$ϵ~H-5گ(Wz^qM)Gc%B7B&-ux#JB+_3VTUת2c@r) +Y>4\>py$Hb#h5m{ ݌40^Y4q~El)y&Ν @ + n%h~W 7_sV :cuGH6')mV'\kZ9'դx3sB6|L j5jLC./ܥHBG{kT?!˿ tF~Eno +˖n:Rqz*l1 ' MoXQs"3Flv'(Aj`PKa)G ؁!q=AS!O\BAYY q_#;e Ѯ90H.[iB#" .}dJssb\R\w D eLֽSFbm- 'mI;q?KͅݞN;q?KͅݞN;q?KͅݞNjF^K}sM_SE"a :hdUEq*Wݴcʂ!Hܐwэb4N5uH 3R-]%y{M~%.Bou8i{ۭH xeKnK˒G1(5 CF*"Ic& ^eH@!~Q^s-)`b&8I|p*J1ݴ$f5#\+_| wN,ʈqPۿS=3;l cNz{ss̕c\7c6hEqCGSGXM4 ]g#$s O/`m1[eabJv~؀+Bd {o_>`!2ٌ"t1sFKZ@d P_!ΪmqL暃x=@OrO"Mb%HԐb L*&qsNDg|jzϹbjʲ9{ ښvo)Q3CR9ȅod?7L;s,Vcyl/Kq[,-!C _ޕEH1: ap ٰ#g3T$ |)^5ǻGdGDnwӈu;Ѫ<`)훹,!^-eXon` ө Ê11.@t/|(x;_wJ᫑|#zO) I#3ZΗ|>ɽ1Pd-q:dI{YH%J62mρF: Op"v d>~Úz.Eʤ_!3' qV'l=hq_EFt-*:a,uV;&k#n~pEC\t2v=6s62;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞNNV\Cgp). +D NEi!rAL(SgTt)V ;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞNK:lڵ&o89:x28#%?mOTMT0t^y+S8HI C0IE m Kr+ͥP*ø|[tL>⪝8udV}40^rgf3ͰgilvdI#?I~ò|'DEcF_xz7:Q>g=5f6܉ذnv -}k76&7\p9#r1=8:C [fzG$ϣ{I?aϡ7`1{ H_j=_w=mh{-RqG}׎$Q2A.t#%GgBDQnXy9jvnw`bڣaW929Y>"6e]"mMf6>$Zj<{ԆghzZ +\{j6ҟ ŜviU<'UT)?NЁJذ@)^,iHOO>ـsi37} I6i1%`~I yn8foA@.koλيyg*jεc]twL=W9mޖ7,r {52"ͫ#t3ij&K>\YWP>ĥe~[ m s.dp}~Qk*+DNS}hUcbh`CT>w;BJ gZ9«rMVJϑy"{1QSՄ=Y,0ry! ++ v74**$S J!7<<>)%2KCmkp1ԋ].t|o\EqCOѬ;Nf|% W{JVB$cqSp{mˁLL* {Nzom%.ٶjT~Րs Io4dO6 {q̽M, ~jrŽ0"SwuV#4򂌤Ѡi;q?KͅݞN;q?KͅݞN;q?KͅݞN/M)S@vMrnM1$Y@C,͌i֐4 d~Y$ֶ'Q&~#Hk!lrx?(: q6ҹj aFa_Y&_YNKy+W%$fҁy n㧒@^3gѶS T2^qԟ'ptiPՊ1ĘOo$jHЍwjߴϩ,DMH%!!`1#ѷ_|-/`40:7oW7s +gDLZ'J1Ur;q?KͅݞNdCRې>ӠzzJFK0ӆ cr'gK@H ߓ-vM`Q"-c0I-s-Ǚa$K$/>~\I TLlUQ4tT<=uVWX]LAIG +%x j7r]=e_ҙr/X__wx+`syh;OCH[H㐹cة gy8hSFP+3;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞNU-(Py%+l(/;q?KͅݞN;q?KͅݞN;q?KͅݞNק + i qݱ鮬{aT) eb~D,7-&3mH@rRİ/$݆o?kp3Qbv.P_aAlw;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN;q?KͅݞN z{{>ؓ/ri+#b?١wQȆhMF@OD`aM TW̯̿5QvL菪-Wy~nVaz =)8#}D?`jfgX%4n@Wh8D'pAgh7} +}ۓ`:,Fb_ Ŷo2'1uM$m e>ǾJ%uKs޻gRB: 1FР+Ojs_458&CE{-tI:"7flSkuo6 öK$F4AMsw4s/[N֥4jp ; Lq4avq3UQUAa8q.Df_452&QJQmJq ˽n~twRNNjaS#%U Qi-=Jɧ93Z y8콚tYUF9 `/\15WCd5 n&Oi 'Љ.n;q?KͅݞN;q?KͅݞN;q?KͅݞNNI{>_&Wy߿C)vFRm)t_XjW6b$Cp#Luf}9ctq(CU=.Kb&;lw۩3G8/%wqe/*yƙX<,XѪ=ẀYxO0\:9dpSt 6&bnuю6cYƜa &/p,nɼix|Ɩ-if.Cjʨ]<|o +BN7e~T]q}"܉dCvÄ,: +LilӦm +KLHguʸ:gcZaiBXuW+y"Dl46wH_bЃKB<&7a> maGSCNZR?#0E(9sVObgdBV::{ &p3%=UM'Ñx?#zŃ_׈pcSm8@JH+~[rHobZpmVī:kz. k +غYYd2MYM/&: ` ؅k<ɏ*36c8\ +攙k՚'vutWYQQ8;OXBeт}]vJ{-&Pw͞4eIЏ{KBx&F%Yn15Gq a{⑁-e%q9~K!T㣰vFwj`9FA^k mZNebqE&]Lw!g' {c^ +z-6 +1uCwYDs}C⢲M7yأd{dInfV'ͦy7lQ#G e^p!5H/1օ5y;ѠFSAm f[s!6 +|ޠ!a=MYZ#%)*넕R8Sm†SZQO-SćmN7-Q0AТGd*ߐb_X!Y|dVO3+huZ!:sw8:LӚb[|1LmD4xN[@IGXP;1;q?KͅݞN;q?KͅݞN;q?KͅݞN?P6wf1A#u00 zWjVoN HMd?PѠHf,w0Qjx&/Ĉ71cl1b|P}Q*  kANJ 8iXѳ2fT6{}h䷌BbƝ BxWY2]'sx"XOAs K=czB94XWcWv)υIkDW;WGԛ x"X@:"x䰀y9nq;hLw\DĖ2%R!-LU~oڽWmZйQ(&"/T$=w`qrA' BTH7 <&}?&nsrm Ÿ tC ~{ rٓ1NZmi.Sk!6XdaN׳DȺ"F-(CIh\V~qAt]"ʾ27N*βQtD+ìe +ÐFla`EK7 +kQx% T]%̭d pK8v4ByZsքsN? +W#P>qA8sTX;V 72lt'܂kQnLf0ĔJiϧ09iG!Ȯ?F6)^8&|  j +,&O^^ J!@Ɍ1֒xh2ryM5V<-)Hb$N'%[[|1LmD4x+PH WE9 "/Ĉ71cl1b|P}Q*  kANJ 8iXѳ2fT6{}h䷌BbƝ BxWY2]'sx"XOAs K=czB94XWcWv)υIkDW;WGԛ x"X@:"x䰀y9nq;hLw\DĖ2%R!-LU~oڽWmZйQ(&"/T$=w`qrA' BTH7 <&}?&nsrm Ÿ t%F{M=W>jpE;r(ǿQX/:kEqzӽm +NAд,G N$w@TX4~ E;r(n%hXJP!frٓ1NZmi.Sk!kV_DSP"=iu1bwO4OJ_<'>s|r 8@-(CIh\V~qAt]"ʾ27N*βQtD+ìe +ÐFla`EK7 +kQx% T]%̭d pK8v4ByZs_Oڛ٧QV\ڗQ ;G\L7| ڽעF`mr3**g$D2H츰 0y ~cAPTmKNB,y8u-0 P3{m1'\h/;X1/(XQ=_DHV_!}~q*O9䑫mjk4؞v<.FVXd3XSL=>_X{ &PJP}_(9Sͳ1!˭ :LfE:BA'Brhs ZPe[).!J-oK 1t쳣z*ĕ#frZF YS45*it8yR T^5,T5F>SW8ëqwہz30/u[8˔ׇ!3M3J +.%/3fMxh:z2~H{딢b@R홿w/qiI)lK`d2jâ;RbZ8bg[ߍQ"ƅɫC}]8^ +]U}*L(JP}_(9Sͳ1!˭ :LfE:BA'Brhs ZPe[).!J-oK 1t쳣:/1*k`>Jk]rC`PaT-(47)ay]RSW8ëqwہz30/u[8˔ׇ!3M3J +.%/3fMxh:z2~H{딢b@R홿w/qiI)lK`d2RD'XH-yMQ0}"Ʋ5@Go<ܙ xn7Qpo;q?KͅݞN;q?KͅݞN;q?KͅݞNҵ%7QI\^@ydB(tBB` KG} ,uAgD)1K +`L"p3Ldx`Ŏ;19,G;ex^~ڬ ھ;т57>vP"}&*g46X~ V_KhQl4"S<|UyἭA??eM\ܖE-{<s|jxWRֵr] 3)Ͻ> v1ĮLh2W鸮ZkyJ&c { +L&h_9 QR{dca[5Žƾ" KbBq| ïqťwdw6z4L'ْTeo^2=/ ^gpQͨLr0ؾ"Ga鞸~)LGaH*Q^27JmS$$ 3^~ih7@M >H7u5=nLB;[Tz_M{2WT1VHPK 3?* !Q3!J+0q|">FZJtۦ5wl1F)*FQ0V_f2Su HJ Bo A0o|AS'N{&\^{a s/ERdPj`vEe1h`HۼQ$­b0uoKhIlYVϱ#^ AJAd_N&\(m;FJ>Ѯ~8YbR=A3RÞW4mK9*SjNliX8Q=FmB ̓V-ʶsH*Q^27JmS$$ 3^~ih7@M >H7u5=nLB;[Tz_M{2WT1VHPK 3?* !Q3!J+0q|">FZJtۦ5wl1FeZ9dm`x,Cğ~#׈5򘍂aV!j<Ps/SpȾ1sY#Bpo{N>KM ڞ TVPANOtËn:OCZ_'S-YE-:sv`i+j]3|AS'N{&\^{a s/ERdPj`vEe1h`HۼQ$­b0uoKhIlYVϱ#^ AJAd_N&\(m;FJ>Ѯ~8YbR=A3RÞW4mK9*SjNliX8Q=FmB ̓V-ʶs`6=ku>kp0`4Fb-z7E]^"Eec*-4ǽ#V>,\$\O"9Ѧ}\ՖؘAWQO%cA!M]bc +5RpM4l&@#)ITډ3 Uy=DZ<=OnVrS. LOvIbpF^82܅}m!}^OƚzX_ެ γ(rmeux c*^,G-<#LP# mŻN}mE\} mev|creq [*i_卾8se®%/PgAVAߴ`e˻%'Cܥ;/MmS<aV!j<Ps/SpȾ1sY#Bpo{N>KM ڞ TVPANOtËn|2OJgE|-q$Ўnw*WM TGy +dӆ{J}(Sڎ08/Nǿ ӝnQ2/9de&@epӃII7S.>Q첓[L:8$O.NMe+O&A}<ճo.C"7}Mt,#hXU,D%8vpsu+-QRCinؕLG PR04#P^Gv~,3&g d2nW_U!*zuUxs7+O_=s~ժ:&]eKJ.ʂS:GOO'$d@?i uٮLoif&|Ɨ4@M{D8KZ߰=c݊u#~gwgqxᱏtM(/Ԟ͒:@?TDk]|/䭎%1lzi\G!#1Ϥ掂˵ BBx-_/ +P&@ibx9wؙ-+=CȢ*#я\bX'e _ E' Q  x-؝e :XKbΖ +L+ӇH\v+zT5 K )<^J&HxR"=E.} M@QxI=|w"D{z<+_lF0K,PBCT#3[cٔAEHC0Ǽ͋H0xlq4 r@O3)5n-ZNOuz%',kG$"G~/ -ԭ祉AY\m$kUI}CQ}ř0l \A9zGvyMx,t+JLՕDi{"Y:c=Gn;0Z4I.+?ʼ1.#t-TgZ"Nފ>qB fwn}AV,ު I\ _ѻ)+wNee \ No newline at end of file diff --git a/dietpi/logs/HC1_sdcard_build_output b/dietpi/logs/HC1_sdcard_build_output deleted file mode 100644 index 1e35a863e..000000000 --- a/dietpi/logs/HC1_sdcard_build_output +++ /dev/null @@ -1,986 +0,0 @@ - ──────────────────────────────────────────────── - DietPi | Mon 04/02/19 - 10:02 - ──────────────────────────────────────────────── - v6.20.6 | Odroid XU3/XU4/HC1/HC2 (armv7l) - ──────────────────────────────────────────────── - eth0 | 192.168.1.175 - ──────────────────────────────────────────────── - DietPi Team : Daniel Knight (founder), MichaIng, K-Plan - Image : DietPi Core Team (pre-image: Meveric) - Web : https://DietPi.com | https://twitter.com/dietpi_ - Patreon Legends : PINE64 community - Donate : https://DietPi.com/#donate - DietPi Hosting : Powered by https://MyVirtualServer.com - - dietpi-launcher = All the DietPi programs in one place. - dietpi-config = Feature rich configuration tool for your device. - dietpi-software = Select optimized software for installation. - htop = Resource monitor. - cpu = Shows CPU information and stats. - -root@DietPi:~# wget https://raw.githubusercontent.com/openoms/raspiblitz/raspiblitz-dev/build.sdcard/raspbianStretchDesktop.sh && sudo bash raspbianStretchDesktop.sh raspiblitz-dev openoms ---2019-02-04 10:02:34-- https://raw.githubusercontent.com/openoms/raspiblitz/raspiblitz-dev/build.sdcard/raspbianStretchDesktop.sh -Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 151.101.60.133 -Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|151.101.60.133|:443... connected. -HTTP request sent, awaiting response... 200 OK -Length: 21481 (21K) [text/plain] -Saving to: ‘raspbianStretchDesktop.sh’ - -raspbianStretchDesktop.sh 100%[====================================>] 20.98K --.-KB/s in 0.03s - -2019-02-04 10:02:34 (649 KB/s) - ‘raspbianStretchDesktop.sh’ saved [21481/21481] - - -***************************************** -* RASPIBLITZ SD CARD IMAGE SETUP v0.99 * -***************************************** - -*** CHECK INPUT PARAMETERS *** -will use code from branch --> 'raspiblitz-dev' -*** CHECK INPUT PARAMETERS *** -will use code from user --> 'openoms' - -*** CHECK BASE IMAGE *** -Check if Linux ARM based ... -OK running on Linux ARM architecture. -Detect Base Image ... -OK running dietpi - -*** FIXING LOCALES FOR BUILD *** -Generating locales (this might take a while)... - en_GB.UTF-8... done - en_US.ISO-8859-1... done - en_US.UTF-8... done -Generation complete. - -*** UPDATE DEBIAN *** -Hit:1 http://fuzon.co.uk/meveric all InRelease -Hit:2 http://fuzon.co.uk/meveric stretch InRelease -Hit:3 https://oph.mdrjr.net/meveric all InRelease -Ign:4 https://cdn-aws.deb.debian.org/debian stretch InRelease -Get:5 https://cdn-aws.deb.debian.org/debian stretch-updates InRelease [91.0 kB] -Hit:6 https://cdn-aws.deb.debian.org/debian-security stretch/updates InRelease -Get:7 https://cdn-aws.deb.debian.org/debian stretch-backports InRelease [91.8 kB] -Hit:8 https://cdn-aws.deb.debian.org/debian stretch Release -Fetched 183 kB in 3s (58.9 kB/s) -Reading package lists... Done -Reading package lists... Done -Building dependency tree -Reading state information... Done -Calculating upgrade... Done -0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. - -*** PREPARE DietPi *** -renaming dietpi user to pi -The user `pi' is already a member of `sudo'. -install pip -Hit:1 http://fuzon.co.uk/meveric all InRelease -Hit:2 http://fuzon.co.uk/meveric stretch InRelease -Hit:3 https://oph.mdrjr.net/meveric all InRelease -Ign:4 https://cdn-aws.deb.debian.org/debian stretch InRelease -Hit:5 https://cdn-aws.deb.debian.org/debian stretch-updates InRelease -Hit:6 https://cdn-aws.deb.debian.org/debian-security stretch/updates InRelease -Hit:7 https://cdn-aws.deb.debian.org/debian stretch-backports InRelease -Hit:8 https://cdn-aws.deb.debian.org/debian stretch Release -Reading package lists... Done -Reading package lists... Done -Building dependency tree -Reading state information... Done -The following packages will be REMOVED: - fail2ban -0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded. -After this operation, 1,321 kB disk space will be freed. -(Reading database ... 15499 files and directories currently installed.) -Removing fail2ban (0.9.6-2) ... -Reading package lists... Done -Building dependency tree -Reading state information... Done -The following additional packages will be installed: - binutils cpp cpp-6 dpkg-dev g++ g++-6 gcc gcc-6 libasan3 libatomic1 libc-dev-bin libc6-dev libcc1-0 - libdpkg-perl libgcc-6-dev libgdbm3 libgomp1 libisl15 libmpc3 libmpfr4 libperl5.24 libstdc++-6-dev - libubsan0 linux-libc-dev make patch perl perl-modules-5.24 xz-utils -Suggested packages: - binutils-doc cpp-doc gcc-6-locales debian-keyring gcc-6-doc libstdc++6-6-dbg gcc-multilib - manpages-dev autoconf automake libtool flex bison gdb gcc-doc libgcc1-dbg libgomp1-dbg libitm1-dbg - libatomic1-dbg libasan3-dbg liblsan0-dbg libtsan0-dbg libubsan0-dbg libcilkrts5-dbg libmpx2-dbg - libquadmath0-dbg glibc-doc libstdc++-6-doc make-doc ed diffutils-doc perl-doc - libterm-readline-gnu-perl | libterm-readline-perl-perl -Recommended packages: - fakeroot libalgorithm-merge-perl manpages manpages-dev libfile-fcntllock-perl netbase rename -The following NEW packages will be installed: - binutils build-essential cpp cpp-6 dpkg-dev g++ g++-6 gcc gcc-6 libasan3 libatomic1 libc-dev-bin - libc6-dev libcc1-0 libdpkg-perl libgcc-6-dev libgdbm3 libgomp1 libisl15 libmpc3 libmpfr4 - libperl5.24 libstdc++-6-dev libubsan0 linux-libc-dev make patch perl perl-modules-5.24 xz-utils -0 upgraded, 30 newly installed, 0 to remove and 0 not upgraded. -Need to get 36.8 MB of archives. -After this operation, 138 MB of additional disk space will be used. -Get:1 https://cdn-aws.deb.debian.org/debian-security stretch/updates/main armhf perl-modules-5.24 all 5.24.1-3+deb9u5 [2,722 kB] -Get:2 https://cdn-aws.deb.debian.org/debian stretch/main armhf libgdbm3 armhf 1.8.3-14 [28.5 kB] -Get:3 https://cdn-aws.deb.debian.org/debian-security stretch/updates/main armhf libperl5.24 armhf 5.24.1-3+deb9u5 [2,850 kB] -Get:4 https://cdn-aws.deb.debian.org/debian-security stretch/updates/main armhf perl armhf 5.24.1-3+deb9u5 [219 kB] -Get:5 https://cdn-aws.deb.debian.org/debian stretch/main armhf xz-utils armhf 5.2.2-1.2+b1 [263 kB] -Get:6 https://cdn-aws.deb.debian.org/debian stretch/main armhf binutils armhf 2.28-5 [3,900 kB] -Get:7 https://cdn-aws.deb.debian.org/debian stretch/main armhf libc-dev-bin armhf 2.24-11+deb9u3 [253 kB] -Get:8 https://cdn-aws.deb.debian.org/debian stretch/main armhf linux-libc-dev armhf 4.9.130-2 [1,350 kB] -Get:9 https://cdn-aws.deb.debian.org/debian stretch/main armhf libc6-dev armhf 2.24-11+deb9u3 [1,995 kB] -Get:10 https://cdn-aws.deb.debian.org/debian stretch/main armhf libisl15 armhf 0.18-1 [441 kB] -Get:11 https://cdn-aws.deb.debian.org/debian stretch/main armhf libmpfr4 armhf 3.1.5-1 [536 kB] -Get:12 https://cdn-aws.deb.debian.org/debian stretch/main armhf libmpc3 armhf 1.0.3-1+b2 [32.6 kB] -Get:13 https://cdn-aws.deb.debian.org/debian stretch/main armhf cpp-6 armhf 6.3.0-18+deb9u1 [5,239 kB] -Get:14 https://cdn-aws.deb.debian.org/debian stretch/main armhf cpp armhf 4:6.3.0-4 [18.7 kB] -Get:15 https://cdn-aws.deb.debian.org/debian stretch/main armhf libcc1-0 armhf 6.3.0-18+deb9u1 [25.2 kB] -Get:16 https://cdn-aws.deb.debian.org/debian stretch/main armhf libgomp1 armhf 6.3.0-18+deb9u1 [64.6 kB] -Get:17 https://cdn-aws.deb.debian.org/debian stretch/main armhf libatomic1 armhf 6.3.0-18+deb9u1 [6,010 B] -Get:18 https://cdn-aws.deb.debian.org/debian stretch/main armhf libasan3 armhf 6.3.0-18+deb9u1 [284 kB] -Get:19 https://cdn-aws.deb.debian.org/debian stretch/main armhf libubsan0 armhf 6.3.0-18+deb9u1 [92.9 kB] -Get:20 https://cdn-aws.deb.debian.org/debian stretch/main armhf libgcc-6-dev armhf 6.3.0-18+deb9u1 [531 kB] -Get:21 https://cdn-aws.deb.debian.org/debian stretch/main armhf gcc-6 armhf 6.3.0-18+deb9u1 [5,511 kB] -Get:22 https://cdn-aws.deb.debian.org/debian stretch/main armhf gcc armhf 4:6.3.0-4 [5,212 B] -Get:23 https://cdn-aws.deb.debian.org/debian stretch/main armhf libstdc++-6-dev armhf 6.3.0-18+deb9u1 [1,487 kB] -Get:24 https://cdn-aws.deb.debian.org/debian stretch/main armhf g++-6 armhf 6.3.0-18+deb9u1 [5,665 kB] -Get:25 https://cdn-aws.deb.debian.org/debian stretch/main armhf g++ armhf 4:6.3.0-4 [1,520 B] -Get:26 https://cdn-aws.deb.debian.org/debian stretch/main armhf make armhf 4.1-9.1 [290 kB] -Get:27 https://cdn-aws.deb.debian.org/debian stretch/main armhf libdpkg-perl all 1.18.25 [1,287 kB] -Get:28 https://cdn-aws.deb.debian.org/debian stretch/main armhf patch armhf 2.7.5-1+deb9u1 [106 kB] -Get:29 https://cdn-aws.deb.debian.org/debian stretch/main armhf dpkg-dev all 1.18.25 [1,595 kB] -Get:30 https://cdn-aws.deb.debian.org/debian stretch/main armhf build-essential armhf 12.3 [7,342 B] -Fetched 36.8 MB in 6s (5,292 kB/s) -Selecting previously unselected package perl-modules-5.24. -(Reading database ... 15254 files and directories currently installed.) -Preparing to unpack .../00-perl-modules-5.24_5.24.1-3+deb9u5_all.deb ... -Unpacking perl-modules-5.24 (5.24.1-3+deb9u5) ... -Selecting previously unselected package libgdbm3:armhf. -Preparing to unpack .../01-libgdbm3_1.8.3-14_armhf.deb ... -Unpacking libgdbm3:armhf (1.8.3-14) ... -Selecting previously unselected package libperl5.24:armhf. -Preparing to unpack .../02-libperl5.24_5.24.1-3+deb9u5_armhf.deb ... -Unpacking libperl5.24:armhf (5.24.1-3+deb9u5) ... -Selecting previously unselected package perl. -Preparing to unpack .../03-perl_5.24.1-3+deb9u5_armhf.deb ... -Unpacking perl (5.24.1-3+deb9u5) ... -Selecting previously unselected package xz-utils. -Preparing to unpack .../04-xz-utils_5.2.2-1.2+b1_armhf.deb ... -Unpacking xz-utils (5.2.2-1.2+b1) ... -Selecting previously unselected package binutils. -Preparing to unpack .../05-binutils_2.28-5_armhf.deb ... -Unpacking binutils (2.28-5) ... -Selecting previously unselected package libc-dev-bin. -Preparing to unpack .../06-libc-dev-bin_2.24-11+deb9u3_armhf.deb ... -Unpacking libc-dev-bin (2.24-11+deb9u3) ... -Selecting previously unselected package linux-libc-dev:armhf. -Preparing to unpack .../07-linux-libc-dev_4.9.130-2_armhf.deb ... -Unpacking linux-libc-dev:armhf (4.9.130-2) ... -Selecting previously unselected package libc6-dev:armhf. -Preparing to unpack .../08-libc6-dev_2.24-11+deb9u3_armhf.deb ... -Unpacking libc6-dev:armhf (2.24-11+deb9u3) ... -Selecting previously unselected package libisl15:armhf. -Preparing to unpack .../09-libisl15_0.18-1_armhf.deb ... -Unpacking libisl15:armhf (0.18-1) ... -Selecting previously unselected package libmpfr4:armhf. -Preparing to unpack .../10-libmpfr4_3.1.5-1_armhf.deb ... -Unpacking libmpfr4:armhf (3.1.5-1) ... -Selecting previously unselected package libmpc3:armhf. -Preparing to unpack .../11-libmpc3_1.0.3-1+b2_armhf.deb ... -Unpacking libmpc3:armhf (1.0.3-1+b2) ... -Selecting previously unselected package cpp-6. -Preparing to unpack .../12-cpp-6_6.3.0-18+deb9u1_armhf.deb ... -Unpacking cpp-6 (6.3.0-18+deb9u1) ... -Selecting previously unselected package cpp. -Preparing to unpack .../13-cpp_4%3a6.3.0-4_armhf.deb ... -Unpacking cpp (4:6.3.0-4) ... -Selecting previously unselected package libcc1-0:armhf. -Preparing to unpack .../14-libcc1-0_6.3.0-18+deb9u1_armhf.deb ... -Unpacking libcc1-0:armhf (6.3.0-18+deb9u1) ... -Selecting previously unselected package libgomp1:armhf. -Preparing to unpack .../15-libgomp1_6.3.0-18+deb9u1_armhf.deb ... -Unpacking libgomp1:armhf (6.3.0-18+deb9u1) ... -Selecting previously unselected package libatomic1:armhf. -Preparing to unpack .../16-libatomic1_6.3.0-18+deb9u1_armhf.deb ... -Unpacking libatomic1:armhf (6.3.0-18+deb9u1) ... -Selecting previously unselected package libasan3:armhf. -Preparing to unpack .../17-libasan3_6.3.0-18+deb9u1_armhf.deb ... -Unpacking libasan3:armhf (6.3.0-18+deb9u1) ... -Selecting previously unselected package libubsan0:armhf. -Preparing to unpack .../18-libubsan0_6.3.0-18+deb9u1_armhf.deb ... -Unpacking libubsan0:armhf (6.3.0-18+deb9u1) ... -Selecting previously unselected package libgcc-6-dev:armhf. -Preparing to unpack .../19-libgcc-6-dev_6.3.0-18+deb9u1_armhf.deb ... -Unpacking libgcc-6-dev:armhf (6.3.0-18+deb9u1) ... -Selecting previously unselected package gcc-6. -Preparing to unpack .../20-gcc-6_6.3.0-18+deb9u1_armhf.deb ... -Unpacking gcc-6 (6.3.0-18+deb9u1) ... -Selecting previously unselected package gcc. -Preparing to unpack .../21-gcc_4%3a6.3.0-4_armhf.deb ... -Unpacking gcc (4:6.3.0-4) ... -Selecting previously unselected package libstdc++-6-dev:armhf. -Preparing to unpack .../22-libstdc++-6-dev_6.3.0-18+deb9u1_armhf.deb ... -Unpacking libstdc++-6-dev:armhf (6.3.0-18+deb9u1) ... -Selecting previously unselected package g++-6. -Preparing to unpack .../23-g++-6_6.3.0-18+deb9u1_armhf.deb ... -Unpacking g++-6 (6.3.0-18+deb9u1) ... -Selecting previously unselected package g++. -Preparing to unpack .../24-g++_4%3a6.3.0-4_armhf.deb ... -Unpacking g++ (4:6.3.0-4) ... -Selecting previously unselected package make. -Preparing to unpack .../25-make_4.1-9.1_armhf.deb ... -Unpacking make (4.1-9.1) ... -Selecting previously unselected package libdpkg-perl. -Preparing to unpack .../26-libdpkg-perl_1.18.25_all.deb ... -Unpacking libdpkg-perl (1.18.25) ... -Selecting previously unselected package patch. -Preparing to unpack .../27-patch_2.7.5-1+deb9u1_armhf.deb ... -Unpacking patch (2.7.5-1+deb9u1) ... -Selecting previously unselected package dpkg-dev. -Preparing to unpack .../28-dpkg-dev_1.18.25_all.deb ... -Unpacking dpkg-dev (1.18.25) ... -Selecting previously unselected package build-essential. -Preparing to unpack .../29-build-essential_12.3_armhf.deb ... -Unpacking build-essential (12.3) ... -Setting up libgomp1:armhf (6.3.0-18+deb9u1) ... -Setting up libatomic1:armhf (6.3.0-18+deb9u1) ... -Setting up perl-modules-5.24 (5.24.1-3+deb9u5) ... -Setting up libgdbm3:armhf (1.8.3-14) ... -Setting up libperl5.24:armhf (5.24.1-3+deb9u5) ... -Setting up libcc1-0:armhf (6.3.0-18+deb9u1) ... -Setting up make (4.1-9.1) ... -Setting up libasan3:armhf (6.3.0-18+deb9u1) ... -Setting up libubsan0:armhf (6.3.0-18+deb9u1) ... -Setting up linux-libc-dev:armhf (4.9.130-2) ... -Setting up perl (5.24.1-3+deb9u5) ... -update-alternatives: using /usr/bin/prename to provide /usr/bin/rename (rename) in auto mode -Setting up libisl15:armhf (0.18-1) ... -Setting up patch (2.7.5-1+deb9u1) ... -Processing triggers for libc-bin (2.24-11+deb9u3) ... -Setting up xz-utils (5.2.2-1.2+b1) ... -update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode -Setting up libmpfr4:armhf (3.1.5-1) ... -Setting up libmpc3:armhf (1.0.3-1+b2) ... -Setting up binutils (2.28-5) ... -Setting up cpp-6 (6.3.0-18+deb9u1) ... -Setting up libc-dev-bin (2.24-11+deb9u3) ... -Setting up libc6-dev:armhf (2.24-11+deb9u3) ... -Setting up cpp (4:6.3.0-4) ... -Setting up libgcc-6-dev:armhf (6.3.0-18+deb9u1) ... -Setting up libstdc++-6-dev:armhf (6.3.0-18+deb9u1) ... -Setting up libdpkg-perl (1.18.25) ... -Setting up gcc-6 (6.3.0-18+deb9u1) ... -Setting up g++-6 (6.3.0-18+deb9u1) ... -Setting up dpkg-dev (1.18.25) ... -Setting up gcc (4:6.3.0-4) ... -Setting up g++ (4:6.3.0-4) ... -update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode -Setting up build-essential (12.3) ... -Processing triggers for libc-bin (2.24-11+deb9u3) ... -Reading package lists... Done -Building dependency tree -Reading state information... Done -The following additional packages will be installed: - libpython-stdlib libpython2.7-minimal libpython2.7-stdlib python python-minimal python-pip-whl - python2.7 python2.7-minimal -Suggested packages: - python-doc python-tk python2.7-doc binfmt-support -Recommended packages: - python-all-dev python-setuptools python-wheel -The following NEW packages will be installed: - libpython-stdlib libpython2.7-minimal libpython2.7-stdlib python python-minimal python-pip - python-pip-whl python2.7 python2.7-minimal -0 upgraded, 9 newly installed, 0 to remove and 0 not upgraded. -Need to get 5,470 kB of archives. -After this operation, 17.2 MB of additional disk space will be used. -Get:1 https://cdn-aws.deb.debian.org/debian stretch/main armhf libpython2.7-minimal armhf 2.7.13-2+deb9u3 [389 kB] -Get:2 https://cdn-aws.deb.debian.org/debian stretch/main armhf python2.7-minimal armhf 2.7.13-2+deb9u3 [1,176 kB] -Get:3 https://cdn-aws.deb.debian.org/debian stretch/main armhf python-minimal armhf 2.7.13-2 [40.5 kB] -Get:4 https://cdn-aws.deb.debian.org/debian stretch/main armhf libpython2.7-stdlib armhf 2.7.13-2+deb9u3 [1,821 kB] -Get:5 https://cdn-aws.deb.debian.org/debian stretch/main armhf python2.7 armhf 2.7.13-2+deb9u3 [285 kB] -Get:6 https://cdn-aws.deb.debian.org/debian stretch/main armhf libpython-stdlib armhf 2.7.13-2 [20.0 kB] -Get:7 https://cdn-aws.deb.debian.org/debian stretch/main armhf python armhf 2.7.13-2 [154 kB] -Get:8 https://cdn-aws.deb.debian.org/debian stretch/main armhf python-pip-whl all 9.0.1-2 [1,406 kB] -Get:9 https://cdn-aws.deb.debian.org/debian stretch/main armhf python-pip all 9.0.1-2 [179 kB] -Fetched 5,470 kB in 2s (2,280 kB/s) -Selecting previously unselected package libpython2.7-minimal:armhf. -(Reading database ... 20063 files and directories currently installed.) -Preparing to unpack .../0-libpython2.7-minimal_2.7.13-2+deb9u3_armhf.deb ... -Unpacking libpython2.7-minimal:armhf (2.7.13-2+deb9u3) ... -Selecting previously unselected package python2.7-minimal. -Preparing to unpack .../1-python2.7-minimal_2.7.13-2+deb9u3_armhf.deb ... -Unpacking python2.7-minimal (2.7.13-2+deb9u3) ... -Selecting previously unselected package python-minimal. -Preparing to unpack .../2-python-minimal_2.7.13-2_armhf.deb ... -Unpacking python-minimal (2.7.13-2) ... -Selecting previously unselected package libpython2.7-stdlib:armhf. -Preparing to unpack .../3-libpython2.7-stdlib_2.7.13-2+deb9u3_armhf.deb ... -Unpacking libpython2.7-stdlib:armhf (2.7.13-2+deb9u3) ... -Selecting previously unselected package python2.7. -Preparing to unpack .../4-python2.7_2.7.13-2+deb9u3_armhf.deb ... -Unpacking python2.7 (2.7.13-2+deb9u3) ... -Selecting previously unselected package libpython-stdlib:armhf. -Preparing to unpack .../5-libpython-stdlib_2.7.13-2_armhf.deb ... -Unpacking libpython-stdlib:armhf (2.7.13-2) ... -Setting up libpython2.7-minimal:armhf (2.7.13-2+deb9u3) ... -Setting up python2.7-minimal (2.7.13-2+deb9u3) ... -Linking and byte-compiling packages for runtime python2.7... -Setting up python-minimal (2.7.13-2) ... -Selecting previously unselected package python. -(Reading database ... 20811 files and directories currently installed.) -Preparing to unpack .../python_2.7.13-2_armhf.deb ... -Unpacking python (2.7.13-2) ... -Selecting previously unselected package python-pip-whl. -Preparing to unpack .../python-pip-whl_9.0.1-2_all.deb ... -Unpacking python-pip-whl (9.0.1-2) ... -Selecting previously unselected package python-pip. -Preparing to unpack .../python-pip_9.0.1-2_all.deb ... -Unpacking python-pip (9.0.1-2) ... -Setting up python-pip-whl (9.0.1-2) ... -Processing triggers for mime-support (3.60) ... -Setting up libpython2.7-stdlib:armhf (2.7.13-2+deb9u3) ... -Setting up python2.7 (2.7.13-2+deb9u3) ... -Setting up libpython-stdlib:armhf (2.7.13-2) ... -Setting up python (2.7.13-2) ... -Setting up python-pip (9.0.1-2) ... -Reading package lists... Done -Building dependency tree -Reading state information... Done -Suggested packages: - openssh-client openssh-server -The following NEW packages will be installed: - rsync -0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. -Need to get 380 kB of archives. -After this operation, 573 kB of additional disk space will be used. -Get:1 https://cdn-aws.deb.debian.org/debian stretch/main armhf rsync armhf 3.1.2-1+deb9u1 [380 kB] -Fetched 380 kB in 0s (495 kB/s) -Selecting previously unselected package rsync. -(Reading database ... 21001 files and directories currently installed.) -Preparing to unpack .../rsync_3.1.2-1+deb9u1_armhf.deb ... -Unpacking rsync (3.1.2-1+deb9u1) ... -Setting up rsync (3.1.2-1+deb9u1) ... -Created symlink /etc/systemd/system/multi-user.target.wants/rsync.service → /lib/systemd/system/rsync.service. -Processing triggers for systemd (232-25+deb9u8) ... -Reading package lists... Done -Building dependency tree -Reading state information... Done -The following NEW packages will be installed: - net-tools -0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. -Need to get 234 kB of archives. -After this operation, 797 kB of additional disk space will be used. -Get:1 https://cdn-aws.deb.debian.org/debian stretch/main armhf net-tools armhf 1.60+git20161116.90da8a0-1 [234 kB] -Fetched 234 kB in 1s (205 kB/s) -Selecting previously unselected package net-tools. -(Reading database ... 21032 files and directories currently installed.) -Preparing to unpack .../net-tools_1.60+git20161116.90da8a0-1_armhf.deb ... -Unpacking net-tools (1.60+git20161116.90da8a0-1) ... -Setting up net-tools (1.60+git20161116.90da8a0-1) ... -Reading package lists... Done -Building dependency tree -Reading state information... Done -The following NEW packages will be installed: - xxd -0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. -Need to get 131 kB of archives. -After this operation, 166 kB of additional disk space will be used. -Get:1 https://cdn-aws.deb.debian.org/debian stretch/main armhf xxd armhf 2:8.0.0197-4+deb9u1 [131 kB] -Fetched 131 kB in 0s (167 kB/s) -Selecting previously unselected package xxd. -(Reading database ... 21088 files and directories currently installed.) -Preparing to unpack .../xxd_2%3a8.0.0197-4+deb9u1_armhf.deb ... -Unpacking xxd (2:8.0.0197-4+deb9u1) ... -Setting up xxd (2:8.0.0197-4+deb9u1) ... -Collecting setuptools - Downloading https://files.pythonhosted.org/packages/82/9c/e812a9838feaf76cd9a960ca4ced3be7f2db31e473677a621d006e128db2/setuptools-40.7.3-py2.py3-none-any.whl (574kB) - 100% |████████████████████████████████| 583kB 695kB/s -Installing collected packages: setuptools -Successfully installed setuptools-40.7.3 -Reading package lists... Done -Building dependency tree -Reading state information... Done -The following additional packages will be installed: - netcat-traditional -The following NEW packages will be installed: - netcat netcat-traditional -0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded. -Need to get 74.7 kB of archives. -After this operation, 164 kB of additional disk space will be used. -Get:1 https://cdn-aws.deb.debian.org/debian stretch/main armhf netcat-traditional armhf 1.10-41+b1 [65.7 kB] -Get:2 https://cdn-aws.deb.debian.org/debian stretch/main armhf netcat all 1.10-41 [8,962 B] -Fetched 74.7 kB in 1s (48.7 kB/s) -Selecting previously unselected package netcat-traditional. -(Reading database ... 21099 files and directories currently installed.) -Preparing to unpack .../netcat-traditional_1.10-41+b1_armhf.deb ... -Unpacking netcat-traditional (1.10-41+b1) ... -Selecting previously unselected package netcat. -Preparing to unpack .../netcat_1.10-41_all.deb ... -Unpacking netcat (1.10-41) ... -Setting up netcat-traditional (1.10-41+b1) ... -update-alternatives: using /bin/nc.traditional to provide /bin/nc (nc) in auto mode -Setting up netcat (1.10-41) ... -Reading package lists... Done -Building dependency tree -Reading state information... Done -The following additional packages will be installed: - libbsd0 libedit2 -Suggested packages: - keychain libpam-ssh monkeysphere ssh-askpass -Recommended packages: - xauth -The following NEW packages will be installed: - libbsd0 libedit2 openssh-client -0 upgraded, 3 newly installed, 0 to remove and 0 not upgraded. -Need to get 900 kB of archives. -After this operation, 3,993 kB of additional disk space will be used. -Get:1 https://cdn-aws.deb.debian.org/debian stretch/main armhf libbsd0 armhf 0.8.3-1 [89.6 kB] -Get:2 https://cdn-aws.deb.debian.org/debian stretch/main armhf libedit2 armhf 3.1-20160903-3 [69.9 kB] -Get:3 https://cdn-aws.deb.debian.org/debian stretch/main armhf openssh-client armhf 1:7.4p1-10+deb9u4 [740 kB] -Fetched 900 kB in 1s (716 kB/s) -Selecting previously unselected package libbsd0:armhf. -(Reading database ... 21141 files and directories currently installed.) -Preparing to unpack .../libbsd0_0.8.3-1_armhf.deb ... -Unpacking libbsd0:armhf (0.8.3-1) ... -Selecting previously unselected package libedit2:armhf. -Preparing to unpack .../libedit2_3.1-20160903-3_armhf.deb ... -Unpacking libedit2:armhf (3.1-20160903-3) ... -Selecting previously unselected package openssh-client. -Preparing to unpack .../openssh-client_1%3a7.4p1-10+deb9u4_armhf.deb ... -Unpacking openssh-client (1:7.4p1-10+deb9u4) ... -Setting up libbsd0:armhf (0.8.3-1) ... -Processing triggers for libc-bin (2.24-11+deb9u3) ... -Setting up libedit2:armhf (3.1-20160903-3) ... -Setting up openssh-client (1:7.4p1-10+deb9u4) ... -Processing triggers for libc-bin (2.24-11+deb9u3) ... -Reading package lists... Done -Building dependency tree -Reading state information... Done -The following NEW packages will be installed: - openssh-sftp-server -0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. -Need to get 35.2 kB of archives. -After this operation, 74.8 kB of additional disk space will be used. -Get:1 https://cdn-aws.deb.debian.org/debian stretch/main armhf openssh-sftp-server armhf 1:7.4p1-10+deb9u4 [35.2 kB] -Fetched 35.2 kB in 1s (35.2 kB/s) -Selecting previously unselected package openssh-sftp-server. -(Reading database ... 21211 files and directories currently installed.) -Preparing to unpack .../openssh-sftp-server_1%3a7.4p1-10+deb9u4_armhf.deb ... -Unpacking openssh-sftp-server (1:7.4p1-10+deb9u4) ... -Setting up openssh-sftp-server (1:7.4p1-10+deb9u4) ... - -*** CONFIG *** -sudo: raspi-config: command not found -bash: /etc/systemd/system/getty@tty1.service.d/autologin.conf: No such file or directory -bash: /etc/systemd/system/getty@tty1.service.d/autologin.conf: No such file or directory -bash: /etc/systemd/system/getty@tty1.service.d/autologin.conf: No such file or directory - -*** SOFTWARE UPDATE *** -Reading package lists... Done -Building dependency tree -Reading state information... Done -bash-completion is already the newest version (1:2.1-4.3). -curl is already the newest version (7.52.1-5+deb9u8). -htop is already the newest version (2.0.2-1). -The following additional packages will be installed: - dc git-man liberror-perl libjq1 libonig4 -Suggested packages: - gettext-base git-daemon-run | git-daemon-sysvinit git-doc git-el git-email git-gui gitk gitweb - git-arch git-cvs git-mediawiki git-svn -Recommended packages: - less -The following NEW packages will be installed: - dc dphys-swapfile git git-man jq liberror-perl libjq1 libonig4 -0 upgraded, 8 newly installed, 0 to remove and 0 not upgraded. -Need to get 5,514 kB of archives. -After this operation, 23.4 MB of additional disk space will be used. -Get:1 https://cdn-aws.deb.debian.org/debian stretch/main armhf liberror-perl all 0.17024-1 [26.9 kB] -Get:2 https://cdn-aws.deb.debian.org/debian stretch/main armhf git-man all 1:2.11.0-3+deb9u4 [1,433 kB] -Get:3 https://cdn-aws.deb.debian.org/debian stretch/main armhf git armhf 1:2.11.0-3+deb9u4 [3,661 kB] -Get:4 https://cdn-aws.deb.debian.org/debian stretch/main armhf dc armhf 1.06.95-9+b3 [64.8 kB] -Get:5 https://cdn-aws.deb.debian.org/debian stretch/main armhf dphys-swapfile all 20100506-3 [19.7 kB] -Get:6 https://cdn-aws.deb.debian.org/debian stretch/main armhf libonig4 armhf 6.1.3-2 [128 kB] -Get:7 https://cdn-aws.deb.debian.org/debian stretch/main armhf libjq1 armhf 1.5+dfsg-1.3 [122 kB] -Get:8 https://cdn-aws.deb.debian.org/debian stretch/main armhf jq armhf 1.5+dfsg-1.3 [59.2 kB] -Fetched 5,514 kB in 2s (2,743 kB/s) -Selecting previously unselected package liberror-perl. -(Reading database ... 21215 files and directories currently installed.) -Preparing to unpack .../0-liberror-perl_0.17024-1_all.deb ... -Unpacking liberror-perl (0.17024-1) ... -Selecting previously unselected package git-man. -Preparing to unpack .../1-git-man_1%3a2.11.0-3+deb9u4_all.deb ... -Unpacking git-man (1:2.11.0-3+deb9u4) ... -Selecting previously unselected package git. -Preparing to unpack .../2-git_1%3a2.11.0-3+deb9u4_armhf.deb ... -Unpacking git (1:2.11.0-3+deb9u4) ... -Selecting previously unselected package dc. -Preparing to unpack .../3-dc_1.06.95-9+b3_armhf.deb ... -Unpacking dc (1.06.95-9+b3) ... -Selecting previously unselected package dphys-swapfile. -Preparing to unpack .../4-dphys-swapfile_20100506-3_all.deb ... -Unpacking dphys-swapfile (20100506-3) ... -Selecting previously unselected package libonig4:armhf. -Preparing to unpack .../5-libonig4_6.1.3-2_armhf.deb ... -Unpacking libonig4:armhf (6.1.3-2) ... -Selecting previously unselected package libjq1:armhf. -Preparing to unpack .../6-libjq1_1.5+dfsg-1.3_armhf.deb ... -Unpacking libjq1:armhf (1.5+dfsg-1.3) ... -Selecting previously unselected package jq. -Preparing to unpack .../7-jq_1.5+dfsg-1.3_armhf.deb ... -Unpacking jq (1.5+dfsg-1.3) ... -Setting up git-man (1:2.11.0-3+deb9u4) ... -Setting up liberror-perl (0.17024-1) ... -Setting up libonig4:armhf (6.1.3-2) ... -Setting up libjq1:armhf (1.5+dfsg-1.3) ... -Processing triggers for libc-bin (2.24-11+deb9u3) ... -Setting up dc (1.06.95-9+b3) ... -Processing triggers for systemd (232-25+deb9u8) ... -Setting up git (1:2.11.0-3+deb9u4) ... -Setting up jq (1.5+dfsg-1.3) ... -Setting up dphys-swapfile (20100506-3) ... -Processing triggers for systemd (232-25+deb9u8) ... -Reading package lists... Done -Building dependency tree -Reading state information... Done -Suggested packages: - vnstati -The following NEW packages will be installed: - vnstat -0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. -Need to get 78.6 kB of archives. -After this operation, 206 kB of additional disk space will be used. -Get:1 https://cdn-aws.deb.debian.org/debian stretch/main armhf vnstat armhf 1.15-2 [78.6 kB] -Fetched 78.6 kB in 1s (56.9 kB/s) -Selecting previously unselected package vnstat. -(Reading database ... 22140 files and directories currently installed.) -Preparing to unpack .../vnstat_1.15-2_armhf.deb ... -Unpacking vnstat (1.15-2) ... -Setting up vnstat (1.15-2) ... -Created symlink /etc/systemd/system/multi-user.target.wants/vnstat.service → /lib/systemd/system/vnstat.service. -Processing triggers for systemd (232-25+deb9u8) ... - -*** ADDING MAIN USER admin *** -Adding user `admin' ... -Adding new group `admin' (1001) ... -Adding new user `admin' (1001) with group `admin' ... -Creating home directory `/home/admin' ... -Copying files from `/etc/skel' ... -Adding user `admin' to group `sudo' ... -Adding user admin to group sudo -Done. -%sudo ALL=(ALL) NOPASSWD:ALL -*** ADDING SERVICE USER bitcoin -Adding user `bitcoin' ... -Adding new group `bitcoin' (1002) ... -Adding new user `bitcoin' (1002) with group `bitcoin' ... -Creating home directory `/home/bitcoin' ... -Copying files from `/etc/skel' ... - -*** SWAP FILE *** - -*** INCREASE OPEN FILE LIMIT *** - -*** BITCOIN *** ---2019-02-04 10:05:05-- https://bitcoin.org/bin/bitcoin-core-0.17.0.1/bitcoin-0.17.0.1-arm-linux-gnueabihf.tar.gz -Resolving bitcoin.org (bitcoin.org)... 138.68.248.245 -Connecting to bitcoin.org (bitcoin.org)|138.68.248.245|:443... connected. -HTTP request sent, awaiting response... 200 OK -Length: 24306145 (23M) [application/octet-stream] -Saving to: ‘bitcoin-0.17.0.1-arm-linux-gnueabihf.tar.gz’ - -bitcoin-0.17.0.1-arm-linu 100%[====================================>] 23.18M 202KB/s in 1m 59s - -2019-02-04 10:07:04 (200 KB/s) - ‘bitcoin-0.17.0.1-arm-linux-gnueabihf.tar.gz’ saved [24306145/24306145] - ---2019-02-04 10:07:05-- https://bitcoin.org/laanwj-releases.asc -Resolving bitcoin.org (bitcoin.org)... 138.68.248.245 -Connecting to bitcoin.org (bitcoin.org)|138.68.248.245|:443... connected. -HTTP request sent, awaiting response... 200 OK -Length: 17940 (18K) [application/octet-stream] -Saving to: ‘laanwj-releases.asc’ - -laanwj-releases.asc 100%[====================================>] 17.52K --.-KB/s in 0.001s - -2019-02-04 10:07:06 (19.1 MB/s) - ‘laanwj-releases.asc’ saved [17940/17940] - -key 90C8019E36C2E964: -25 signatures not checked due to missing keys -gpg: /root/.gnupg/trustdb.gpg: trustdb created -gpg: key 90C8019E36C2E964: public key "Wladimir J. van der Laan (Bitcoin Core binary release signing key) " imported -gpg: Total number processed: 1 -gpg: imported: 1 -gpg: no ultimately trusted keys found ---2019-02-04 10:07:07-- https://bitcoin.org/bin/bitcoin-core-0.17.0.1/SHA256SUMS.asc -Resolving bitcoin.org (bitcoin.org)... 138.68.248.245 -Connecting to bitcoin.org (bitcoin.org)|138.68.248.245|:443... connected. -HTTP request sent, awaiting response... 200 OK -Length: 1979 (1.9K) [application/octet-stream] -Saving to: ‘SHA256SUMS.asc’ - -SHA256SUMS.asc 100%[====================================>] 1.93K --.-KB/s in 0.006s - -2019-02-04 10:07:08 (303 KB/s) - ‘SHA256SUMS.asc’ saved [1979/1979] - -goodSignature(1) -correctKey(1) -bitcoin-0.17.0/ -bitcoin-0.17.0/bin/ -bitcoin-0.17.0/bin/bitcoin-cli -bitcoin-0.17.0/bin/bitcoind -bitcoin-0.17.0/bin/bitcoin-qt -bitcoin-0.17.0/bin/bitcoin-tx -bitcoin-0.17.0/bin/test_bitcoin -bitcoin-0.17.0/include/ -bitcoin-0.17.0/include/bitcoinconsensus.h -bitcoin-0.17.0/lib/ -bitcoin-0.17.0/lib/libbitcoinconsensus.so -bitcoin-0.17.0/lib/libbitcoinconsensus.so.0 -bitcoin-0.17.0/lib/libbitcoinconsensus.so.0.0.0 -bitcoin-0.17.0/share/ -bitcoin-0.17.0/share/man/ -bitcoin-0.17.0/share/man/man1/ -bitcoin-0.17.0/share/man/man1/bitcoin-cli.1 -bitcoin-0.17.0/share/man/man1/bitcoind.1 -bitcoin-0.17.0/share/man/man1/bitcoin-qt.1 -bitcoin-0.17.0/share/man/man1/bitcoin-tx.1 - -*** LITECOIN *** ---2019-02-04 10:07:13-- https://download.litecoin.org/litecoin-0.16.3/linux/litecoin-0.16.3-arm-linux-gnueabihf.tar.gz -Resolving download.litecoin.org (download.litecoin.org)... 104.27.4.55, 104.27.5.55 -Connecting to download.litecoin.org (download.litecoin.org)|104.27.4.55|:443... connected. -HTTP request sent, awaiting response... 200 OK -Length: 9568024 (9.1M) [application/octet-stream] -Saving to: ‘litecoin-0.16.3-arm-linux-gnueabihf.tar.gz’ - -litecoin-0.16.3-arm-linux 100%[====================================>] 9.12M 5.23MB/s in 1.7s - -2019-02-04 10:07:15 (5.23 MB/s) - ‘litecoin-0.16.3-arm-linux-gnueabihf.tar.gz’ saved [9568024/9568024] - -litecoin-0.16.3/ -litecoin-0.16.3/bin/ -litecoin-0.16.3/bin/litecoin-cli -litecoin-0.16.3/bin/litecoind -litecoin-0.16.3/bin/litecoin-tx -litecoin-0.16.3/bin/test_litecoin -litecoin-0.16.3/share/ -litecoin-0.16.3/share/man/ -litecoin-0.16.3/share/man/man1/ -litecoin-0.16.3/share/man/man1/litecoin-cli.1 -litecoin-0.16.3/share/man/man1/litecoind.1 -litecoin-0.16.3/share/man/man1/litecoin-tx.1 - -*** LND *** ---2019-02-04 10:07:16-- https://github.com/lightningnetwork/lnd/releases/download/v0.5.1-beta/lnd-linux-armv7-v0.5.1-beta.tar.gz -Resolving github.com (github.com)... 140.82.118.3, 140.82.118.4 -Connecting to github.com (github.com)|140.82.118.3|:443... connected. -HTTP request sent, awaiting response... 302 Found -Location: https://github-production-release-asset-2e65be.s3.amazonaws.com/49765480/fd08b500-f311-11e8-8398-419cca1df903?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20190204%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20190204T100716Z&X-Amz-Expires=300&X-Amz-Signature=55bf712cd42a2425f68d2a08b5a05c37303ec6334d4cbdd0941b53304aa1fc8d&X-Amz-SignedHeaders=host&actor_id=0&response-content-disposition=attachment%3B%20filename%3Dlnd-linux-armv7-v0.5.1-beta.tar.gz&response-content-type=application%2Foctet-stream [following] ---2019-02-04 10:07:16-- https://github-production-release-asset-2e65be.s3.amazonaws.com/49765480/fd08b500-f311-11e8-8398-419cca1df903?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20190204%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20190204T100716Z&X-Amz-Expires=300&X-Amz-Signature=55bf712cd42a2425f68d2a08b5a05c37303ec6334d4cbdd0941b53304aa1fc8d&X-Amz-SignedHeaders=host&actor_id=0&response-content-disposition=attachment%3B%20filename%3Dlnd-linux-armv7-v0.5.1-beta.tar.gz&response-content-type=application%2Foctet-stream -Resolving github-production-release-asset-2e65be.s3.amazonaws.com (github-production-release-asset-2e65be.s3.amazonaws.com)... 52.216.108.139 -Connecting to github-production-release-asset-2e65be.s3.amazonaws.com (github-production-release-asset-2e65be.s3.amazonaws.com)|52.216.108.139|:443... connected. -HTTP request sent, awaiting response... 200 OK -Length: 19198203 (18M) [application/octet-stream] -Saving to: ‘lnd-linux-armv7-v0.5.1-beta.tar.gz’ - -lnd-linux-armv7-v0.5.1-be 100%[====================================>] 18.31M 5.28MB/s in 4.9s - -2019-02-04 10:07:22 (3.73 MB/s) - ‘lnd-linux-armv7-v0.5.1-beta.tar.gz’ saved [19198203/19198203] - ---2019-02-04 10:07:22-- https://github.com/lightningnetwork/lnd/releases/download/v0.5.1-beta/manifest-v0.5.1-beta.txt -Resolving github.com (github.com)... 140.82.118.4, 140.82.118.3 -Connecting to github.com (github.com)|140.82.118.4|:443... connected. -HTTP request sent, awaiting response... 302 Found -Location: https://github-production-release-asset-2e65be.s3.amazonaws.com/49765480/fe39e200-f311-11e8-9178-5d26551a454e?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20190204%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20190204T100725Z&X-Amz-Expires=300&X-Amz-Signature=838d29594d525c1ab751e105b36d4e7838cfe37b2ee5c10e9ddd8582691beb58&X-Amz-SignedHeaders=host&actor_id=0&response-content-disposition=attachment%3B%20filename%3Dmanifest-v0.5.1-beta.txt&response-content-type=application%2Foctet-stream [following] ---2019-02-04 10:07:25-- https://github-production-release-asset-2e65be.s3.amazonaws.com/49765480/fe39e200-f311-11e8-9178-5d26551a454e?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20190204%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20190204T100725Z&X-Amz-Expires=300&X-Amz-Signature=838d29594d525c1ab751e105b36d4e7838cfe37b2ee5c10e9ddd8582691beb58&X-Amz-SignedHeaders=host&actor_id=0&response-content-disposition=attachment%3B%20filename%3Dmanifest-v0.5.1-beta.txt&response-content-type=application%2Foctet-stream -Resolving github-production-release-asset-2e65be.s3.amazonaws.com (github-production-release-asset-2e65be.s3.amazonaws.com)... 52.216.238.51 -Connecting to github-production-release-asset-2e65be.s3.amazonaws.com (github-production-release-asset-2e65be.s3.amazonaws.com)|52.216.238.51|:443... connected. -HTTP request sent, awaiting response... 200 OK -Length: 2026 (2.0K) [application/octet-stream] -Saving to: ‘manifest-v0.5.1-beta.txt’ - -manifest-v0.5.1-beta.txt 100%[====================================>] 1.98K --.-KB/s in 0.002s - -2019-02-04 10:07:26 (1007 KB/s) - ‘manifest-v0.5.1-beta.txt’ saved [2026/2026] - ---2019-02-04 10:07:26-- https://github.com/lightningnetwork/lnd/releases/download/v0.5.1-beta/manifest-v0.5.1-beta.txt.sig -Resolving github.com (github.com)... 140.82.118.3, 140.82.118.4 -Connecting to github.com (github.com)|140.82.118.3|:443... connected. -HTTP request sent, awaiting response... 302 Found -Location: https://github-production-release-asset-2e65be.s3.amazonaws.com/49765480/fe39e200-f311-11e8-8fb5-c3aa7d97cb88?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20190204%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20190204T100726Z&X-Amz-Expires=300&X-Amz-Signature=ce7ec6f0a9944f66f01b5cac9babfc21c8ffb52fb85b90a78b30a76115661da5&X-Amz-SignedHeaders=host&actor_id=0&response-content-disposition=attachment%3B%20filename%3Dmanifest-v0.5.1-beta.txt.sig&response-content-type=application%2Foctet-stream [following] ---2019-02-04 10:07:26-- https://github-production-release-asset-2e65be.s3.amazonaws.com/49765480/fe39e200-f311-11e8-8fb5-c3aa7d97cb88?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20190204%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20190204T100726Z&X-Amz-Expires=300&X-Amz-Signature=ce7ec6f0a9944f66f01b5cac9babfc21c8ffb52fb85b90a78b30a76115661da5&X-Amz-SignedHeaders=host&actor_id=0&response-content-disposition=attachment%3B%20filename%3Dmanifest-v0.5.1-beta.txt.sig&response-content-type=application%2Foctet-stream -Resolving github-production-release-asset-2e65be.s3.amazonaws.com (github-production-release-asset-2e65be.s3.amazonaws.com)... 52.216.238.51 -Connecting to github-production-release-asset-2e65be.s3.amazonaws.com (github-production-release-asset-2e65be.s3.amazonaws.com)|52.216.238.51|:443... connected. -HTTP request sent, awaiting response... 200 OK -Length: 566 [application/octet-stream] -Saving to: ‘manifest-v0.5.1-beta.txt.sig’ - -manifest-v0.5.1-beta.txt. 100%[====================================>] 566 --.-KB/s in 0.001s - -2019-02-04 10:07:27 (935 KB/s) - ‘manifest-v0.5.1-beta.txt.sig’ saved [566/566] - ---2019-02-04 10:07:27-- https://keybase.io/roasbeef/pgp_keys.asc -Resolving keybase.io (keybase.io)... 52.55.1.130, 52.6.136.121 -Connecting to keybase.io (keybase.io)|52.55.1.130|:443... connected. -HTTP request sent, awaiting response... 200 OK -Length: 6909 (6.7K) [text/plain] -Saving to: ‘pgp_keys.asc’ - -pgp_keys.asc 100%[====================================>] 6.75K --.-KB/s in 0s - -2019-02-04 10:07:28 (59.0 MB/s) - ‘pgp_keys.asc’ saved [6909/6909] - -gpg: key 8B80CD2BB8BD8132: public key "Olaoluwa Osuntokun " imported -gpg: Total number processed: 1 -gpg: imported: 1 -goodSignature(1) -correctKey(1) -*** Installing Go *** ---2019-02-04 10:07:35-- https://storage.googleapis.com/golang/go1.11.linux-armv6l.tar.gz -Resolving storage.googleapis.com (storage.googleapis.com)... 216.58.206.80, 2a00:1450:4009:809::2010 -Connecting to storage.googleapis.com (storage.googleapis.com)|216.58.206.80|:443... connected. -HTTP request sent, awaiting response... 200 OK -Length: 101718267 (97M) [application/octet-stream] -Saving to: ‘go1.11.linux-armv6l.tar.gz’ - -go1.11.linux-armv6l.tar.g 100%[====================================>] 97.01M 8.63MB/s in 11s - -2019-02-04 10:07:47 (8.86 MB/s) - ‘go1.11.linux-armv6l.tar.gz’ saved [101718267/101718267] - - - -*** RASPIBLITZ EXTRAS *** -Reading package lists... Done -Building dependency tree -Reading state information... Done -bc is already the newest version (1.06.95-9+b3). -The following NEW packages will be installed: - dialog -0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. -Need to get 240 kB of archives. -After this operation, 883 kB of additional disk space will be used. -Get:1 https://cdn-aws.deb.debian.org/debian stretch/main armhf dialog armhf 1.3-20160828-2 [240 kB] -Fetched 240 kB in 0s (248 kB/s) -Selecting previously unselected package dialog. -(Reading database ... 22155 files and directories currently installed.) -Preparing to unpack .../dialog_1.3-20160828-2_armhf.deb ... -Unpacking dialog (1.3-20160828-2) ... -Setting up dialog (1.3-20160828-2) ... -Reading package lists... Done -Building dependency tree -Reading state information... Done -The following additional packages will be installed: - fuse libfuse2 -Recommended packages: - exfat-utils -The following NEW packages will be installed: - exfat-fuse fuse libfuse2 -0 upgraded, 3 newly installed, 0 to remove and 0 not upgraded. -Need to get 214 kB of archives. -After this operation, 426 kB of additional disk space will be used. -Get:1 https://cdn-aws.deb.debian.org/debian stretch/main armhf libfuse2 armhf 2.9.7-1+deb9u2 [116 kB] -Get:2 https://cdn-aws.deb.debian.org/debian stretch/main armhf fuse armhf 2.9.7-1+deb9u2 [70.3 kB] -Get:3 https://cdn-aws.deb.debian.org/debian stretch/main armhf exfat-fuse armhf 1.2.5-2 [27.6 kB] -Fetched 214 kB in 1s (148 kB/s) -Selecting previously unselected package libfuse2:armhf. -(Reading database ... 22313 files and directories currently installed.) -Preparing to unpack .../libfuse2_2.9.7-1+deb9u2_armhf.deb ... -Unpacking libfuse2:armhf (2.9.7-1+deb9u2) ... -Selecting previously unselected package fuse. -Preparing to unpack .../fuse_2.9.7-1+deb9u2_armhf.deb ... -Unpacking fuse (2.9.7-1+deb9u2) ... -Selecting previously unselected package exfat-fuse. -Preparing to unpack .../exfat-fuse_1.2.5-2_armhf.deb ... -Unpacking exfat-fuse (1.2.5-2) ... -Setting up libfuse2:armhf (2.9.7-1+deb9u2) ... -Processing triggers for libc-bin (2.24-11+deb9u3) ... -Setting up fuse (2.9.7-1+deb9u2) ... -update-initramfs: deferring update (trigger activated) -Setting up exfat-fuse (1.2.5-2) ... -Processing triggers for initramfs-tools (0.130) ... -ln: failed to create hard link '/boot/initrd.img-4.14.66+.dpkg-bak' => '/boot/initrd.img-4.14.66+': Operation not permitted -update-initramfs: Generating /boot/initrd.img-4.14.66+ -Image Name: uInitrd -Created: Mon Feb 4 10:08:42 2019 -Image Type: ARM Linux RAMDisk Image (uncompressed) -Data Size: 5715880 Bytes = 5581.91 kB = 5.45 MB -Load Address: 00000000 -Entry Point: 00000000 -Reading package lists... Done -Building dependency tree -Reading state information... Done -The following additional packages will be installed: - libevent-2.0-5 libminiupnpc10 libnatpmp1 transmission-common -Suggested packages: - minissdpd natpmp-utils transmission-daemon transmission-gtk -Recommended packages: - minissdpd -The following NEW packages will be installed: - libevent-2.0-5 libminiupnpc10 libnatpmp1 transmission-cli transmission-common -0 upgraded, 5 newly installed, 0 to remove and 0 not upgraded. -Need to get 776 kB of archives. -After this operation, 2,814 kB of additional disk space will be used. -Get:1 https://cdn-aws.deb.debian.org/debian stretch/main armhf libevent-2.0-5 armhf 2.0.21-stable-3 [134 kB] -Get:2 https://cdn-aws.deb.debian.org/debian stretch/main armhf libminiupnpc10 armhf 1.9.20140610-4 [25.7 kB] -Get:3 https://cdn-aws.deb.debian.org/debian stretch/main armhf libnatpmp1 armhf 20110808-4+b1 [8,338 B] -Get:4 https://cdn-aws.deb.debian.org/debian stretch/main armhf transmission-common all 2.92-2+deb9u1 [288 kB] -Get:5 https://cdn-aws.deb.debian.org/debian stretch/main armhf transmission-cli armhf 2.92-2+deb9u1 [320 kB] -Fetched 776 kB in 0s (823 kB/s) -Selecting previously unselected package libevent-2.0-5:armhf. -(Reading database ... 22348 files and directories currently installed.) -Preparing to unpack .../libevent-2.0-5_2.0.21-stable-3_armhf.deb ... -Unpacking libevent-2.0-5:armhf (2.0.21-stable-3) ... -Selecting previously unselected package libminiupnpc10:armhf. -Preparing to unpack .../libminiupnpc10_1.9.20140610-4_armhf.deb ... -Unpacking libminiupnpc10:armhf (1.9.20140610-4) ... -Selecting previously unselected package libnatpmp1:armhf. -Preparing to unpack .../libnatpmp1_20110808-4+b1_armhf.deb ... -Unpacking libnatpmp1:armhf (20110808-4+b1) ... -Selecting previously unselected package transmission-common. -Preparing to unpack .../transmission-common_2.92-2+deb9u1_all.deb ... -Unpacking transmission-common (2.92-2+deb9u1) ... -Selecting previously unselected package transmission-cli. -Preparing to unpack .../transmission-cli_2.92-2+deb9u1_armhf.deb ... -Unpacking transmission-cli (2.92-2+deb9u1) ... -Setting up libminiupnpc10:armhf (1.9.20140610-4) ... -Setting up libnatpmp1:armhf (20110808-4+b1) ... -Setting up transmission-common (2.92-2+deb9u1) ... -Processing triggers for libc-bin (2.24-11+deb9u3) ... -Setting up libevent-2.0-5:armhf (2.0.21-stable-3) ... -Setting up transmission-cli (2.92-2+deb9u1) ... -Processing triggers for libc-bin (2.24-11+deb9u3) ... -Reading package lists... Done -Building dependency tree -Reading state information... Done -The following additional packages will be installed: - libtorrent19 libxmlrpc-core-c3 -Suggested packages: - screen | dtach -The following NEW packages will be installed: - libtorrent19 libxmlrpc-core-c3 rtorrent -0 upgraded, 3 newly installed, 0 to remove and 0 not upgraded. -Need to get 891 kB of archives. -After this operation, 2,281 kB of additional disk space will be used. -Get:1 https://cdn-aws.deb.debian.org/debian stretch/main armhf libxmlrpc-core-c3 armhf 1.33.14-4 [128 kB] -Get:2 https://cdn-aws.deb.debian.org/debian stretch/main armhf libtorrent19 armhf 0.13.6-1.1 [345 kB] -Get:3 https://cdn-aws.deb.debian.org/debian stretch/main armhf rtorrent armhf 0.9.6-2+b1 [418 kB] -Fetched 891 kB in 1s (630 kB/s) -Selecting previously unselected package libxmlrpc-core-c3. -(Reading database ... 22489 files and directories currently installed.) -Preparing to unpack .../libxmlrpc-core-c3_1.33.14-4_armhf.deb ... -Unpacking libxmlrpc-core-c3 (1.33.14-4) ... -Selecting previously unselected package libtorrent19:armhf. -Preparing to unpack .../libtorrent19_0.13.6-1.1_armhf.deb ... -Unpacking libtorrent19:armhf (0.13.6-1.1) ... -Selecting previously unselected package rtorrent. -Preparing to unpack .../rtorrent_0.9.6-2+b1_armhf.deb ... -Unpacking rtorrent (0.9.6-2+b1) ... -Setting up libtorrent19:armhf (0.13.6-1.1) ... -Setting up libxmlrpc-core-c3 (1.33.14-4) ... -Setting up rtorrent (0.9.6-2+b1) ... -Processing triggers for libc-bin (2.24-11+deb9u3) ... -Reading package lists... Done -Building dependency tree -Reading state information... Done -Suggested packages: - byobu | screenie | iselect ncurses-term -The following NEW packages will be installed: - screen -0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. -Need to get 568 kB of archives. -After this operation, 860 kB of additional disk space will be used. -Get:1 https://cdn-aws.deb.debian.org/debian stretch/main armhf screen armhf 4.5.0-6 [568 kB] -Fetched 568 kB in 0s (677 kB/s) -Selecting previously unselected package screen. -(Reading database ... 22526 files and directories currently installed.) -Preparing to unpack .../screen_4.5.0-6_armhf.deb ... -Unpacking screen (4.5.0-6) ... -Processing triggers for systemd (232-25+deb9u8) ... -Setting up screen (4.5.0-6) ... -Processing triggers for systemd (232-25+deb9u8) ... -Cloning into 'raspiblitz'... -remote: Enumerating objects: 61, done. -remote: Counting objects: 100% (61/61), done. -remote: Compressing objects: 100% (33/33), done. -remote: Total 5134 (delta 32), reused 51 (delta 27), pack-reused 5073 -Receiving objects: 100% (5134/5134), 23.70 MiB | 5.49 MiB/s, done. -Resolving deltas: 100% (3603/3603), done. -cp: -r not specified; omitting directory '/home/admin/raspiblitz/home.admin/config.scripts' -bash: /home/pi/.bashrc: No such file or directory -bash: /home/pi/.bashrc: No such file or directory -bash: /home/pi/.bashrc: No such file or directory -bash: /home/pi/.bashrc: No such file or directory - -*** HARDENING *** -Reading package lists... Done -Building dependency tree -Reading state information... Done -Suggested packages: - mailx system-log-daemon monit -Recommended packages: - iptables whois python3-pyinotify -The following NEW packages will be installed: - fail2ban -0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. -Need to get 0 B/288 kB of archives. -After this operation, 1,321 kB of additional disk space will be used. -Selecting previously unselected package fail2ban. -(Reading database ... 22586 files and directories currently installed.) -Preparing to unpack .../fail2ban_0.9.6-2_all.deb ... -Unpacking fail2ban (0.9.6-2) ... -Setting up fail2ban (0.9.6-2) ... -Processing triggers for systemd (232-25+deb9u8) ... - -*** RASPI BOOSTRAP SERVICE *** -Created symlink /etc/systemd/system/multi-user.target.wants/bootstrap.service → /etc/systemd/system/bootstrap.service. - -*** RASPI BACKGROUND SERVICE *** -Created symlink /etc/systemd/system/multi-user.target.wants/background.service → /etc/systemd/system/background.service. -*** Adding Tor Sources to sources.list *** -deb http://deb.torproject.org/torproject.org stretch main -deb-src http://deb.torproject.org/torproject.org stretch main -OK - -*** Installing dirmngr *** -Reading package lists... Done -Building dependency tree -Reading state information... Done -dirmngr is already the newest version (2.1.18-8~deb9u3). -0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. - -*** Fetching GPG key *** -gpg: packet(13) too large -gpg: read_block: read error: Invalid packet -gpg: no valid OpenPGP data found. -gpg: Total number processed: 0 -gpg: WARNING: nothing exported -gpg: no valid OpenPGP data found. -gpg: keyserver receive failed: No data -gpg: WARNING: nothing exported -gpg: no valid OpenPGP data found. -!!!!!! Please check if the above really worked! - -********************************************** -ALMOST READY -********************************************** - -Your SD Card Image for RaspiBlitz is almost ready. -Last step is to install LCD drivers. This will reboot your Pi when done. - -Maybe take the chance and look thru the output above if you can spot any errror. - -After final reboot - your SD Card Image is ready. - -IMPORTANT IF WANT TO MAKE A RELEASE IMAGE FROM THIS BUILD: -login once after reboot without HDD and run 'XXprepareRelease.sh' - -Press ENTER to install LCD and reboot ... -sudo: raspi-config: command not found -E: Unable to locate package raspberrypi-bootloader -E: No packages found -Cloning into 'LCD-show'... -remote: Enumerating objects: 8, done. -remote: Counting objects: 100% (8/8), done. -remote: Compressing objects: 100% (8/8), done. -remote: Total 861 (delta 1), reused 0 (delta 0), pack-reused 853 -Receiving objects: 100% (861/861), 460.67 KiB | 0 bytes/s, done. -Resolving deltas: 100% (548/548), done. -cp: cannot create regular file '/boot/overlays/': Not a directory -cp: cannot create regular file '/boot/overlays/tft35a.dtbo': No such file or directory -cp: cannot create regular file '/usr/share/X11/xorg.conf.d/': Not a directory -this is not raspberrypi kernel, no need to update touch configure, reboot -Connection to 192.168.1.175 closed by remote host. -Connection to 192.168.1.175 closed. \ No newline at end of file diff --git a/dietpi/pictures/5_options_to_copy.png b/dietpi/pictures/5_options_to_copy.png deleted file mode 100644 index c8032c4b6a330c2cd7456761d1bca0687c3c2470..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 38244 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 aI5Fqko_{!uNr~Zx0W3^yuaz2mKKc()WqOhT From 194406c831a9f473e8abc0ee18e16db30e26ce00 Mon Sep 17 00:00:00 2001 From: openoms Date: Sun, 17 Feb 2019 00:21:25 +0000 Subject: [PATCH 05/14] fix typo --- dietpi/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dietpi/README.md b/dietpi/README.md index 3ea4b31f1..1f749c121 100644 --- a/dietpi/README.md +++ b/dietpi/README.md @@ -22,7 +22,7 @@ Steps to run: - download the .img file, - burn to a 16 GB SD with [Etcher](https://www.balena.io/etcher/) - extend the rootFS partition with a partition manager (disks, Gparted, etc.) -- boot the Odroid ith the SDcard and login with ssh admin@at.your.raspiblitz.ip, password: raspiblitz +- boot the Odroid with the SDcard and login with ssh admin@at.your.raspiblitz.ip, password: raspiblitz Using this image you can skip the rest of this guide as it is mostly about how this image was built. From f33915577bc1d82a5935ed0f74d2fef0c354e7cf Mon Sep 17 00:00:00 2001 From: openoms Date: Sun, 17 Feb 2019 07:58:47 +0000 Subject: [PATCH 06/14] update download links --- dietpi/README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/dietpi/README.md b/dietpi/README.md index 1f749c121..758cfd685 100644 --- a/dietpi/README.md +++ b/dietpi/README.md @@ -16,7 +16,9 @@ See the hardware specs: [hardware specs](hw_comparison.md). ## Download the fully prebuilt RaspiBlitz on DietPi SDcard image -for the Odroid HC1 / HC2 / XU3 / XU4 from this [torrent](/home/buidl/Documents/droidblitz/dietpi/RaspiBlitz1.0_OdroidHC1_DietPi6.21.1.torrent) +for the Odroid HC1 / HC2 / XU3 / XU4 from this [torrent](/home/buidl/Documents/droidblitz/dietpi/RaspiBlitz1.0_OdroidHC1_DietPi6.21.1.torrent) or from [mega.nz](https://mega.nz/#F!EVNAAQiB!ZyLHP2dJMRSVjZOTCQMIYA). +(sha256sum RaspiBlitz1.0_OdroidHC1_DietPi6.21.1.img: +96ee8700f52a12fb5b13fab3fffcdcf5d364c6dd16c580d969e421cef2cd7cc2) Steps to run: - download the .img file, @@ -33,8 +35,9 @@ The setup continues with the [RaspiBlitz Setup Process](https://github.com/rootz ### Download the updated DietPi image -For the Odroid HC1 / HC2 / XU3 / XU4 a v6.20.6 DietPi image with fail2ban installed is uploaded here: -https://mega.nz/#!AcdVBAbR!O-W3jP5LUgw7lMY8S9XcBWcKX3IhRNAAFmaYzDXIUC0 +For the Odroid HC1 / HC2 / XU3 / XU4 a v6.20.6 DietPi image with fail2ban installed is uploaded [here]( +https://mega.nz/#!AcdVBAbR!O-W3jP5LUgw7lMY8S9XcBWcKX3IhRNAAFmaYzDXIUC0). (sha256sum DietPi_v6.20.6_OdroidXU4-ARMv7-Stretch.img: +1459b91f66b9db98f3437c31231e44497b7b7dcd9146d2cc41a3da653f9a9215) Burn to the SDCard with [Etcher](https://www.balena.io/etcher/) and extend the rootfs partition to the size of your card with a partition manager. From 28d1ab17504f47ffb531767c206d5cf6c25bc442 Mon Sep 17 00:00:00 2001 From: openoms Date: Sun, 17 Feb 2019 09:15:45 +0000 Subject: [PATCH 07/14] fix torrent path --- dietpi/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dietpi/README.md b/dietpi/README.md index 758cfd685..5fda12966 100644 --- a/dietpi/README.md +++ b/dietpi/README.md @@ -16,7 +16,7 @@ See the hardware specs: [hardware specs](hw_comparison.md). ## Download the fully prebuilt RaspiBlitz on DietPi SDcard image -for the Odroid HC1 / HC2 / XU3 / XU4 from this [torrent](/home/buidl/Documents/droidblitz/dietpi/RaspiBlitz1.0_OdroidHC1_DietPi6.21.1.torrent) or from [mega.nz](https://mega.nz/#F!EVNAAQiB!ZyLHP2dJMRSVjZOTCQMIYA). +for the Odroid HC1 / HC2 / XU3 / XU4 from this [torrent](https://github.com/openoms/raspiblitz/blob/raspiblitz-dev/dietpi/RaspiBlitz1.0_OdroidHC1_DietPi6.21.1.torrent) or from [mega.nz](https://mega.nz/#F!EVNAAQiB!ZyLHP2dJMRSVjZOTCQMIYA). (sha256sum RaspiBlitz1.0_OdroidHC1_DietPi6.21.1.img: 96ee8700f52a12fb5b13fab3fffcdcf5d364c6dd16c580d969e421cef2cd7cc2) From 30b18e1342c51a4872ec7d488ddfea1acb2f78cd Mon Sep 17 00:00:00 2001 From: openoms Date: Sun, 17 Feb 2019 18:50:44 +0000 Subject: [PATCH 08/14] add flip screen option to FAQ --- FAQ.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/FAQ.md b/FAQ.md index f3ca03ce7..b54b0d562 100644 --- a/FAQ.md +++ b/FAQ.md @@ -488,3 +488,8 @@ When you put in a sd card with a new/clean RaspiBlitz image the RaspiBlitz will But there might be cases where you want to start a totally fresh/clean RaspiBlitz from the beginning. To do so you need to delete the old data from the HDD. You can do so by formating it on another computer (for example with FAT and name it "NEW"). Or when you can run the script "/home/admin/XXcleanHD.sh -all" on the terminal. When the HDD is clean, then flash a new RaspiBlitz sd card and your setup should start fresh. + +## Can I flip the screen? + +For the default 3.5" LCD you need to edit the /boot/config.txt. Run `sudo nano /boot/config.txt` +look for the line `dtoverlay=tft35a:rotate=270` towards the end. To flip the screen with 180 degrees change the line to `dtoverlay=tft35a:rotate=90` and reboot with `sudo reboot`. Reference: https://github.com/goodtft/LCD-show/issues/34 From c9da1b72ee2de3511a86ffb138bfd72848279e98 Mon Sep 17 00:00:00 2001 From: bluecell296 <43343391+openoms@users.noreply.github.com> Date: Mon, 18 Feb 2019 18:06:25 +0000 Subject: [PATCH 09/14] resolve conflict in FAQ --- FAQ.md | 41 ++++++++++++++++++++++++++++++++++------- 1 file changed, 34 insertions(+), 7 deletions(-) diff --git a/FAQ.md b/FAQ.md index b54b0d562..a88ae31af 100644 --- a/FAQ.md +++ b/FAQ.md @@ -63,15 +63,15 @@ Copying a already synced blockchain from another computer (for example your Lapt One requirement is that the blockchain is from another bitcoin-core client with version greater or equal to 0.17.1 with transaction index switched on (`txindex=1` in the `bitcoin.conf`). -But we dont copy the data via USB to the device, because the HDD needs to be formatted in EXT4 and that is usually not read/writeable by Windows or Mac computers. So I will explain a way to copy the data thru your local network. This should work from Windows, Mac, Linux and even from another already synced RaspiBlitz. +But we dont copy the data via USB to the device, because the HDD needs to be formatted in EXT4 and that is usually not read/writeable by Windows or Mac computers. So I will explain a way to copy the data through your local network. This should work from Windows, Mac, Linux and even from another already synced RaspiBlitz. -Both computers (your RaspberryPi and the other computer with the full blockchain on) need to be connected to the same local network. Make sure that bitcoin is stoped on the computer containing the blockchain. If your blockchain source is another RaspiBlitz run on the terminal `sudo systemctl stop bitcoind` and then go to the directory where the blochcian data is with `cd /mnt/hdd/bitcoin` - when copy/transfer is done later reboot a RaspiBlitz source with `sudo shutdown -r now`. +Both computers (your RaspberryPi and the other computer with the full blockchain on) need to be connected to the same local network. Make sure that bitcoin is stoped on the computer containing the blockchain. If your blockchain source is another RaspiBlitz run on the terminal `sudo systemctl stop bitcoind` and then go to the directory where the blockchain data is with `cd /mnt/hdd/bitcoin` - when copy/transfer is done later reboot a RaspiBlitz source with `sudo shutdown -r now`. -If everything of the above is prepared, start the setup of the new RaspiBlitz with a fresh SD card (like explained in the README) - its OK that there is no blockchain data on your HDD yet - just follow the setup. When you get to the setup-point `Getting the Blockchain` choose the COPY option. Starting from version 1.0 of the RaspiBlitz this will give you further detailed instructions how to transfere the blockchain data onto your RaspiBlitz. In short: On your computer with the blockchain data source you will execute SCP commands, that will copy the data over your Local Network to your RaspiBlitz. +If everything of the above is prepared, start the setup of the new RaspiBlitz with a fresh SD card (like explained in the README) - its OK that there is no blockchain data on your HDD yet - just follow the setup. When you get to the setup-point `Getting the Blockchain` choose the COPY option. Starting from version 1.0 of the RaspiBlitz this will give you further detailed instructions how to transfer the blockchain data onto your RaspiBlitz. In short: On your computer with the blockchain data source you will execute SCP commands, that will copy the data over your Local Network to your RaspiBlitz. -Once you finished all the transferes the Raspiblitz will make a quick-check on the data - but that will not guarantee that everything in detail was OK with the transfere. Check further FAQ answeres if you get stuck or see a final sync with a value below 90%. +Once you finished all the transferes the Raspiblitz will make a quick-check on the data - but that will not guarantee that everything in detail was OK with the transfer. Check further FAQ answeres if you get stuck or see a final sync with a value below 90%. -**If you want to replace a corrupted blockchain this way:** *Go to terminal - maybe with CTRL+c. `sudo systemctl stop bitcoind` and `sudo systemctl stop lnd` then call `/home/admin/50copyHDD.sh` use the displayed SCP commands to copy over the fresh blockchain. Press ENTER when all is copied, so that the script can quick check the data and set the correct permissions. Then make a reboot `sudo shutdown -r now`* +**If you want to replace a corrupted blockchain this way:** *Go to terminal - maybe with CTRL+c. Then call `/home/admin/50copyHDD.sh` use the displayed SCP commands to copy over the fresh blockchain. Press ENTER when all is copied, so that the script can quick check the data. Then make a reboot `sudo shutdown -r now`* ## How do I clone the Blockchain from a 2nd HDD? @@ -121,7 +121,17 @@ Recovering the coins that you have in an active channel is a bit more complicate To really have a reliable backup, such feature needs to be part of the LND software. Almost every other solution would not be perfect. Thats why RaspiBlitz is not trying to provide a backup feature at the moment. -But you can try to backup at your own risk. All your Lightning Node data is within the `/mnt/hdd/lnd` directory. Just run a backup of that data when the lnd service is stopped. +But you can try to backup at your own risk. All your Lightning Node data is within the `/mnt/hdd/lnd` directory. Just run a backup of that data when the lnd service is stopped -> `sudo systemctl stop lnd` Then on your laptop you go with the terminal into the directory you want to store the backup in and use the following SCP command to download: + +`scp -r bitcoin@[LOCAL-IP-OF-RASPIBLITZ]:/mnt/hdd/lnd/ ./` use your password A + +And if you want to put a LND backup state back. Make a fresh RaspiBlitz (new sd card image and a clean HDD), set it up until its ready (you see the status screen on LCD) and then go to terminal, stop lnd service with `sudo systemctl stop lnd` delete the content of the lnd data dir with `sudo rm -rf /mnt/hdd/lnd/*`. Then on your laptop being in terminal in the same directory you did the backup in (the backuped lnd directory is listed there) run the following SCP command: + +`scp -r ./lnd/* bitcoin@[LOCAL-IP-OF-RASPIBLITZ]:/mnt/hdd/lnd/` use password A + +No run a reboot with: `sudo shutdown -r now` ... LND may need some longer rescan after reboot, but then you should see your old channels and balances. + +**Be aware that if backup is some hours/days old, channels could have been closed by the other party and it may take some time until you see funds back on-chain. If backup is somewhat older also the channel counter parties may have used your offline time to cheat you with an old state. And if your backup was not the latest state and LND is closing channels it could also been happening that you are posting an old channel state (seen as cheating) and funds of that channel get lost as punishment. So again .. this backup method can be risky, use with caution.** ## What is this mnemonic seed word list? @@ -464,15 +474,24 @@ Work Nodes for the process of producing a new sd card image release: * Remove `Ubuntu LIVE` USB stick and replace with `Ubuntu AIRGAP` * PowerOn Build Laptop (press F12 for boot menu) * Cut Power of RaspiBlitz, remove sd card and connect with sd card reader to build laptop + +Old: * Open `Disks` manager, select sd card and choose `Create Disk Image` (right upper corner window) * Store image to NTFS USB stick (click to start can take a while - enter password) * Open in File Manager the NTFS USB Stick, context menu the created IMG file `compress` * Name it: `raspiblitz-vX.X-YEAR-MONTH-DAY.img.zip` -* Delete all IMG files from NTFS (just keep zips) + +New: +* Connect and open in Filemenager NTFS - context on white scace -> open terminal +* run `df`to check on sd card reader device name +* `sudo dd if=/dev/[sdcarddevice] | gzip > ./raspiblitz-vX.X-YEAR-MONTH-DAY.img.gz` + +* Delete all IMG files from NTFS (just keep zips/gzs) * Context on white space, `Open in Terminal`, run `shasum -a 256 [NEW-ZIP] > sha256.txt` * [Do future author signing here with tools from airgap build machine] * Shutdown build computer * Connect NTFS USB stick to MacOS (its just readonly) +* Check if file can be unzipped on OSX * Run tests with new image * Upload new image to Download Server * Copy SHA256-String into GutHub README and update downloadlink @@ -489,6 +508,14 @@ But there might be cases where you want to start a totally fresh/clean RaspiBlit When the HDD is clean, then flash a new RaspiBlitz sd card and your setup should start fresh. +## My blockchain data is corrupted - what can I do? + +You could try to re-index, but that can take some very long time - multiple days or even weeks. + +Another option would be to delete the old blockchain and get a new one. See for details the FAQ question: [I have the full blockchain on another computer. How do I copy it to the RaspiBlitz?](FAQ.md#i-have-the-full-blockchain-on-another-computer-how-do-i-copy-it-to-the-raspiblitz). And even if you are not able to delete the data, first rename the undeletable folders and then follow the instructions. + +Also make sure to check again on your power supply - it needs to deliver equal or more then 3A and should deliver a stable current. If you think your HDD is degrading - maybe this is a good time to replace it. See for details the FAQ question: [How can I recover my coins from a failing RaspiBlitz?](FAQ.md#how-can-i-recover-my-coins-from-a-failing-raspiblitz) + ## Can I flip the screen? For the default 3.5" LCD you need to edit the /boot/config.txt. Run `sudo nano /boot/config.txt` From 657d0c5ea7292a6d2aadcc21dc6a05ec5b37d40f Mon Sep 17 00:00:00 2001 From: bluecell296 <43343391+openoms@users.noreply.github.com> Date: Mon, 18 Feb 2019 18:08:13 +0000 Subject: [PATCH 10/14] resolve conflict in FAQ --- FAQ.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/FAQ.md b/FAQ.md index a88ae31af..7d8ac83d2 100644 --- a/FAQ.md +++ b/FAQ.md @@ -515,8 +515,3 @@ You could try to re-index, but that can take some very long time - multiple days Another option would be to delete the old blockchain and get a new one. See for details the FAQ question: [I have the full blockchain on another computer. How do I copy it to the RaspiBlitz?](FAQ.md#i-have-the-full-blockchain-on-another-computer-how-do-i-copy-it-to-the-raspiblitz). And even if you are not able to delete the data, first rename the undeletable folders and then follow the instructions. Also make sure to check again on your power supply - it needs to deliver equal or more then 3A and should deliver a stable current. If you think your HDD is degrading - maybe this is a good time to replace it. See for details the FAQ question: [How can I recover my coins from a failing RaspiBlitz?](FAQ.md#how-can-i-recover-my-coins-from-a-failing-raspiblitz) - -## Can I flip the screen? - -For the default 3.5" LCD you need to edit the /boot/config.txt. Run `sudo nano /boot/config.txt` -look for the line `dtoverlay=tft35a:rotate=270` towards the end. To flip the screen with 180 degrees change the line to `dtoverlay=tft35a:rotate=90` and reboot with `sudo reboot`. Reference: https://github.com/goodtft/LCD-show/issues/34 From cf8cba1a595c8b758f7f3ea700e7657407eb1034 Mon Sep 17 00:00:00 2001 From: bluecell296 <43343391+openoms@users.noreply.github.com> Date: Mon, 18 Feb 2019 18:22:35 +0000 Subject: [PATCH 11/14] resolve conflicts in FAQ --- FAQ.md | 9 --------- 1 file changed, 9 deletions(-) diff --git a/FAQ.md b/FAQ.md index 7d8ac83d2..7e5f57626 100644 --- a/FAQ.md +++ b/FAQ.md @@ -474,18 +474,9 @@ Work Nodes for the process of producing a new sd card image release: * Remove `Ubuntu LIVE` USB stick and replace with `Ubuntu AIRGAP` * PowerOn Build Laptop (press F12 for boot menu) * Cut Power of RaspiBlitz, remove sd card and connect with sd card reader to build laptop - -Old: -* Open `Disks` manager, select sd card and choose `Create Disk Image` (right upper corner window) -* Store image to NTFS USB stick (click to start can take a while - enter password) -* Open in File Manager the NTFS USB Stick, context menu the created IMG file `compress` -* Name it: `raspiblitz-vX.X-YEAR-MONTH-DAY.img.zip` - -New: * Connect and open in Filemenager NTFS - context on white scace -> open terminal * run `df`to check on sd card reader device name * `sudo dd if=/dev/[sdcarddevice] | gzip > ./raspiblitz-vX.X-YEAR-MONTH-DAY.img.gz` - * Delete all IMG files from NTFS (just keep zips/gzs) * Context on white space, `Open in Terminal`, run `shasum -a 256 [NEW-ZIP] > sha256.txt` * [Do future author signing here with tools from airgap build machine] From 9e8a42dc8268d415410246e4e9a3e14b309c39c1 Mon Sep 17 00:00:00 2001 From: openoms Date: Mon, 18 Feb 2019 22:16:33 +0000 Subject: [PATCH 12/14] general guide for dietpi --- FAQ.md | 5 ++ dietpi/Odroid_HC1_HC2.md | 121 ++++++++++++++++++++++++++++++++++++ dietpi/README.md | 129 +++++++++++---------------------------- 3 files changed, 160 insertions(+), 95 deletions(-) create mode 100644 dietpi/Odroid_HC1_HC2.md diff --git a/FAQ.md b/FAQ.md index 7e5f57626..eda7d0fb9 100644 --- a/FAQ.md +++ b/FAQ.md @@ -506,3 +506,8 @@ You could try to re-index, but that can take some very long time - multiple days Another option would be to delete the old blockchain and get a new one. See for details the FAQ question: [I have the full blockchain on another computer. How do I copy it to the RaspiBlitz?](FAQ.md#i-have-the-full-blockchain-on-another-computer-how-do-i-copy-it-to-the-raspiblitz). And even if you are not able to delete the data, first rename the undeletable folders and then follow the instructions. Also make sure to check again on your power supply - it needs to deliver equal or more then 3A and should deliver a stable current. If you think your HDD is degrading - maybe this is a good time to replace it. See for details the FAQ question: [How can I recover my coins from a failing RaspiBlitz?](FAQ.md#how-can-i-recover-my-coins-from-a-failing-raspiblitz) + +## Can I flip the screen? + +For the default 3.5" LCD you need to edit the /boot/config.txt. Run `sudo nano /boot/config.txt` +look for the line `dtoverlay=tft35a:rotate=270` towards the end. To flip the screen with 180 degrees change the line to `dtoverlay=tft35a:rotate=90` and reboot with `sudo reboot`. Reference: https://github.com/goodtft/LCD-show/issues/34 \ No newline at end of file diff --git a/dietpi/Odroid_HC1_HC2.md b/dietpi/Odroid_HC1_HC2.md new file mode 100644 index 000000000..84746af69 --- /dev/null +++ b/dietpi/Odroid_HC1_HC2.md @@ -0,0 +1,121 @@ + +![](pictures/DroidBlitz.jpg) + + +## Download the fully prebuilt RaspiBlitz-on-DietPi SDcard image for the Odroid HC1 / HC2 / XU3 / XU4 + +for the Odroid HC1 / HC2 / XU3 / XU4 from this [torrent](https://github.com/openoms/raspiblitz/blob/raspiblitz-dev/dietpi/RaspiBlitz1.0_OdroidHC1_DietPi6.21.1.torrent) or from [mega.nz](https://mega.nz/#F!EVNAAQiB!ZyLHP2dJMRSVjZOTCQMIYA). +(sha256sum RaspiBlitz1.0_OdroidHC1_DietPi6.21.1.img: +96ee8700f52a12fb5b13fab3fffcdcf5d364c6dd16c580d969e421cef2cd7cc2) + +Steps to run: +- download the .img file, +- burn to a 16 GB SD with [Etcher](https://www.balena.io/etcher/) +- extend the rootFS partition with a partition manager (disks, Gparted, etc.) +- boot the Odroid with the SDcard and login with ssh admin@at.your.raspiblitz.ip, password: raspiblitz + +Using this image you can skip the rest of this guide as it is mostly about how this image was built. + +The setup continues with the [RaspiBlitz Setup Process](https://github.com/rootzoll/raspiblitz/blob/master/README.md#setup-process-detailed-documentation) + +--- +## Setting up the DietPi OS + +### Download the updated DietPi image + +For the Odroid HC1 / HC2 / XU3 / XU4 a v6.20.6 DietPi image with fail2ban installed is uploaded [here]( +https://mega.nz/#!AcdVBAbR!O-W3jP5LUgw7lMY8S9XcBWcKX3IhRNAAFmaYzDXIUC0). (sha256sum DietPi_v6.20.6_OdroidXU4-ARMv7-Stretch.img: +1459b91f66b9db98f3437c31231e44497b7b7dcd9146d2cc41a3da653f9a9215) + +Burn to the SDCard with [Etcher](https://www.balena.io/etcher/) and extend the rootfs partition to the size of your card with a partition manager. + +Insert the SDcard into the Odroid. + +Power up and continue with: [Run the DietPi optimized Raspiblitz SDcard build script](#Run-the-RaspiBlitz-build_sdcard.sh-script) + +### Build your own DietPi image: + +Watch out this an ardous process. +Updating from a v6.14 DietPi image is causing a bootloop under some circumstances. Will be sorted once the current, >6.2 version is uploaded for the Odroids. + +For the Odroid HC1 / HC2 / XU3 / XU4 the start is this image: +https://dietpi.com/downloads/images/DietPi_OdroidXU4-ARMv7-Stretch.7z +Burn it to the SD with [Etcher](https://www.balena.io/etcher/) + +Getting started with DietPi: https://dietpi.com/phpbb/viewtopic.php?f=8&t=9#p9 + +In the desktop terminal on Linux / MacOS or Putty on Windows: + +`ssh root@[IP-OF-DIETPI]` +password: `dietpi` + +Ok > Cancel > Cancel +automatic apt update & apt upgrade and asks to reboot +![](pictures/dietpi_1st_reboot.png) + +`ssh root@[IP-OF-DIETPI]` +after the previous update the ssh keys might change: + +@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ +@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ +@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ + +run (can be copied from the terminal output): +`ssh-keygen -f "/home/[your-linux-username]/.ssh/known_hosts" -R "dietpi.IP"` + +`ssh root@[IP-OF-DIETPI]` +yes > +password: `dietpi` + +At this point if the DietPi was not updated from 6.14 it does not manage to save settings going forward. +Exit the sotware installer (press Tab to jump to Exit) +![](pictures/dietpi-software_exit.png) + +in the bash prompt run: +`dietpi-update` +>Ok > Cancel the recovery point +update > >Opt out of survey > Ok +Reboots + +`ssh root@[IP-OF-DIETPI]` +password: `dietpi` + +>Ok > Cancel > Cancel +Search `fail2ban` > Space to select > Enter +SSH server > switch from Dropbear to the OpenSSH-server +> Install > Ok +>Opt out of survey > Ok +Reboots again + +Changing the SSH server will change the SSH keys again. To clear: +`ssh-keygen -f "/home/[your-linux-username]/.ssh/known_hosts" -R "dietpi.IP"` + + +## Run the RaspiBlitz build_sdcard.sh script + +In the desktop terminal in Linux / MacOS or Putty in Windows: + +`ssh root@[IP-OF-DIETPI]` +password: `dietpi` +Should end up here on version v6.20.6 or higher: +![](pictures/bash_prompt.png) + +run the build_sdcard.sh script in this format: +`wget https://raw.githubusercontent.com/[GITHUB-USERNAME]/raspiblitz/[BRANCH]/build_sdcard.sh && sudo bash build_sdcard.sh [BRANCH] [GITHUB-USERNAME]` + +Be aware of that the fork needs to be called `raspiblitz` for the git download to work. +if you intend to use @openoms`s forked version: + +`wget https://raw.githubusercontent.com/openoms/raspiblitz/raspiblitz-dev/build_sdcard.sh && sudo bash build_sdcard.sh raspiblitz-dev openoms` + + +`ssh admin@[IP-OF-DROIDBLITZ]` +password: raspiblitz + +The setup continues with the [RaspiBlitz Setup Process](https://github.com/rootzoll/raspiblitz/blob/master/README.md#setup-process-detailed-documentation) + +--- +### Examples of copying the blockchain data from a HDD using a powered USB to SATA adapter + +![example setup](pictures/HDD_copy_example.jpg) +![](pictures/adapterHDD_HC1.jpg) diff --git a/dietpi/README.md b/dietpi/README.md index 5fda12966..8a993dc15 100644 --- a/dietpi/README.md +++ b/dietpi/README.md @@ -1,4 +1,4 @@ -# ⚡️ RaspiBlitz on DietPi ⚡️ +# ⚡️ RaspiBlitz-on-DietPi ⚡️ # A hardware agnostic platform @@ -9,128 +9,67 @@ This guide was tested on: * Raspberry Pi 3 B Plus - no LCD support so far * hoping to extend this list with more compatible boards especially the ROCK64 -See the hardware specs: [hardware specs](hw_comparison.md). +See the [hardware comparison](hw_comparison.md). -![](pictures/DroidBlitz.jpg) - -## Download the fully prebuilt RaspiBlitz on DietPi SDcard image - -for the Odroid HC1 / HC2 / XU3 / XU4 from this [torrent](https://github.com/openoms/raspiblitz/blob/raspiblitz-dev/dietpi/RaspiBlitz1.0_OdroidHC1_DietPi6.21.1.torrent) or from [mega.nz](https://mega.nz/#F!EVNAAQiB!ZyLHP2dJMRSVjZOTCQMIYA). -(sha256sum RaspiBlitz1.0_OdroidHC1_DietPi6.21.1.img: -96ee8700f52a12fb5b13fab3fffcdcf5d364c6dd16c580d969e421cef2cd7cc2) - -Steps to run: -- download the .img file, -- burn to a 16 GB SD with [Etcher](https://www.balena.io/etcher/) -- extend the rootFS partition with a partition manager (disks, Gparted, etc.) -- boot the Odroid with the SDcard and login with ssh admin@at.your.raspiblitz.ip, password: raspiblitz - -Using this image you can skip the rest of this guide as it is mostly about how this image was built. - -The setup continues with the [RaspiBlitz Setup Process](https://github.com/rootzoll/raspiblitz/blob/master/README.md#setup-process-detailed-documentation) - +### Downloads and walkthrough for the [Odroid HC1 / HC2 / XU3 / XU4](Odroid_HC1_HC2.md) --- -## Setting up the DietPi OS - -### Download the updated DietPi image +## General Guide for RaspiBlitz-on-DietPi -For the Odroid HC1 / HC2 / XU3 / XU4 a v6.20.6 DietPi image with fail2ban installed is uploaded [here]( -https://mega.nz/#!AcdVBAbR!O-W3jP5LUgw7lMY8S9XcBWcKX3IhRNAAFmaYzDXIUC0). (sha256sum DietPi_v6.20.6_OdroidXU4-ARMv7-Stretch.img: -1459b91f66b9db98f3437c31231e44497b7b7dcd9146d2cc41a3da653f9a9215) +### Setting up the DietPi OS -Burn to the SDCard with [Etcher](https://www.balena.io/etcher/) and extend the rootfs partition to the size of your card with a partition manager. +* Start with an ARM based Single Board Computer listed on DietPi.com. +At least 1GB RAM is recommended. +Look for the SD card image for the specific SBC in the [download section](https://dietpi.com/#download). -Insert the SDcard into the Odroid. +* Burn the image to the SDCard with [Etcher](https://www.balena.io/etcher/) and extend the rootfs partition to the size of your card with a partition manager. -Power up and continue with: [Run the DietPi optimized Raspiblitz SDcard build script](#Run-the-RaspiBlitz-build_sdcard.sh-script) +* Insert the SDcard into your SBC. -### Build your own DietPi image: +* Connect the HDD with a powered suitably powered adapter. +A USB 2.0 port will not be able to power an HDD so you will need extra cable +If you are connecting the HDD to a USB 3.0 port and have an at least 2A power supply, you might be able to run without an extra cable. -Watch out this an ardous process. -Updating from a v6.14 DietPi image is causing a bootloop under some circumstances. Will be sorted once the current, >6.2 version is uploaded for the Odroids. +* Power up and continue with: [Run the DietPi optimized Raspiblitz SDcard build script](#Run-the-RaspiBlitz-build_sdcard.sh-script) -For the Odroid HC1 / HC2 / XU3 / XU4 the start is this image: -https://dietpi.com/downloads/images/DietPi_OdroidXU4-ARMv7-Stretch.7z -Burn it to the SD with [Etcher](https://www.balena.io/etcher/) - -Getting started with DietPi: https://dietpi.com/phpbb/viewtopic.php?f=8&t=9#p9 - -In the desktop terminal on Linux / MacOS or Putty on Windows: + +* In the desktop terminal on Linux / MacOS or Putty on Windows: `ssh root@[IP-OF-DIETPI]` password: `dietpi` +Getting started with DietPi: https://dietpi.com/phpbb/viewtopic.php?f=8&t=9#p9 -Ok > Cancel > Cancel -automatic apt update & apt upgrade and asks to reboot -![](pictures/dietpi_1st_reboot.png) - -`ssh root@[IP-OF-DIETPI]` -after the previous update the ssh keys might change: - -@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ -@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ - -run (can be copied from the terminal output): -`ssh-keygen -f "/home/[your-linux-username]/.ssh/known_hosts" -R "dietpi.IP"` - -`ssh root@[IP-OF-DIETPI]` -yes > -password: `dietpi` - -At this point if the DietPi was not updated from 6.14 it does not manage to save settings going forward. -Exit the sotware installer (press Tab to jump to Exit) -![](pictures/dietpi-software_exit.png) - -in the bash prompt run: -`dietpi-update` ->Ok > Cancel the recovery point -update > >Opt out of survey > Ok -Reboots - -`ssh root@[IP-OF-DIETPI]` -password: `dietpi` - ->Ok > Cancel > Cancel -Search `fail2ban` > Space to select > Enter -SSH server > switch from Dropbear to the OpenSSH-server -> Install > Ok ->Opt out of survey > Ok -Reboots again +* You might be asked about updating DietPi. This might not be straightforward if starting froma version <6.20. Try to update, it is best to build on the latest version. +* In the DietPi software menu install fail2ban and make OpenSSH server the default SSH server. Changing the SSH server will change the SSH keys again. To clear: `ssh-keygen -f "/home/[your-linux-username]/.ssh/known_hosts" -R "dietpi.IP"` - -## Run the RaspiBlitz build_sdcard.sh script - -In the desktop terminal in Linux / MacOS or Putty in Windows: - +* After every reboot log back in: `ssh root@[IP-OF-DIETPI]` -password: `dietpi` -Should end up here on version v6.20.6 or higher: +password: `dietpi` + +* Should end up here on version v6.20.6 or higher: ![](pictures/bash_prompt.png) -run the build_sdcard.sh script in this format: -`wget https://raw.githubusercontent.com/[GITHUB-USERNAME]/raspiblitz/[BRANCH]/build_sdcard.sh && sudo bash build_sdcard.sh [BRANCH] [GITHUB-USERNAME]` -Be aware of that the fork needs to be called `raspiblitz` for the git download to work. -if you intend to use @openoms`s forked version: +### Run the RaspiBlitz build_sdcard.sh script -`wget https://raw.githubusercontent.com/openoms/raspiblitz/raspiblitz-dev/build_sdcard.sh && sudo bash build_sdcard.sh raspiblitz-dev openoms` +* Format of the command to build the SDcard: +`wget https://raw.githubusercontent.com/[GITHUB-USERNAME]/raspiblitz/[BRANCH]/build_sdcard.sh && sudo bash build_sdcard.sh [BRANCH] [GITHUB-USERNAME]` +If you are working from a forked repo be aware of that the fork needs to be called `raspiblitz` for the git downloads to work. +* Run the forked version of @openoms: +`wget https://raw.githubusercontent.com/openoms/raspiblitz/raspiblitz-dev/build_sdcard.sh && sudo bash build_sdcard.sh raspiblitz-dev openoms` +This will take a couple minutes depending on your internet ceonnection and the processing power of the SBC. +* Restart when done and log back in now as `admin`: `ssh admin@[IP-OF-DROIDBLITZ]` -password: raspiblitz +password: `raspiblitz` -The setup continues with the [RaspiBlitz Setup Process](https://github.com/rootzoll/raspiblitz/blob/master/README.md#setup-process-detailed-documentation) +* From here he setup continues with the [RaspiBlitz Setup Process](https://github.com/rootzoll/raspiblitz/blob/master/README.md#setup-process-detailed-documentation) ---- -### Examples of copying the blockchain data from a HDD using a powered USB to SATA adapter -![example setup](pictures/HDD_copy_example.jpg) -![](pictures/adapterHDD_HC1.jpg) --- ### Useful commands for debugging: @@ -144,7 +83,7 @@ To test a new configuration run XXcleanHDD.sh and strictly restart `sudo tail -n100 /mnt/hdd/bitcoin/debug.log` - shows the last 100 lines `sudo systemctl status lnd` `sudo journalctl -f -u lnd` -`./home/admin/XXdebugLogs.sh` - debug log collection on the raspiblitz +`./home/admin/XXdebugLogs.sh` - debug log collection on the RaspiBlitz --- From 14cf3e7dab2f4ec6e2b5a2afefd74fef509d7699 Mon Sep 17 00:00:00 2001 From: openoms Date: Mon, 18 Feb 2019 22:54:52 +0000 Subject: [PATCH 13/14] dietpi guide update and reformat --- FAQ.md | 10 ++-- dietpi/Odroid_HC1_HC2.md | 112 ++++++++++++++++++++------------------- dietpi/README.md | 6 ++- 3 files changed, 67 insertions(+), 61 deletions(-) diff --git a/FAQ.md b/FAQ.md index eda7d0fb9..a221e860d 100644 --- a/FAQ.md +++ b/FAQ.md @@ -491,6 +491,11 @@ Work Nodes for the process of producing a new sd card image release: There is an experimental section in this GitHub that tries to build for other SingleBoardComputers. Feel free to try it out and share your experience: [dietpi/README.md](dietpi/README.md) +## Can I flip the screen? + +For the default 3.5" LCD you need to edit the /boot/config.txt. Run `sudo nano /boot/config.txt` +look for the line `dtoverlay=tft35a:rotate=270` towards the end. To flip the screen with 180 degrees change the line to `dtoverlay=tft35a:rotate=90` and reboot with `sudo reboot`. Reference: https://github.com/goodtft/LCD-show/issues/34 + ## How to setup fresh/clean/reset and not getting into recovery mode? When you put in a sd card with a new/clean RaspiBlitz image the RaspiBlitz will get into recovery mode because it detects the old data on your HDD and assumes you just want to continue to work with this data. @@ -506,8 +511,3 @@ You could try to re-index, but that can take some very long time - multiple days Another option would be to delete the old blockchain and get a new one. See for details the FAQ question: [I have the full blockchain on another computer. How do I copy it to the RaspiBlitz?](FAQ.md#i-have-the-full-blockchain-on-another-computer-how-do-i-copy-it-to-the-raspiblitz). And even if you are not able to delete the data, first rename the undeletable folders and then follow the instructions. Also make sure to check again on your power supply - it needs to deliver equal or more then 3A and should deliver a stable current. If you think your HDD is degrading - maybe this is a good time to replace it. See for details the FAQ question: [How can I recover my coins from a failing RaspiBlitz?](FAQ.md#how-can-i-recover-my-coins-from-a-failing-raspiblitz) - -## Can I flip the screen? - -For the default 3.5" LCD you need to edit the /boot/config.txt. Run `sudo nano /boot/config.txt` -look for the line `dtoverlay=tft35a:rotate=270` towards the end. To flip the screen with 180 degrees change the line to `dtoverlay=tft35a:rotate=90` and reboot with `sudo reboot`. Reference: https://github.com/goodtft/LCD-show/issues/34 \ No newline at end of file diff --git a/dietpi/Odroid_HC1_HC2.md b/dietpi/Odroid_HC1_HC2.md index 84746af69..856e7a9f4 100644 --- a/dietpi/Odroid_HC1_HC2.md +++ b/dietpi/Odroid_HC1_HC2.md @@ -1,121 +1,125 @@ -![](pictures/DroidBlitz.jpg) +# ⚡️ RaspiBlitz-on-DietPi ⚡️ +# For the Odroid HC1 / HC2 / XU3 / XU4 +![](pictures/DroidBlitz.jpg) -## Download the fully prebuilt RaspiBlitz-on-DietPi SDcard image for the Odroid HC1 / HC2 / XU3 / XU4 +## There are 3 options provided: +* a trusted SDcard image +* building your own SDcard from an updated DietPi image. +* Build your own SDcard from the image downloaded from [Dietpi.com](dietpi.com#download) +--- +### Download the fully prebuilt RaspiBlitz-on-DietPi SDcard image +* [torrent](https://github.com/openoms/raspiblitz/blob/raspiblitz-dev/dietpi/RaspiBlitz1.0_OdroidHC1_DietPi6.21.1.torrent) +* [mega.nz link](https://mega.nz/#F!EVNAAQiB!ZyLHP2dJMRSVjZOTCQMIYA) -for the Odroid HC1 / HC2 / XU3 / XU4 from this [torrent](https://github.com/openoms/raspiblitz/blob/raspiblitz-dev/dietpi/RaspiBlitz1.0_OdroidHC1_DietPi6.21.1.torrent) or from [mega.nz](https://mega.nz/#F!EVNAAQiB!ZyLHP2dJMRSVjZOTCQMIYA). -(sha256sum RaspiBlitz1.0_OdroidHC1_DietPi6.21.1.img: -96ee8700f52a12fb5b13fab3fffcdcf5d364c6dd16c580d969e421cef2cd7cc2) +sha256sum RaspiBlitz1.0_OdroidHC1_DietPi6.21.1.img: 96ee8700f52a12fb5b13fab3fffcdcf5d364c6dd16c580d969e421cef2cd7cc2 Steps to run: - download the .img file, - burn to a 16 GB SD with [Etcher](https://www.balena.io/etcher/) - extend the rootFS partition with a partition manager (disks, Gparted, etc.) -- boot the Odroid with the SDcard and login with ssh admin@at.your.raspiblitz.ip, password: raspiblitz +- boot the Odroid with the SDcard +- login with `ssh admin@at.your.raspiblitz.ip` +password: `raspiblitz` Using this image you can skip the rest of this guide as it is mostly about how this image was built. The setup continues with the [RaspiBlitz Setup Process](https://github.com/rootzoll/raspiblitz/blob/master/README.md#setup-process-detailed-documentation) --- -## Setting up the DietPi OS - ### Download the updated DietPi image -For the Odroid HC1 / HC2 / XU3 / XU4 a v6.20.6 DietPi image with fail2ban installed is uploaded [here]( -https://mega.nz/#!AcdVBAbR!O-W3jP5LUgw7lMY8S9XcBWcKX3IhRNAAFmaYzDXIUC0). (sha256sum DietPi_v6.20.6_OdroidXU4-ARMv7-Stretch.img: -1459b91f66b9db98f3437c31231e44497b7b7dcd9146d2cc41a3da653f9a9215) +* For the Odroid HC1 / HC2 / XU3 / XU4 a v6.20.6 DietPi image with fail2ban installed is uploaded [here]( +https://mega.nz/#!AcdVBAbR!O-W3jP5LUgw7lMY8S9XcBWcKX3IhRNAAFmaYzDXIUC0). +sha256sum DietPi_v6.20.6_OdroidXU4-ARMv7-Stretch.img: +1459b91f66b9db98f3437c31231e44497b7b7dcd9146d2cc41a3da653f9a9215 -Burn to the SDCard with [Etcher](https://www.balena.io/etcher/) and extend the rootfs partition to the size of your card with a partition manager. +* Burn the image to the SDCard with [Etcher](https://www.balena.io/etcher/) and extend the rootfs partition to the size of your card with a partition manager (disks, Gparted, etc). -Insert the SDcard into the Odroid. +* Insert the SDcard into the Odroid. -Power up and continue with: [Run the DietPi optimized Raspiblitz SDcard build script](#Run-the-RaspiBlitz-build_sdcard.sh-script) +* Power up and continue with: [Run the RaspiBlitz build_sdcard.sh script](#Run-the-RaspiBlitz-build_sdcard.sh-script) + +--- ### Build your own DietPi image: -Watch out this an ardous process. +* Watch out this is an ardous process. Updating from a v6.14 DietPi image is causing a bootloop under some circumstances. Will be sorted once the current, >6.2 version is uploaded for the Odroids. -For the Odroid HC1 / HC2 / XU3 / XU4 the start is this image: +* For the Odroid HC1 / HC2 / XU3 / XU4 the start is this image: https://dietpi.com/downloads/images/DietPi_OdroidXU4-ARMv7-Stretch.7z -Burn it to the SD with [Etcher](https://www.balena.io/etcher/) +* Burn it to the SD with [Etcher](https://www.balena.io/etcher/) -Getting started with DietPi: https://dietpi.com/phpbb/viewtopic.php?f=8&t=9#p9 - -In the desktop terminal on Linux / MacOS or Putty on Windows: +* In the desktop terminal on Linux / MacOS or Putty on Windows: `ssh root@[IP-OF-DIETPI]` password: `dietpi` +Getting started with DietPi: https://dietpi.com/phpbb/viewtopic.php?f=8&t=9#p9 -Ok > Cancel > Cancel +* Ok > Cancel > Cancel automatic apt update & apt upgrade and asks to reboot ![](pictures/dietpi_1st_reboot.png) +* Log back in: `ssh root@[IP-OF-DIETPI]` -after the previous update the ssh keys might change: - +password: `dietpi` +* after the previous update the ssh keys might change: @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ - run (can be copied from the terminal output): -`ssh-keygen -f "/home/[your-linux-username]/.ssh/known_hosts" -R "dietpi.IP"` - +`ssh-keygen -f "/home/[your-linux-username]/.ssh/known_hosts" -R "dietpi.IP"` `ssh root@[IP-OF-DIETPI]` yes > password: `dietpi` -At this point if the DietPi was not updated from 6.14 it does not manage to save settings going forward. +* At this point if the DietPi was not updated from 6.14 it does not manage to save settings going forward. Exit the sotware installer (press Tab to jump to Exit) ![](pictures/dietpi-software_exit.png) -in the bash prompt run: -`dietpi-update` ->Ok > Cancel the recovery point -update > >Opt out of survey > Ok +* in the bash prompt run: +`dietpi-update` +Ok > Cancel the recovery point +update > Opt out of survey > Ok Reboots +* Log back in: `ssh root@[IP-OF-DIETPI]` password: `dietpi` - ->Ok > Cancel > Cancel +* In the DietPi software menu install fail2ban and make OpenSSH server the default SSH server. +Changing the SSH server will change the SSH keys again. To clear: +`ssh-keygen -f "/home/[your-linux-username]/.ssh/known_hosts" -R "dietpi.IP"` +Ok > Cancel > Cancel Search `fail2ban` > Space to select > Enter SSH server > switch from Dropbear to the OpenSSH-server -> Install > Ok ->Opt out of survey > Ok +Install > Ok +Opt out of survey > Ok Reboots again -Changing the SSH server will change the SSH keys again. To clear: +* Changing the SSH server will change the SSH keys again. To clear: `ssh-keygen -f "/home/[your-linux-username]/.ssh/known_hosts" -R "dietpi.IP"` -## Run the RaspiBlitz build_sdcard.sh script +### Run the RaspiBlitz build_sdcard.sh script -In the desktop terminal in Linux / MacOS or Putty in Windows: - -`ssh root@[IP-OF-DIETPI]` -password: `dietpi` -Should end up here on version v6.20.6 or higher: -![](pictures/bash_prompt.png) - -run the build_sdcard.sh script in this format: -`wget https://raw.githubusercontent.com/[GITHUB-USERNAME]/raspiblitz/[BRANCH]/build_sdcard.sh && sudo bash build_sdcard.sh [BRANCH] [GITHUB-USERNAME]` - -Be aware of that the fork needs to be called `raspiblitz` for the git download to work. -if you intend to use @openoms`s forked version: - -`wget https://raw.githubusercontent.com/openoms/raspiblitz/raspiblitz-dev/build_sdcard.sh && sudo bash build_sdcard.sh raspiblitz-dev openoms` +* Format of the command to build the SDcard: +`wget https://raw.githubusercontent.com/[GITHUB-USERNAME]/raspiblitz/[BRANCH]/build_sdcard.sh && sudo bash build_sdcard.sh [BRANCH] [GITHUB-USERNAME]` +If you are working from a forked repo be aware of that the fork needs to be called `raspiblitz` for the git downloads to work. +* Run the forked version of @openoms: +`wget https://raw.githubusercontent.com/openoms/raspiblitz/raspiblitz-dev/build_sdcard.sh && sudo bash build_sdcard.sh raspiblitz-dev openoms` +This will take a couple minutes depending on your internet ceonnection and the processing power of the SBC. +* Restart when done and log back in now as `admin`: `ssh admin@[IP-OF-DROIDBLITZ]` -password: raspiblitz +password: `raspiblitz` -The setup continues with the [RaspiBlitz Setup Process](https://github.com/rootzoll/raspiblitz/blob/master/README.md#setup-process-detailed-documentation) +* From here he setup continues with the [RaspiBlitz Setup Process](https://github.com/rootzoll/raspiblitz/blob/master/README.md#setup-process-detailed-documentation) --- -### Examples of copying the blockchain data from a HDD using a powered USB to SATA adapter +### Examples of copying the blockchain data from a HDD using a powered USB to SATA adapter ![example setup](pictures/HDD_copy_example.jpg) ![](pictures/adapterHDD_HC1.jpg) diff --git a/dietpi/README.md b/dietpi/README.md index 8a993dc15..e536455cc 100644 --- a/dietpi/README.md +++ b/dietpi/README.md @@ -9,12 +9,14 @@ This guide was tested on: * Raspberry Pi 3 B Plus - no LCD support so far * hoping to extend this list with more compatible boards especially the ROCK64 -See the [hardware comparison](hw_comparison.md). +See the [hardware comparison](hw_comparison.md). + +--- ### Downloads and walkthrough for the [Odroid HC1 / HC2 / XU3 / XU4](Odroid_HC1_HC2.md) --- -## General Guide for RaspiBlitz-on-DietPi +## General guide for the RaspiBlitz-on-DietPi ### Setting up the DietPi OS From bcd865a0c86eb2f1546e277723c0b8f63a156b71 Mon Sep 17 00:00:00 2001 From: openoms Date: Tue, 19 Feb 2019 00:28:36 +0000 Subject: [PATCH 14/14] fix typos --- dietpi/Odroid_HC1_HC2.md | 23 ++++++++++++----------- dietpi/README.md | 18 ++++++++---------- 2 files changed, 20 insertions(+), 21 deletions(-) diff --git a/dietpi/Odroid_HC1_HC2.md b/dietpi/Odroid_HC1_HC2.md index 856e7a9f4..00617c6dd 100644 --- a/dietpi/Odroid_HC1_HC2.md +++ b/dietpi/Odroid_HC1_HC2.md @@ -5,7 +5,7 @@ ![](pictures/DroidBlitz.jpg) ## There are 3 options provided: -* a trusted SDcard image +* a trusted fully prebuilt SDcard image * building your own SDcard from an updated DietPi image. * Build your own SDcard from the image downloaded from [Dietpi.com](dietpi.com#download) --- @@ -30,7 +30,7 @@ The setup continues with the [RaspiBlitz Setup Process](https://github.com/rootz --- ### Download the updated DietPi image -* For the Odroid HC1 / HC2 / XU3 / XU4 a v6.20.6 DietPi image with fail2ban installed is uploaded [here]( +For the Odroid HC1 / HC2 / XU3 / XU4 a v6.20.6 DietPi image with fail2ban installed is uploaded [here]( https://mega.nz/#!AcdVBAbR!O-W3jP5LUgw7lMY8S9XcBWcKX3IhRNAAFmaYzDXIUC0). sha256sum DietPi_v6.20.6_OdroidXU4-ARMv7-Stretch.img: 1459b91f66b9db98f3437c31231e44497b7b7dcd9146d2cc41a3da653f9a9215 @@ -39,13 +39,13 @@ sha256sum DietPi_v6.20.6_OdroidXU4-ARMv7-Stretch.img: * Insert the SDcard into the Odroid. -* Power up and continue with: [Run the RaspiBlitz build_sdcard.sh script](#Run-the-RaspiBlitz-build_sdcard.sh-script) +* Power up and continue with [running the RaspiBlitz build_sdcard.sh script](#Run-the-RaspiBlitz-build_sdcard.sh-script) --- ### Build your own DietPi image: -* Watch out this is an ardous process. +Watch out this is an ardous process. Updating from a v6.14 DietPi image is causing a bootloop under some circumstances. Will be sorted once the current, >6.2 version is uploaded for the Odroids. * For the Odroid HC1 / HC2 / XU3 / XU4 the start is this image: @@ -65,7 +65,7 @@ automatic apt update & apt upgrade and asks to reboot * Log back in: `ssh root@[IP-OF-DIETPI]` password: `dietpi` -* after the previous update the ssh keys might change: +* after the update the ssh keys might change: @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@ -75,8 +75,8 @@ run (can be copied from the terminal output): yes > password: `dietpi` -* At this point if the DietPi was not updated from 6.14 it does not manage to save settings going forward. -Exit the sotware installer (press Tab to jump to Exit) +* At this point if the DietPi OS was not updated from 6.14 it does not manage to save settings going forward. +Exit the software installer (press Tab to jump to Exit) ![](pictures/dietpi-software_exit.png) * in the bash prompt run: @@ -88,9 +88,7 @@ Reboots * Log back in: `ssh root@[IP-OF-DIETPI]` password: `dietpi` -* In the DietPi software menu install fail2ban and make OpenSSH server the default SSH server. -Changing the SSH server will change the SSH keys again. To clear: -`ssh-keygen -f "/home/[your-linux-username]/.ssh/known_hosts" -R "dietpi.IP"` +* In the DietPi software menu install fail2ban and make OpenSSH server the default SSH server. Ok > Cancel > Cancel Search `fail2ban` > Space to select > Enter SSH server > switch from Dropbear to the OpenSSH-server @@ -98,7 +96,10 @@ Install > Ok Opt out of survey > Ok Reboots again -* Changing the SSH server will change the SSH keys again. To clear: +* Log back in: +`ssh root@[IP-OF-DIETPI]` +password: `dietpi` +Changing the SSH server will change the SSH keys again. To clear: `ssh-keygen -f "/home/[your-linux-username]/.ssh/known_hosts" -R "dietpi.IP"` diff --git a/dietpi/README.md b/dietpi/README.md index e536455cc..c495462b9 100644 --- a/dietpi/README.md +++ b/dietpi/README.md @@ -20,6 +20,8 @@ See the [hardware comparison](hw_comparison.md). ### Setting up the DietPi OS +Getting started with DietPi: https://dietpi.com/phpbb/viewtopic.php?f=8&t=9#p9 + * Start with an ARM based Single Board Computer listed on DietPi.com. At least 1GB RAM is recommended. Look for the SD card image for the specific SBC in the [download section](https://dietpi.com/#download). @@ -32,18 +34,14 @@ Look for the SD card image for the specific SBC in the [download section](https: A USB 2.0 port will not be able to power an HDD so you will need extra cable If you are connecting the HDD to a USB 3.0 port and have an at least 2A power supply, you might be able to run without an extra cable. -* Power up and continue with: [Run the DietPi optimized Raspiblitz SDcard build script](#Run-the-RaspiBlitz-build_sdcard.sh-script) - - - -* In the desktop terminal on Linux / MacOS or Putty on Windows: +* Power up and log in with the desktop terminal on Linux / MacOS or Putty on Windows: `ssh root@[IP-OF-DIETPI]` password: `dietpi` -Getting started with DietPi: https://dietpi.com/phpbb/viewtopic.php?f=8&t=9#p9 -* You might be asked about updating DietPi. This might not be straightforward if starting froma version <6.20. Try to update, it is best to build on the latest version. -* In the DietPi software menu install fail2ban and make OpenSSH server the default SSH server. +* You might be asked about updating DietPi. This is not a straightforward process if starting from a version <6.20. Try to update, it is best to build on the latest version. + +* In the DietPi software menu install `fail2ban` and make `OpenSSH server` the default SSH server. Changing the SSH server will change the SSH keys again. To clear: `ssh-keygen -f "/home/[your-linux-username]/.ssh/known_hosts" -R "dietpi.IP"` @@ -57,13 +55,13 @@ password: `dietpi` ### Run the RaspiBlitz build_sdcard.sh script -* Format of the command to build the SDcard: +* Use this format to build the SDcard with the Raspiblitz script: `wget https://raw.githubusercontent.com/[GITHUB-USERNAME]/raspiblitz/[BRANCH]/build_sdcard.sh && sudo bash build_sdcard.sh [BRANCH] [GITHUB-USERNAME]` If you are working from a forked repo be aware of that the fork needs to be called `raspiblitz` for the git downloads to work. * Run the forked version of @openoms: `wget https://raw.githubusercontent.com/openoms/raspiblitz/raspiblitz-dev/build_sdcard.sh && sudo bash build_sdcard.sh raspiblitz-dev openoms` -This will take a couple minutes depending on your internet ceonnection and the processing power of the SBC. +This will take a couple minutes depending on your internet connection and the processing power of the SBC. * Restart when done and log back in now as `admin`: `ssh admin@[IP-OF-DROIDBLITZ]`