minor writeups

This commit is contained in:
coelner 2022-02-26 17:32:15 +01:00
parent 2e125ea923
commit d54a636c4d
8 changed files with 77 additions and 0 deletions

View File

@ -15,3 +15,9 @@ journalctl --disk-usage && journalctl --vacuum-size={size}M
```
or prepare the file`/etc/systemd/journald.conf` and this value:`SystemMaxUse=50M`
create for all btrfs filesystems a regulary scrub timer.
```bash
for p in $(lsblk -nflo FSTYPE,MOUNTPOINT | awk '$1=="btrfs"{print $2}'); do systemctl enable --now "btrfs-scrub@$(systemd-escape -p "$p").timer"; systemctl start "btrfs-scrub@$(systemd-escape -p "$p").service"; done
```
the manual way of creating is eating the correct escape.

10
edms.md Normal file
View File

@ -0,0 +1,10 @@
# EDMS
mayan
paperless-ng
ocrmypdf
Hardware-OCR
## OCR
## Dateihandling

16
fairphone4.md Normal file
View File

@ -0,0 +1,16 @@
---
keywords:
- IT
---
## Fairphone 4
https://forum.fairphone.com/t/fp4-debloat-guide-for-better-privacy-security-and-battery-life/80003
- VoLTE/Voice over WiFi maybe not working (https://forum.fairphone.com/t/how-to-enable-volte-and-wifi-calling/82049)
-
## Android
https://github.com/0x192/universal-android-debloater
remove search bar from screen [not working]
`adb shell pm uninstall --user 0 com.google.android.googlequicksearchbox`
try this: https://lawnchair.app/

39
fido2.md Normal file
View File

@ -0,0 +1,39 @@
---
keywords:
- IT
- Security
---
# Fido2
### features
- WebAuth
- main feature, login with username (known value by user), ChallengeResponse ( secret ) and button (interactive)/PIN
- resident keys
- HMAC-secret extension
- symmetric key scoped to a credential
- https://fidoalliance.org/specs/fido-v2.0-id-20180227/fido-client-to-authenticator-protocol-v2.0-id-20180227.html#sctn-hmac-secret-extension
## hardware
#### OpenSK
#### solo2
#### nitrokey
### code snippets
```[https://gist.github.com/alexgwolff/5d7f6802996cad2847c4a16995da410b]
Using resident keys If your security key supports FIDO2 resident keys*, like the YubiKey 5 Series, YubiKey 5 FIPS Series, or the Security Key NFC by Yubico, you can enable this when creating your SSH key:
$ ssh-keygen -t ecdsa-sk -O resident
This works the same as before, except a resident key is easier to import to a new computer because it can be loaded directly from the security key. To use the SSH key on a new computer, make sure you have ssh-agent running and simply run:
$ ssh-add -K
This will load a “key handle” into the SSH agent and make the key available for use on the new computer. This works great for short visits, but it wont last forever youll need to run ssh-add again if you reboot the computer, for example. To import the key permanently, instead run:
$ ssh-keygen -K
This will write two files into the current directory: id\_ecdsa\_sk\_rk and id\_ecdsa\_sk\_rk.pub. Now you just need to rename the private key file to id\_ecdsa\_sk and move it into your SSH directory:
$ mv id\_ecdsa\_sk\_rk ~/.ssh/id\_ecdsa_sk
Finally, theres one more feature to be excited about…
```
## references
https://2fa.directory/int/

View File

@ -1,6 +1,7 @@
---
keywords:
- IT
- Security
---
## Gnuk
Passport-opensc:[ https://javacardos.com/tools/passport]( https://javacardos.com/tools/passport)

4
linux_perf_problems.md Normal file
View File

@ -0,0 +1,4 @@
# debug perfomance problems
https://netflixtechblog.com/linux-performance-analysis-in-60-000-milliseconds-accc10403c55
introduction to ebpf: https://www.brendangregg.com/ebpf.html

1
linux_shell.md Normal file
View File

@ -0,0 +1 @@
![shell-startup.png](shell-startup.png)

BIN
shell-startup.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 185 KiB