You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/imaging_etcher.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,8 +5,12 @@
5
5
* A micro USB cable
6
6
* Your AmpliPi
7
7
8
+
## Optional Step: Preserve your config
9
+
Assuming you're not reflashing due to a corrupted config, you can make sure to save your configuration file for later upload to save yourself the manual setup post-flash. You can get your configuration file by going to Settings -> Configuration -> Download Config. If you can't reach the app, you can also access it by SSHing in using the credentials on the screen on the front of your unit (username: pi@{IP} ; password: {4 word string on front display}) or through the USB connection that will be achieved in steps 1 , 2, and 4 and then mounting the connected drive.
10
+
Once you're in, the config file is at **/home/pi/.config/amplipi/house.json**
11
+
8
12
## 1. Get the Latest AmpliPi Image
9
-
Download the latest AmpliPi image from [here](https://storage.googleapis.com/amplipi-img/amplipi_0.3.1.img.xz) ([md5sum](https://storage.googleapis.com/amplipi-img/CHECKSUMS), [.sig](https://storage.googleapis.com/amplipi-img/CHECKSUMS.sig)) and save it to your computer.
13
+
Download the latest AmpliPi image from [here](https://storage.googleapis.com/amplipi-img/amplipi_0.4.8.img.xz) ([md5sum](https://storage.googleapis.com/amplipi-img/CHECKSUMS), [.sig](https://storage.googleapis.com/amplipi-img/CHECKSUMS.sig)) and save it to your computer.
10
14
11
15
## 2. Get RPIBoot
12
16
Download and install the latest version of RPIBoot from [here](https://github.com/raspberrypi/usbboot/raw/master/win32/rpiboot_setup.exe) on windows, otherwise refer to the instructions for [building RPIBoot](https://github.com/raspberrypi/usbboot#building).
@@ -17,7 +21,7 @@ Download and install (if necessary) the latest version of Etcher from [etcher.io
17
21
## 4. Connect your AmpliPi to your computer
18
22
19
23
**VERY IMPORTANT:** Please connect the USB cable to your computer FIRST before connecting the other side of the cable to the service port of the AmpliPro. Certain older units with TFT displays (not EINK) were susceptible to ESD damage on the USB service port. Connecting the cable to the computer first will mitigate this risk.
20
-
24
+
21
25
Unplug your AmpliPi from power and then connect your AmpliPi to your computer via the service port using the micro USB cable. Once connected, plug your AmpliPi back into power.
22
26
23
27

Copy file name to clipboardExpand all lines: scripts/configure.py
+20-1Lines changed: 20 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -459,11 +459,21 @@ def print_progress(tasks):
459
459
progress(tasks)
460
460
returntasks
461
461
tasks= []
462
+
463
+
# Comment out deb http://raspbian.raspberrypi.org/raspbian/ buster main contrib non-free rpi from /etc/apt/sources.list to avoid hitting up a now empty apt source
464
+
tasks+=print_progress([Task('Deactivate apt updates for outdated OS',
465
+
args='file=/etc/apt/sources.list; '
466
+
'if grep -q "buster" "$file" && [ "$(head -c 1 "$file")" != "#" ]; then '# If file is for rasbian buster and the first line isn't already commented out, comment out the first line
ifint(version[0]) ==0andint(version[1]) <4: # Is the version less than version 0.4.0?
1220
+
print("Your version is too old to update automatically, please update manually using this guide: https://github.com/micro-nova/AmpliPi/blob/main/docs/imaging_etcher.md")
0 commit comments