Hi,
Would you mind to create some swap space to see if help?
You will need an extra space for the swap file.
Ex.
sudo fallocate -l 8G [/media/mySSD/swapfile]
sudo chmod 600 [/media/mySSD/swapfile]
sudo mkswap [/media/mySSD/swapfile]
sudo /bin/sh -c 'echo "[/media/mySSD/swapfile] \t none \t swap \t defaults \t 0 \t 0" >> /etc/fstab'
sudo swapon -a
Thanks.