@ -1,155 +0,0 @@ |
|||
# Background: Blockchain Download |
|||
|
|||
## Why do we need to download the blockchain and not syncing it? |
|||
|
|||
The RaspiBlitz is powered by the RaspberryPi. The processing power of this SingleBoardComputer is too low to make a fast sync of the blockchain from the bitcoin peer to peer network during setup process (validation). To sync and index the complete blockchain could take weeks or even longer. Thats why the RaspiBlitz needs to download a prepared blockchain from another source. |
|||
|
|||
## Is downloading the blockchain secure? |
|||
|
|||
The downloaded Blockchain is pre-indexed and pre-validated. That is secure enough because if the user gets a "manipulated" blockchain it would not work after setup. The beginning of the downloaded blockchain needs to fit the genesis block (in bitcoind software) and the end of the downloaded blockchain needs not match with the rest of the bitcoin network state - hashes of new block distrubuted within the peer-2-peer network need to match the downloaded blockchain head. So if you downloaded a manipulated blockchain it would simply just dont work in practice. |
|||
|
|||
There might be theoretical scenarios why it would be bad for the whole network if anybody is downloading a prepared blockchain and not syncing and self-validating every block, but with a lot of self-validating full nodes already out there, just putting some RaspiBlitz with a downloaded blockchain into the mix and runnig as a self-valifating full node from that point on, is practically just strengthening the the overall network. And dont forget, the most important part of running a full node is to validate the new blocks summited by the miners - to balance out there power and to keep the Bitcoin network running by our rules. |
|||
|
|||
If you have any link to a more detailed discussion of this topic, please add it here for people to do their own research. |
|||
|
|||
## Blockchain Data |
|||
|
|||
The RaspiBlitz needs the following files from a bitcoind (>=0.17.0) that is fully sync and has indexing switched on (has line txindex=1 in bitcoin.conf file) - all files from the directories: |
|||
``` |
|||
/blocks |
|||
/chainstate |
|||
/indexes |
|||
``` |
|||
Notice: If you had your node fully sync but not indexed, once you switch it on you need to start your client and wait for it to verify the chain and index before copying the folders above to your external HDD. This can take a couple of hours. |
|||
|
|||
Make sure not to add other files like wallet data or lock files to a prepared download. |
|||
|
|||
You might want to include the testnet data also - then add the testnet3 folder that just contains the same three folders from the testnet blockchain. |
|||
|
|||
On download all those files need to be placed finally in the /mnt/hdd/bitcoin folder of the RaspiBlitz. |
|||
|
|||
## Download Process |
|||
|
|||
At the moment the RaspiBlitz offers two technical ways to download the blockchain: |
|||
|
|||
### FTP Download (fallback) |
|||
|
|||
The easiest way is to put the blockchain data on a FTP server and let people download it. FTP is able to download complete directories - HTTP can just handle single file. FTP clients and server hosting is widly available. |
|||
|
|||
The downside that this is a central point solution and is hard to scale up (without spending a lot of money). But it is available as a backup, if other solutions do not work. |
|||
|
|||
### Torrent Download (default) |
|||
|
|||
The preferred way is to to download the blockchain data thru the peer2peer torrent network. This way the community can help to seed the torrents (at least while downloading). Supporters of the project can setup constant seeding. There is no single point of failure within the download structure. |
|||
|
|||
In the beginning we used just on torrent file - containing all the directories and data like mentioned above. But this had the downside, that everytime when we update the torrent the seeding is bad in the beginning and downloads are slow. Good seeding needs time to build up. |
|||
|
|||
Thats why there are two torrent files now: |
|||
|
|||
#### Base Torrent File |
|||
|
|||
Inspired by the website getbitcoinblockchain.com we use one of their base torrent files to have a basic set of blocks - that will not change for the future. This torrent contains most of the data (the big file) and we dont need to change the torrent for a long time. This way the torrent can get establish a wide spread seeding and the torrent network can take the heavy load. |
|||
|
|||
At the moment this is just the bitcoin blk and rev files up to the number: |
|||
- /blocks : 01390 |
|||
- /testnet3/blocks: 00152 |
|||
|
|||
For litecoin its blk and rev files up to the number: |
|||
- /blocks : 00124 |
|||
|
|||
#### Update Torrent File (Description) |
|||
|
|||
All the rest of the files get packaged into a second torrent file. This file will be updated much more often. The seeding is expected to be not that good and download may be slower, but thats OK because its a much smaller file. |
|||
|
|||
This way a good balance between good seeding and up-to-date blockchain can be reached. |
|||
|
|||
#### Update Torrent File (Creation) |
|||
|
|||
To create the Update Torrent file, follow the following step ... |
|||
|
|||
Have a almost 100% synced bitcoind MAINNET with txindex=1 on a RaspiBlitz |
|||
(remove all funds from this node - because blockchain get messed with) |
|||
|
|||
Stop bitcoind with: |
|||
``` |
|||
sudo systemctl stop bitcoind |
|||
``` |
|||
|
|||
Delete base torrent blk-files with: |
|||
``` |
|||
sudo rm /mnt/hdd/bitcoin/blocks/blk00*.dat |
|||
sudo rm /mnt/hdd/bitcoin/blocks/blk0{1000..1390}.dat |
|||
``` |
|||
|
|||
Delete base torrent rev-files with: |
|||
``` |
|||
sudo rm /mnt/hdd/bitcoin/blocks/rev00*.dat |
|||
sudo rm /mnt/hdd/bitcoin/blocks/rev0{1000..1390}.dat |
|||
``` |
|||
|
|||
Now change to your computer where you package the torrent files and transfere the three directories into your torrent base directory (should be your current working directory): |
|||
``` |
|||
scp -r bitcoin@[RaspiBlitzIP]:/mnt/hdd/bitcoin/blocks ./blocks |
|||
scp -r bitcoin@[RaspiBlitzIP]:/mnt/hdd/bitcoin/chainstate ./chainstate |
|||
scp -r bitcoin@[RaspiBlitzIP]:/mnt/hdd/bitcoin/indexes ./indexes |
|||
``` |
|||
|
|||
Also have a almost 100% synced bitcoind TESTNET with txindex=1 on a RaspiBlitz |
|||
|
|||
Stop bitcoind with: |
|||
``` |
|||
sudo systemctl stop bitcoind |
|||
``` |
|||
|
|||
Delete base torrent blk-files with: |
|||
``` |
|||
sudo rm /mnt/hdd/bitcoin/testnet3/blocks/blk000*.dat |
|||
sudo rm /mnt/hdd/bitcoin/testnet3/blocks/blk00{100..152}.dat |
|||
``` |
|||
|
|||
Delete base torrent rev-files with: |
|||
``` |
|||
sudo rm /mnt/hdd/bitcoin/testnet3/blocks/rev000*.dat |
|||
sudo rm /mnt/hdd/bitcoin/testnet3/blocks/rev00{100..152}.dat |
|||
``` |
|||
|
|||
Now change again to your computer where you package the torrent files and transfere the three directories into your torrent base directory (should be your current working directory): |
|||
``` |
|||
mkdir testnet3 |
|||
scp -r bitcoin@[RaspiBlitzIP]:/mnt/hdd/bitcoin/testnet3/blocks ./testnet3/blocks |
|||
scp -r bitcoin@[RaspiBlitzIP]:/mnt/hdd/bitcoin/testnet3/chainstate ./testnet3/chainstate |
|||
scp -r bitcoin@[RaspiBlitzIP]:/mnt/hdd/bitcoin/testnet3/indexes ./testnet3/indexes |
|||
``` |
|||
|
|||
(Re-)name the "torrent base directory" to the same name as the torrent UPDATE file itself later (without the .torrent ending). For the correct naming see the chapter "Torrent Files Naming Schema" below. |
|||
|
|||
Now open your torrent client (e.g. qTorrent for OSX) and create a new torrent-file with the freshly renamed "torrent base directory" as source directory. |
|||
|
|||
Add this list of trackers to your torrent and start seeding (keep a free/empty line between the three single trackers): |
|||
``` |
|||
udp://tracker.justseed.it:1337 |
|||
|
|||
udp://tracker.coppersurfer.tk:6969/announce |
|||
|
|||
udp://open.demonii.si:1337/announce |
|||
|
|||
udp://denis.stalker.upeer.me:6969/announce |
|||
``` |
|||
|
|||
Name the new torrent file |
|||
|
|||
To create the torrent file can take some time. Finally add the generated torrent file to the /home.admin/assets/ of the github and change the name of the updateTorrent varibale file in the script 50torrentHDD.bitcoin.sh |
|||
|
|||
#### Torrent Files Naming Schema |
|||
|
|||
The base torrent file should always have the following naming scheme: |
|||
|
|||
`raspiblitz-[CHAINNETWORK][BASEITERATIONNUMBER]-[YEAR]-[MONTH]-[DAY]-base.torrent` |
|||
|
|||
So for example the second version of the base torrent for litecoin created on 2018-10-31 would have this name: raspiblitz-litecoin2-2018-10-31-base.torrent |
|||
|
|||
The update torrentfile should always have the following naming schema: |
|||
|
|||
`raspiblitz-[CHAINNETWORK][BASEITERATIONNUMBER]-[YEAR]-[MONTH]-[DAY]-update.torrent` |
|||
|
|||
So for exmaple an update torrent created on 2018-12-24 for litecoin that is an update to the second base torrent version would have this name: raspiblitz-litecoin2-2018-12-24-update.torrent |
@ -1,43 +0,0 @@ |
|||
# Background: RaspiBlitz Settings |
|||
|
|||
## Before Version 1.0 |
|||
|
|||
The RaspiBlitz started as small collection of shell scripts to setup a bitcoin+lightning node. At this time it was not needed to have settings file. The idea was that the scripts analyse the system state and make the changes required - automatically trying to catch up. That was OK as long RaspiBlitz was just a helper to setup your Lightning node and the rest was up to you. |
|||
|
|||
Over time users that are running a RaspiBlitz expected that it can handle more complex setup and customization. Also it should be easy to update the system (exchange sd card with a newer image) and should be able to have the same configuration afterwards - keeping its state. Thats why starting from version 1.0 there will be a raspiblitz config file stored on the HDD that stores stores the config state. |
|||
|
|||
## The Config File |
|||
|
|||
The RaspiBlitz config file is stored on the HDD root: |
|||
|
|||
`/mnt/hdd/raspiblitz.conf` |
|||
|
|||
Its simple structure is: one key-value pair per line. In the end its bash-script syntax to define varibales. The RaspiBlitz shell scripts can import this file with: |
|||
|
|||
`source /mnt/hdd/raspiblitz.conf` |
|||
|
|||
After this line all the config values are available and can be worked with. I prefer to call this line in scripts explicitly and not setting this values as environment variables, because when you read as a newbie such a script, you get an idea where the config file is stored. |
|||
|
|||
## The Config Values |
|||
|
|||
So see what config parameters are available check the comments in the following script: |
|||
|
|||
`/home/admin/_bootstrap.sh` |
|||
|
|||
## Adding new Config Values |
|||
|
|||
If you extend the RaspiBlitz scripts and you have the need to add a new config key-value add it to the `/home/admin/00enforceConfig.sh` script. There is a section for default values and setting them in the config file, if they dont exist there yet. Because this script runs on every startup, you can be sure that the default value is then available to your extended script - especially if people update their system. |
|||
|
|||
## Bootstrap Service: Enforcing the Config |
|||
|
|||
On every start of the RaspiBlitz take the config file and check if the system is running as stated in the config file and when needed make changes to the system. This is done by calling this script on startup with systemd: |
|||
|
|||
`/home/admin/_bootstrap.sh` |
|||
|
|||
So if you change the config by hand or you write a script that changes the config, then simply trigger a restart the RaspiBliz. |
|||
|
|||
Having this script checking the system on every startup, the user can easily update the SD card with a fresh image and the system will automatically establish the old state. |
|||
|
|||
## What to put into the config file and what not |
|||
|
|||
All values users put into setup or setting dialogs and that is not stored on the HDD (for example in the config files of lnd or bitcoin) is a hot cadidate to put into the raspi config file. Some values make sense to get stored as a duplicate (for performance or easy of access) - but dont get to wild. |
@ -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) <laanwj@gmail.com>" 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 <laolu32@gmail.com>" 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. |
Before Width: | Height: | Size: 37 KiB |
@ -1,2 +1,2 @@ |
|||
# RaspiBlitz Version - always [main].[sub] |
|||
codeVersion="0.99" |
|||
codeVersion="1.0" |
After Width: | Height: | Size: 136 KiB |
After Width: | Height: | Size: 422 KiB |
After Width: | Height: | Size: 37 KiB |
After Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 3.3 MiB After Width: | Height: | Size: 2.8 MiB |
After Width: | Height: | Size: 19 KiB |
After Width: | Height: | Size: 46 KiB |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 2.1 MiB After Width: | Height: | Size: 2.8 MiB |
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 65 KiB |
After Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 33 KiB |
After Width: | Height: | Size: 38 KiB |
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 30 KiB |
@ -1,8 +1,9 @@ |
|||
The RaspiBlitz software is build and tested for the following Hardware set that you can buy cheap on Amazon.com.au: |
|||
|
|||
* RaspBerry Pi 3 ($38.75): https://www.amazon.com/RS-Components-Raspberry-Pi-Motherboard/dp/B07BFH96M3 |
|||
* Micro SD-Card 16GB ($6.23): https://www.amazon.com/SanDisk-Mobile-MicroSDHC-SDSDQM-B35A-Adapter/dp/B004ZIENBA |
|||
* Power ($21.04): https://www.amazon.com.au/Ils-Supply-Adapter-Charger-Raspberry/dp/B07F2JLSCL/ |
|||
* 1TB Hard Drive($49.99): https://www.amazon.com/Toshiba-Advance-Portable-External-HDTC910XR3AA/dp/B079H7VYY6 |
|||
* Case ($7.50): https://www.amazon.com/Raspberry-Model-Protective-Heatsinks-Clear/dp/B01CDVSBPO |
|||
* LCD-Display ($19.99): https://www.amazon.com/ELEGOO-Raspberry-Display-480x320-Interface/dp/B01N3JROH8 |
|||
## Shopping List: Amazon Australia |
|||
|
|||
* RaspBerry Pi 3: https://www.amazon.com/RS-Components-Raspberry-Pi-Motherboard/dp/B07BFH96M3 |
|||
* Micro SD-Card 16GB: https://www.amazon.com/SanDisk-Mobile-MicroSDHC-SDSDQM-B35A-Adapter/dp/B004ZIENBA |
|||
* Power: https://www.amazon.com.au/Ils-Supply-Adapter-Charger-Raspberry/dp/B07F2JLSCL/ |
|||
* 1TB Hard Drive: https://www.amazon.com/Toshiba-Advance-Portable-External-HDTC910XR3AA/dp/B079H7VYY6 |
|||
* Case: https://www.amazon.com/Raspberry-Model-Protective-Heatsinks-Clear/dp/B01CDVSBPO |
|||
* LCD-Display: https://www.amazon.com/ELEGOO-Raspberry-Display-480x320-Interface/dp/B01N3JROH8 |
@ -1,13 +1,10 @@ |
|||
The RaspiBlitz software is built and tested for the following hardware set that you can buy on [PLAY-ZONE](https://www.play-zone.ch/) and [BRACK](https://www.brack.ch/): |
|||
## Shopping List: PlayZone/Brack Czech |
|||
|
|||
* Raspberry Pi3 Model B+ (CHF 57.90): https://www.play-zone.ch/de/raspberry-pi3-model-b-1-4ghz-gigabit-lan-wlan-bluetooth-64bit-inkl-16-gb-noobs-sd-karte.html |
|||
* Includes a Micro SD card with 16GB capacity |
|||
* 3.5'' TFT Display (CHF 69.90): https://www.play-zone.ch/de/3-5-tft-display-800x480-pixel-60fps-mit-acryl-gehause-fur-den-raspberry-pi.html |
|||
* Raspberry Pi3 Model B+: https://www.play-zone.ch/de/raspberry-pi3-model-b-1-4ghz-gigabit-lan-wlan-bluetooth-64bit-inkl-16-gb-noobs-sd-karte.html |
|||
* Includes a Micro SD card with 16GB capacity |
|||
* 3.5'' TFT Display: https://www.play-zone.ch/de/3-5-tft-display-800x480-pixel-60fps-mit-acryl-gehause-fur-den-raspberry-pi.html |
|||
* Includes an acryl glass case |
|||
* Power supply 3A (CHF 29.90): https://www.play-zone.ch/de/netzteil-ac-dc-adapter-5v-dc-3000ma-microusb.html |
|||
* 1TB Hard Drive (CHF 51.00): https://www.brack.ch/maxtor-externe-festplatte-421628 |
|||
* Power supply >=3A: https://www.play-zone.ch/de/netzteil-ac-dc-adapter-5v-dc-3000ma-microusb.html |
|||
* 1TB Hard Drive: https://www.brack.ch/maxtor-externe-festplatte-421628 |
|||
|
|||
Total: CHF 208.70 |
|||
|
|||
**Warning**: This display is different from the one available at Amazon and needs a specific driver! |
|||
Be sure to select "No" when asked by the install script if you have the default display! |
|||
**Warning**: This display is different from the one available at Amazon and needs a specific driver! You need to build your own sd card image and select "No" when asked by the building script if you have the default display! |
|||
|
@ -1,19 +1,15 @@ |
|||
## Hardware Needed (Taobao.com/T-Mall Shopping List) |
|||
## Shopping List: Taobao/T-Mall China |
|||
|
|||
*The RaspiBlitz software is build and tested for the following Hardware set that you can buy cheap on taobao.com:* |
|||
|
|||
Set RaspBerry Pi + accessories (¥378.00 CNY) : |
|||
Set RaspBerry Pi + accessories: |
|||
* RaspBerry Pi 3 B+ |
|||
* Micro SD-Card 16GB |
|||
* Power Unit 2.5A |
|||
* Power Unit 2.5A (3A+ is remmomended) |
|||
* several items (e.g. cooling fins) |
|||
https://item.taobao.com/item.htm?spm=a1z09.2.0.0.46982e8dibAzMc&id=550270480898&_u=b110k44d3302 |
|||
|
|||
Single HDD (Bulk) : |
|||
* 1TB Hard Drive (¥379.00 CNY) |
|||
* 1TB Hard Drive |
|||
https://detail.tmall.com/item.htm?id=38476523976&spm=a1z09.2.0.0.46982e8dibAzMc&_u=b110k44d53f4&sku_properties=5919063:6536025 |
|||
|
|||
Set LCD Display + Clear case (acrylic) (¥110.00 CNY) : |
|||
https://item.taobao.com/item.htm?spm=a1z0d.6639537.1997196601.60.49a77484QE4kv4&id=577238622706 |
|||
|
|||
**Total Price: ¥867.00 CNY** approx. 111 EUR or 128 USD |
|||
Set LCD Display + Clear case (acrylic): |
|||
https://item.taobao.com/item.htm?spm=a1z0d.6639537.1997196601.60.49a77484QE4kv4&id=577238622706 |
@ -1,13 +1,9 @@ |
|||
## Hardware Needed (Alza.cz, Amazon.com and czc.cz Shopping List) |
|||
## Shopping List: Amazon/Alza/CZC Czech |
|||
|
|||
_The RaspiBlitz software is build and tested for the following Hardware set that you can buy cheap on Alza.cz, Amazon.com and czc.cz:_ |
|||
|
|||
- RaspBerry Pi 3 (1.129 Kč) https://www.alza.cz/raspberry-pi-3-model-b-d5284636.htm?o=1 |
|||
- Micro SD-Card 16GB (379 Kč) https://www.alza.cz/EN/kingston-micro-sdhc-16gb-class-10-uhs-i-industrial-temp-sd-adapter?dq=4156874&o=2 |
|||
- Power (399 Kč)https://www.alza.cz/EN/alzapower-q100-quick-charge-3-0-black-d5324257.htm?o=2 |
|||
- RaspBerry Pi 3: https://www.alza.cz/raspberry-pi-3-model-b-d5284636.htm?o=1 |
|||
- Micro SD-Card 16GB: https://www.alza.cz/EN/kingston-micro-sdhc-16gb-class-10-uhs-i-industrial-temp-sd-adapter?dq=4156874&o=2 |
|||
- Power: https://www.alza.cz/EN/alzapower-q100-quick-charge-3-0-black-d5324257.htm?o=2 |
|||
- maybe you need an micro usb cable |
|||
- 1TB Hard Drive (1.349 Kč) https://www.czc.cz/toshiba-canvio-basics-1tb-cerna/235949/produkt?gclid=EAIaIQobChMIgpLF5Mac3gIVCM53Ch3D9QWpEAQYAyABEgK-ZfD_BwE |
|||
- Case (159 Kč) https://www.alza.cz/EN/raspberry-pi-black-d3837597.htm?o=1 |
|||
- LCD-Display (450.46 Kč) (delivered to Czech Republic) https://www.amazon.com/dp/B01N3JROH8/ref=cm_sw_r_cp_ep_dp_-gOuBb2Q6T0C5 |
|||
|
|||
**Total Price: 3.865,46 Kč** |
|||
- 1TB Hard Drive: https://www.czc.cz/toshiba-canvio-basics-1tb-cerna/235949/produkt?gclid=EAIaIQobChMIgpLF5Mac3gIVCM53Ch3D9QWpEAQYAyABEgK-ZfD_BwE |
|||
- Case: https://www.alza.cz/EN/raspberry-pi-black-d3837597.htm?o=1 |
|||
- LCD-Display (delivered to Czech Republic): https://www.amazon.com/dp/B01N3JROH8/ref=cm_sw_r_cp_ep_dp_-gOuBb2Q6T0C5 |
|||
|
@ -0,0 +1,8 @@ |
|||
## Shopping List: Amazon Germany |
|||
|
|||
* RaspBerry Pi 3: https://www.amazon.de/dp/B07BDR5PDW |
|||
* Micro SD-Card 16GB: https://www.amazon.de/gp/product/B073K14CVB/ |
|||
* Power >=3A: https://www.amazon.de/gp/product/B01JZE38QE |
|||
* 1TB Hard Drive: https://www.amazon.de/dp/B07997KKSK?th=1 |
|||
* Case: https://www.amazon.de/dp/B0173GQF8Y |
|||
* LCD-Display: https://www.amazon.de/gp/product/B06X191RX7 |
@ -1,12 +1,8 @@ |
|||
## Hardware Needed (Amazon.fr Shopping List) |
|||
## Shopping List: Amazon France |
|||
|
|||
*The RaspiBlitz software is build and tested for the following Hardware set that you can buy cheap on Amazon.fr:* |
|||
|
|||
* RaspBerry Pi 3 (38,00 EUR) https://www.amazon.fr/dp/B07BDR5PDW |
|||
* Micro SD-Card 16GB (9,53 EUR) https://www.amazon.fr/dp/B073K14CVB/ |
|||
* Power (8,99 EUR) https://www.amazon.fr/dp/B01566WOAG |
|||
* 1TB Hard Drive (46,80 EUR) https://www.amazon.fr/dp/B07997KKSK |
|||
* Case (7,41 EUR) https://www.amazon.fr/dp/B0173GQF70/ |
|||
* LCD-Display (16,99 EUR) https://www.amazon.fr/dp/B01N2N86HB/ |
|||
|
|||
**Total Price: 127,72 EUR** |
|||
* RaspBerry Pi 3: https://www.amazon.fr/dp/B07BDR5PDW |
|||
* Micro SD-Card 16GB: https://www.amazon.fr/dp/B073K14CVB/ |
|||
* Power: https://www.amazon.fr/dp/B01566WOAG |
|||
* 1TB Hard Drive: https://www.amazon.fr/dp/B07997KKSK |
|||
* Case: https://www.amazon.fr/dp/B0173GQF70/ |
|||
* LCD-Display: https://www.amazon.fr/dp/B01N2N86HB/ |
@ -1,8 +1,8 @@ |
|||
*The RaspiBlitz software is build and tested for the following Hardware set that you can buy cheap on Amazon.co.uk:* |
|||
## Shopping List: Amazon UK |
|||
|
|||
* RaspBerry Pi 3 https://www.amazon.co.uk/Raspberry-Pi-Model-64-Bit-Processor/dp/B07BDR5PDW |
|||
* Micro SD-Card 16GB https://www.amazon.co.uk/Kingston-SDC10G2-16GB-microSDHC-Included/dp/B0162YQEIE |
|||
* Power https://www.amazon.co.uk/iTrunk-Raspberry-Model-Supply-Charger/dp/B01MFFSPHE |
|||
* 1TB Hard Drive https://www.amazon.co.uk/Toshiba-Canvio-Basics-Portable-External/dp/B00KWHJY7Q |
|||
* Case https://www.amazon.co.uk/SB-Components-Transparent-Case-Raspberry/dp/B0173GQF8Y |
|||
* LCD-Display https://www.amazon.co.uk/ELEGOO-480x320-Raspberry-Monitor-Interface/dp/B01MRQTMTD |
|||
* RaspBerry Pi 3: https://www.amazon.co.uk/Raspberry-Pi-Model-64-Bit-Processor/dp/B07BDR5PDW |
|||
* Micro SD-Card 16GB: https://www.amazon.co.uk/Kingston-SDC10G2-16GB-microSDHC-Included/dp/B0162YQEIE |
|||
* Power: https://www.amazon.co.uk/iTrunk-Raspberry-Model-Supply-Charger/dp/B01MFFSPHE |
|||
* 1TB Hard Drive: https://www.amazon.co.uk/Toshiba-Canvio-Basics-Portable-External/dp/B00KWHJY7Q |
|||
* Case: https://www.amazon.co.uk/SB-Components-Transparent-Case-Raspberry/dp/B0173GQF8Y |
|||
* LCD-Display: https://www.amazon.co.uk/ELEGOO-480x320-Raspberry-Monitor-Interface/dp/B01MRQTMTD |
@ -1,12 +1,8 @@ |
|||
## Hardware Needed (Amazon.com Shopping List) |
|||
## Shopping List: Amazon USA |
|||
|
|||
*The RaspiBlitz software is build and tested for the following Hardware set that you can buy cheap on Amazon.com:* |
|||
|
|||
* RaspBerry Pi 3 ($39.70 USD) http://a.co/ahl7RIp |
|||
* Micro SD-Card 16GB ($5.99 USD) http://a.co/d/710f4oJ |
|||
* Power ($8.88 USD) http://a.co/d/fVVOYZZ |
|||
* 1TB Hard Drive ($49.99 USD) http://a.co/eUgVfLd |
|||
* Case ($7.99 USD) http://a.co/1774Hwl |
|||
* LCD-Display ($19.99 USD) http://a.co/65p2wu6 |
|||
|
|||
**Total Price: $132.54 USD** |
|||
* RaspBerry Pi 3: http://a.co/ahl7RIp |
|||
* Micro SD-Card 16GB: http://a.co/d/710f4oJ |
|||
* Power: http://a.co/d/fVVOYZZ |
|||
* 1TB Hard Drive: http://a.co/eUgVfLd |
|||
* Case: http://a.co/1774Hwl |
|||
* LCD-Display: http://a.co/65p2wu6 |