This file contains 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
Setup: UEFI, LVM + LUKS encrypted drive | |
Bootloader: Grub | |
Links: | |
- https://wiki.manjaro.org/index.php/Restore_the_GRUB_Bootloader | |
- | |
Restore GRUB (boot into live env): | |
# get the encrypted partition (crypto_LUKS) | |
lsblk -f |
This file contains 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 | |
export LC_ALL=C | |
export STEAM_RUNTIME_LIBS="$HOME/.local/share/Steam/ubuntu12_32/steam-runtime/" | |
export LD_LIBRARY_PATH="$STEAM_RUNTIME_LIBS/amd64/lib/x86_64-linux-gnu:$STEAM_RUNTIME_LIBS/amd64/usr/lib/x86_64-linux-gnu" | |
# export LD_LIBRARY_PATH="$HOME/.steam/bin32/steam-runtime/lib/x86_64-linux-gnu:$HOME/.steam/bin32/steam-runtime/usr/lib/x86_64-linux-gnu:/usr/lib:/usr/local/lib:/usr/lib/x86_64-linux-gnu:$LD_LIBRARY_PATH" | |
# LC_ALL=C %command% |