Gould someone help me disabling the cryptswap thingy, because I installed pop-os with a swap partition, but didn't ask for encryption, since now I can't #hibernate. Maybe someone could help?
Gould someone help me disabling the cryptswap thingy, because I installed pop-os with a swap partition, but didn't ask for encryption, since now I can't #hibernate. Maybe someone could help?
@feike I don't use swap, so can't help a lot, but I'd try to see why that's not working - having your swap not encrypted is a big risk.
That said, I'd go with something like:
1. turn off swap: `sudo swapoff -a`
2. close the encrypted fs: `sudo cryptsetup close cryptswap`
3. remove references to cryptswap from `/etc/crypttab`
4. create swap: `sudo mkswap /dev/nvme0n1p5`
5. add it to `/etc/fstab` (something like "/dev/nvme0n1p5 none swap sw 0 0`
6. re enable swap: `sudo swapon -a`