$ curl https://nixos.org/nix/install | sh
$ curl https://nixos.org/nix/install | sh
Instructions how to install Debian using debootstrap. Below instructions were verified to work with debootstrapping Debian 11.
| # ssh key generator data source expects the below 3 inputs, and produces 3 outputs for use: | |
| # "${data.external.ssh_key_generator.result.public_key}" (contents) | |
| # "${data.external.ssh_key_generator.result.private_key}" (contents) | |
| # "${data.external.ssh_key_generator.result.private_key_file}" (path) | |
| data "external" "ssh_key_generator" { | |
| program = ["bash", "${path.root}/../ssh_key_generator.sh"] | |
| query = { | |
| customer_name = "${var.customer_name}" | |
| customer_group = "${var.customer_group}" |
So far the most useful documentation was at Lineage's Redmi section, random "mobile enthusiast" sites were "not very good" and youtube videos are to be avoided like the plague.
miflash_unlock-en-5.5.224.24.zip)twrp-3.5.2_9-0-santoni.img), from twrp siteHere we create the master key. We want only Certify capability: we use the master key only to create the subkeys, Sign - Encrypt - Authenticate capabilities will be assigned to the subkeys.
Run the following command to start the master key generation process. Select the set your own capabilities creation process (type 8)
▶ gpg --full-generate-key --expert
gpg (GnuPG) 2.2.9; Copyright (C) 2018 Free Software Foundation, Inc.
| if toupper(substitute(system('uname'), '\n', '', '')) =~ 'DARWIN' | |
| \ && exists('+pythonhome') | |
| \ && exists('+pythondll') | |
| \ && exists('+pythonthreehome') | |
| \ && exists('+pythonthreedll') | |
| let python_path = '/opt/local/Library/Frameworks/Python.framework/Versions' | |
| for i in range(0, 9) | |
| if filereadable(python_path . '/2.' . i . '/lib/libpython2.' . i . '.dylib') | |
| let &pythonhome = python_path . '/2.' . i | |
| let &pythondll = python_path . '/2.' . i . '/lib/libpython2.' . i . '.dylib' |
- Wget ftp://ftp.gnu.org/pub/gnu/gettext/gettext...t-0.12.1.tar.gz
- Untar file as tar -zxvf gettext-0.12.1.tar.gz
cdto the directory containing the package's source code and type./configureto configure the package for your system. If you're usingcshon an old version of System V, you might need to typesh ./configureinstead to preventcshfrom trying to executeconfigureitself.
Running
configuretakes awhile. While running, it prints some messages telling which features it is checking for.
- Type
maketo compile the package.- Optionally, type
make checkto run any self-tests that come with the package.- Type
make installto install the programs and any data files and documentation.
| package main | |
| import ( | |
| "bufio" | |
| "fmt" | |
| "os" | |
| ) | |
| func main() { | |
| reader := bufio.NewReader(os.Stdin) |
Start with a simple deployment:
kubectl run simple --image=quay.io/dcooley/simple-app:plain --replicas=3 --port=80 --labels=app=simple
show the yaml for this deployment:
$ kubectl get deployment simple -o yaml --export
apiVersion: extensions/v1beta1
kind: Deployment