As a work around, if you don't plan to use hibernate, but only suspend, then swap file is better solution than swap partition.blindside wrote: Fri Sep 06, 2019 4:50 am I tried to install the new beta that just came out and everything was going great until the install stalled at 2% formatting swap.
You could try to install without swap partition then after installation is completed, run these 4 commands:
Code: Select all
sudo fallocate -l 2G /swapfile <- set the size (4G for 4GB, 8G for 8GB...)
sudo chmod 600 /swapfile <- set correct permission
sudo mkswap /swapfile <- format the swap file
sudo swapon /swapfile <- activate swap file