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
# to install with full disk encryption and more than 1 partition, you need to either | |
* enter your password for each encrypted partition (also your disk layout is transparent) | |
* install a helper to enter a single password multiple times | |
* put all the partitions into LVM and decrypt once (at the cost of more abstraction layers) | |
with EFI + GRUB + LVM on a big LUKS on /dev/sda, these are the steps: | |
1. partition with a small (~300MB ESP partition for EFI) as /dev/sda1, and a large LUKS partition as /dev/sda2 | |
2. encrypt /dev/sda2 | |
`cryptsetup -v --type luks --iter-time 5000 --verify-passphrase luksFormat /dev/sda2` | |
--iter-time increases iterations of pbkdf2, to increase security at the cost of time |
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
~/.config/pipewire/pipewire.conf.d/10-bt-headphones-default.conf | |
=========== | |
context.properties = [ | |
default.configured.audio.sink = { "name": "bluez_output.AC_12_2F_24_80_86.1" } | |
] | |
=========== | |
~/.config/pipewire/pipewire.conf.d/20-echo-cancel.conf | |
=========== | |
context.modules = [ | |
{ name = libpipewire-module-echo-cancel |
OlderNewer