From b6241bf60f9cfdd9e7501e650833cd49adaa9036 Mon Sep 17 00:00:00 2001 From: openoms Date: Tue, 22 Jan 2019 13:52:19 +0000 Subject: [PATCH] try building --- DietPi/install.md | 39 ++++++++++++++++++++++++++ DietPi/sdcard_build_output | 0 build.sdcard/raspbianStretchDesktop.sh | 2 +- 3 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 DietPi/install.md create mode 100644 DietPi/sdcard_build_output diff --git a/DietPi/install.md b/DietPi/install.md new file mode 100644 index 000000000..b29063717 --- /dev/null +++ b/DietPi/install.md @@ -0,0 +1,39 @@ +https://dietpi.com/phpbb/viewtopic.php?f=8&t=9#p9 + +Step 4: +Login to DietPi +username = root +password = dietpi +DietPi also comes pre-installed with Dropbear SSH Server. + +ssh root@dietpi.IP +password: dietpi + +automatic apt update & apt upgrade on first logon and reboots + +ssh root@dietpi.IP + +@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ +@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ +@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ + +run: ssh-keygen -f "/home/buidl/.ssh/known_hosts" -R "dietpi.IP" + +ssh root@dietpi.IP +Ok in the menu +" Do you wish to continue with DietPi as a pure minimal image? " +Ok +Reboots again + +ssh root@dietpi.IP +no opens only the bash prompt + +wget https://raw.githubusercontent.com/rootzoll/raspiblitz/master/build.sdcard/raspbianStretchDesktop.sh && sudo bash raspbianStretchDesktop.sh + +see my output: [](raspiblitz/DroidBllitz/sdcard_build_output) + + user `admin` + default password is now `raspiblitz` + + + `ssh admin@[IP-OF-YOUR-RASPI]`. \ No newline at end of file diff --git a/DietPi/sdcard_build_output b/DietPi/sdcard_build_output new file mode 100644 index 000000000..e69de29bb diff --git a/build.sdcard/raspbianStretchDesktop.sh b/build.sdcard/raspbianStretchDesktop.sh index 74516ee88..5eb883d6a 100644 --- a/build.sdcard/raspbianStretchDesktop.sh +++ b/build.sdcard/raspbianStretchDesktop.sh @@ -309,7 +309,7 @@ sudo -u admin wget https://github.com/lightningnetwork/lnd/releases/download/v${ sudo -u admin wget https://keybase.io/roasbeef/pgp_keys.asc # check binary is was not manipulated (checksum test) -binaryChecksum=$(sha256sum ${binaryName} | cut -d " " -f1) +binaryChecksum=$(shasum -a 256 ${binaryName} | cut -d " " -f1) if [ "${binaryChecksum}" != "${lndSHA256}" ]; then echo "!!! FAIL !!! Downloaded LND BINARY not matching SHA256 checksum: ${lndSHA256}" exit 1