This is a mish-mash of instructions from:
Using Debian 9 Stretch.
| #!/usr/bin/env bash | |
| # | |
| # install glances system monitor onto a Debian-based System under user "glances" | |
| # https://github.com/nicolargo/glances | |
| # | |
| # This creates user "glances" (which glances presumes to do) but for the purpose of install the program glances (and the | |
| # required libraries) under permissions of user glances. This way, | |
| # - glances programs are slightly better contained under user glances permissions | |
| # - glances (and related programs) are not added to shared $PATH directories | |
| # |
| #!/usr/bin/env bash | |
| # | |
| # run single instance of glances on the system as user glances. | |
| # follows from https://gist.github.com/jtmoon79/1b5a806b3e71874542c21b1578156a42 | |
| # designed for a Debian-based Linux | |
| # | |
| # place this file at /var/lib/glances/glances-start.sh | |
| # chmod +x /var/lib/glances/glances-start.sh | |
| # should look like: | |
| # ls -l /var/lib/glances/glances-start.sh |
| # Build Air DC++ for Raspberry Pi Debian Stretch | |
| # Uses a docker Raspberry Pi image to temporarily install necessary build tools and contain the mess | |
| # | |
| # This is not a script. This is shell commands that should be copy+pasted and tweaked to your setup | |
| # | |
| # This worked for using Raspberry Pi Debian Stretch and AirDC++ version 2.7.0b | |
| # MMV | |
| # | |
| # run on Raspberry Pi |
This is a mish-mash of instructions from:
Using Debian 9 Stretch.
How to run stubby-docker as systemd service docker.stubby.service.
stubby-docker uses stubby DNS Privacy stub resolver for most work and unbound DNS for caching.
I hereby claim:
To claim this, I am signing this object:
The instructions in this gist have some subtle problems and this gist will not be updated.
| #!/usr/bin/env bash | |
| # | |
| # helper to quickly create a Python virtualenv | |
| # latest at https://github.com/jtmoon79/dotfiles/blob/master/utilities/venv-create.sh | |
| set -eu | |
| # XXX: not very portable | |
| source /etc/os-release |
| #!/usr/bin/env bash | |
| # | |
| # wrap python pip commands with helpful but tedious-to-write options | |
| # | |
| set -e | |
| set -u | |
| cmd=${1-help} | |
| shift |