Background: My original problem was that when I tried to do a normal update to the OS, it failed most of the way through, and afterwards very little worked right. Everything I tried only made it worse, so I had to wipe out my OS partition and install a clean copy (my Home is on a separate partition). That went smooth and everything appeared to work fine.
My problem: It appears that my swap partition isn't working. When I get close to filling up my memory, I start getting memory allocation errors at first, and eventually some program will eventually just die, while my swap never sees any use. (This was unfortunate because it screwed up the installation of a program that was happening at the time that I haven't been able to fix, but I guess that's a different problem.) I checked my fstab and fiddled with it a bit, but that hasn't helped. Here is what it originally was:
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda6 during installation
UUID=number / ext4 errors=remount-ro 0 1
# /boot/efi was on /dev/sda2 during installation
UUID=number /boot/efi vfat defaults 0 1
# /home was on /dev/sda8 during installation
UUID=number /home ext4 defaults 0 2
# swap was on /dev/sda7 during installation
# UUID=number none swap sw 0 0
/dev/mapper/cryptswap1 none swap sw 0 0
# Windows is on /dev/sda4
/dev/sda4 /media/myname/Windows ntfs user,auto,noexec,umask=0 0 0
Actually I had to add in the Windows bit after install because it wasn't automatically mounting.
The "fiddling" I did was only to uncomment the "UUID=number none swap sw 0 0" line, but I'm still getting memory allocation errors. I'm afraid I'm out of ideas at this point. TIA
My problem: It appears that my swap partition isn't working. When I get close to filling up my memory, I start getting memory allocation errors at first, and eventually some program will eventually just die, while my swap never sees any use. (This was unfortunate because it screwed up the installation of a program that was happening at the time that I haven't been able to fix, but I guess that's a different problem.) I checked my fstab and fiddled with it a bit, but that hasn't helped. Here is what it originally was:
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda6 during installation
UUID=number / ext4 errors=remount-ro 0 1
# /boot/efi was on /dev/sda2 during installation
UUID=number /boot/efi vfat defaults 0 1
# /home was on /dev/sda8 during installation
UUID=number /home ext4 defaults 0 2
# swap was on /dev/sda7 during installation
# UUID=number none swap sw 0 0
/dev/mapper/cryptswap1 none swap sw 0 0
# Windows is on /dev/sda4
/dev/sda4 /media/myname/Windows ntfs user,auto,noexec,umask=0 0 0
Actually I had to add in the Windows bit after install because it wasn't automatically mounting.
The "fiddling" I did was only to uncomment the "UUID=number none swap sw 0 0" line, but I'm still getting memory allocation errors. I'm afraid I'm out of ideas at this point. TIA
Comment