The list was moved to https://github.com/yurt-page/Awesome-Cryptography-GUI
#!/bin/sh | |
# aarch64, armhf, armv7, ppc64le, s390x, x86, x86_64 | |
ARCH="armv7" # Turris Omnia | |
REVISION="8.275.01-r0" | |
DESTDIR="" # empty for root, you can set to /opt | |
# Alpine v3.13 switched to musl v1.2.0 while TurrisOS 6.4.1 uses older musl v1.1.24 | |
# Use ldd command to see a musl version. | |
# If it's newer then change the URL to https://dl-cdn.alpinelinux.org/alpine/edge/ | |
# You will also need to change the REVISION for the latest |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<script src="https://cdn.jsdelivr.net/npm/jquery@3/dist/jquery.min.js" crossorigin="anonymous"></script> | |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous"/> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script> | |
<title>Login to admin panel</title> |
https://github.com/youribonnaffe/jsr223-nativeshell https://github.com/thevpc/jshell
https://stackoverflow.com/questions/8140458/bash-script-interpreter-that-runs-in-jvm-jbash https://code.google.com/archive/p/jbash/ https://www.reddit.com/r/java/comments/5ked6p/looking_for_a_java_based_command_line_interpreter/ https://github.com/crashub/bash
https://www.baeldung.com/linux/debug-bash-script https://www.cyberciti.biz/tips/debugging-shell-script.html
My laptop batery discharged while I slept and look like my file system was broken. Or maybe I run an update and forgot. Anyway, after reboot I still had a problem: no any website was opening with some weird error that DNS can't be resolved.
And yes, the ping doesn't worked for any domain. Dig was failed too. It turned out that systemd-resolvd DNS daemon didn't started. I checked logs with
journalctl -u systemd-resolved
In logs I found that the resolved fails with an error "cannot allocate memory".and after that the servive crashed.
#!/bin/sh +ux | |
# We set the sh +ux flags so that we error on undefined variables and error on bad commands | |
help() { | |
echo >&2 "$0 [-f] [-p] [-q] [<priv_key_file>] [<key_type>] [<key_comment>]" | |
echo >&2 | |
echo >&2 "-q / --quiet to silent all output (except -p if passed)" | |
echo >&2 "-p / --pubkey to output public key after generation" | |
echo >&2 "-f / --force to force replacing existing key" | |
echo >&2 |
dman may be used to get a manual from remote: | |
https://salsa.debian.org/debian/debian-goodies/-/blob/master/dman?ref_type=heads | |
curl https://cheat.sh/grep | |
Sources: | |
https://github.com/chubin/cheat.sh | |
https://dashdash.io/ has nice design https://dashdash.io/about |
# some more ls aliases | |
alias ll='ls -alF' | |
alias la='ls -A' | |
alias l='ls -CF' | |
alias dirs="ls -al | grep '^d'" | |
# Add an "alert" alias for long running commands. Use like so: | |
# sleep 10; alert | |
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"' |
Signed-off-by: certifies that you wrote it or otherwise have the right to pass it on as a open-source patch. Specifically, that you agree to the Developer's Certificate of Origin
Acked-by: If a person was not directly involved in the preparation or handling of a patch but wishes to signify and record their approval of it then they can arrange to have an Acked-by: line. Acked-by: does not necessarily indicate acknowledgement of the entire patch.
Tested-by: A Tested-by: tag indicates that the patch has been successfully tested (in some environment) by the person named. This tag informs maintainers that some testing has been performed, provides a means to locate testers for future patches, and ensures credit for the testers.
Reviewed-by: A Reviewed-by tag is a statement of opinion that the patch is an appropriate modification without any remaining serious technical issues. Any interested reviewer (who has done the work) can offer a Reviewed-by tag for a patch.
Also we have **Co-developed-by: