sudo apt install flatpat -y -q
curl -L https://github.com/nextcloud-releases/talk-desktop/releases/latest/download/Nextcloud.Talk-linux-x64.flatpak -o /tmp/Nextcloud.Talk-linux-x64.flatpak
sudo flatpak install /tmp/Nextcloud.Talk-linux-x64.flatpak -y
rm /tmp/Nextcloud.Talk-linux-x64.flatpak
This is part of a blog post I wrote: https://debugging.works/blog/tpm-explained/
- I use it on Arch Linux (systemd 257.3-1)
- Install dependency:
yay tpm2-tools(5.7-1)
This file contains hidden or 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
| #!/bin/bash | |
| NCAT_URL="https://github.com/andrew-d/static-binaries/raw/master/binaries/linux/x86_64/ncat" | |
| NCAT_FILE="$(pwd)/ncat" | |
| HOST="localhost" | |
| PORT="8443" | |
| install_ncat() { | |
| wget $NCAT_URL -O "$NCAT_FILE" |
This file contains hidden or 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
| #!/bin/bash | |
| echo "Analysiere System..." | |
| echo "Schreibe Logdatei nach /tmp/analyse.log" | |
| exec > /tmp/analyse.log 2>&1 | |
| set -x | |
| ITERATIONS=4 | |
| date |
Hey,
I have a project called riseup-vpn-configurator which uses python and poetry. The project is already published on AUR, but it's currently broken. The issue is: the python files are missing and are not part of the wheel package.
Checkout the PKGBUILD. To build the python project, I use python -m build --wheel --no-isolation. This is recommended by the Arch-Wiki.
I can build it manually, then riseup_vpn_configurator/*.py files are part of the package
kmille@linbox:tmp
kmille@linbox:tmp curl -L -o riseup.tar.gz https://github.com/kmille/riseup-vpn-configurator/archive/refs/tags/v0.1.2.tar.gz
This file contains hidden or 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
| How to root and enable Google Wallet on a CustomROM (Lineage). You have to do this after each system update | |
| Preparations | |
| - install Magisk app https://github.com/topjohnwu/Magisk | |
| - install rootbeer (a simple root checking app) https://github.com/scottyab/rootbeer | |
| - install Termux (use the F-Droid version, only needed for testing) https://f-droid.org/en/packages/com.termux/ | |
| 1) Update Android via OTA-Updater | |
| - Android -> Settings-> System -> Advanced -> Updater | |
| - search for update, DOWNLOAD the image, click INSTALL |
This file contains hidden or 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
| #!/bin/bash | |
| set -eu | |
| REPOSITORY="host:directory" | |
| BACKUP_PREFIX="desktop_data" | |
| MOUNTPOINT="/home/user/mnt" | |
| BORG_RELOCATED_REPO_ACCESS_IS_OK=yes | |
| echo -n "Encryption Password: " |