This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# Installation script for ZFS on Armbian for Helios4, a Marvell Armada 388 SoC | |
# with a ARM Cortex-A9 (ARMv7 32-bit) CPU, 2 GB ECC RAM and up to 4 disks. | |
# | |
# Tested on Armbian 19.11.3 (Debian Buster) with Linux 4.19.84 | |
# (linux-image-current-mvebu) and ZFS version 0.7.12. | |
apt-get update |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
""" | |
A simple matplotlib plotting script | |
Use the `--non-interactive` option to generate figures on remote servers without | |
a graphical user interface (GUI). For more information on matplotlib's backends | |
see: https://matplotlib.org/faq/usage_faq.html#what-is-a-backend | |
""" |