Merge pull request #4 from peachcloud/fix-debian

Fix debian link in quick_deployment.md
This commit is contained in:
glyph 2020-10-21 09:27:31 +01:00 committed by GitHub
commit a702d42c43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 7 deletions

View File

@ -8,9 +8,15 @@ The instructions, configuration files and scripts referred to in this section ca
Download the latest Debian Buster preview image for RPi3 and flash it to an SD card (card is located at `/dev/mmcblk0` in this case):
`wget https://people.debian.org/~gwolf/raspberrypi3/20190628/20190628_raspberry-pi-3_buster_PREVIEW.img.xz`
`wget https://raspi.debian.net/verified/20200831_raspi_3.img.xz`
`xzcat 20190628_raspberry-pi-3_buster_PREVIEW.img.xz | sudo dd of=/dev/mmcblk0 bs=64k oflag=dsync status=progress`
on mac os, use the following command to flash the sd card:
`xzcat 20190628_raspberry-pi-3_buster_PREVIEW.img.xz | sudo dd of=/dev/sdcarddisc`
or you can use [Etcher](https://www.balena.io/etcher/).
note: if the above image link stops working, you can find the complete list of raspberry pi debian images [here](https://raspi.debian.net/tested-images/).
## Setup
Quick setup commands to connect to a local WiFi network over the `wlan0` interface (assuming `eth0` connection is not possible):
@ -18,8 +24,8 @@ Quick setup commands to connect to a local WiFi network over the `wlan0` interfa
```bash
# username
root
# password
raspberry
# password (by default raspberry debian requires no password, so we set the password for root here)
passwd
# set interface up
ip link set wlan0 up
# append ssid and password for wifi access point
@ -66,10 +72,10 @@ The `setup_dev_env.py` script can be executed once your Pi is internet-connected
_TODO: Add flags to (de)select I2C, RTC and Rust install & config. Flags should also be added which allow the installer to choose between development environment and release environment configuration._
`apt update`
`apt install git python`
`git clone https://github.com/peachcloud/peach-config.git`
`cd peach-config`
`apt update`
`apt install git python`
`git clone https://github.com/peachcloud/peach-config.git`
`cd peach-config`
`python scripts/setup_dev_env.py <USER>`
**IMPORTANT: Please do not forget to set a new password for the root user!**