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
# Fixes the fn row key for Lofree keyboards on Linux. | |
# Non-permanent fix: https://github.com/alexeygumirov/lofree-flow-fn-fix/blob/main/lofreemodefix | |
echo 'options hid_apple fnmode=2' | sudo tee /etc/modprobe.d/hid_apple.conf | |
sudo update-initramfs -u |
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
# Move an installation of Pop-OS! from one disk to another. | |
# Useful guide if transferring data from a non encrypted install to an encrypted install. | |
# Create a fresh install of Pop-OS! in the new drive, and operatating from the live env do: | |
# unlock encrypted partitions | |
sudo udisksctl unlock -b /dev/<part> | |
# mount partitions | |
sudo udisksctl mount -b /dev/mapper/data-root # Or some other alias returned earlier | |
# REPEAT ABOVE FOR SOURCE AND DESTINATION |