Quote Originally Posted by abexman View Post
I guess this means Swap is running?

Code:
$ free -m
             total       used       free     shared    buffers     cached
Mem:          3773       3426        347          0         87       1998
-/+ buffers/cache:       1340       2432
Swap:         4008          1       4007
Yes swap is running , but cryptswap is running. There is no swap entry in /etc/fstab/
Quote Originally Posted by abexman View Post
Code:
/dev/sda1: LABEL="SYSTEM" UUID="7468F1FD68F1BDC4" TYPE="ntfs" 
/dev/sda2: UUID="68D0F622D0F5F662" TYPE="ntfs" 
/dev/sda3: LABEL="RECOVERY" UUID="28E8D02EE8CFF7D8" TYPE="ntfs" 
/dev/sda5: LABEL="root" UUID="dcd54473-3a8a-4582-a046-a654a3f95e42" TYPE="ext4" 
/dev/sda6: LABEL="home" UUID="bc4e2fda-bfac-42c1-b57c-c7e51cbd3c6c" TYPE="ext4" 
/dev/sda7: LABEL="swap" UUID="19d09a37-7454-42ab-9143-c7a4cdfadb76" TYPE="swap" 
/dev/mapper/cryptswap1: UUID="1a139895-979c-4421-b6f1-e21d189a1b40" TYPE="swap"
Comment out Cryptswap line?

Code:
$ cat /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
proc            /proc           proc    nodev,noexec,nosuid 0       0
# / was on /dev/sda5 during installation
UUID=dcd54473-3a8a-4582-a046-a654a3f95e42 /               ext4    errors=remount-ro 0       1
# /home was on /dev/sda6 during installation
UUID=bc4e2fda-bfac-42c1-b57c-c7e51cbd3c6c /home           ext4    defaults        0       2
# swap was on /dev/sda7 during installation
#UUID=bdb39428-0f55-4152-acf4-4b12f54a18a7 none            swap    sw              0       0
/dev/mapper/cryptswap1 none swap sw 0 0
If you take a closer look in /etc/fstab and blkid results , you will see that UUID of swap is not matched. If you comment out the crypswap as the /etc/fstab it is now ,you will not have swap at all.

You know what ?
I suggest to delete the swap you created with gparted. Is not needed. Your swap is (and was) up and running , but is crypted (you used crypt-fs in past to encrypt your /home or /swap ? probably).

So delete the swap you created and merge the space of 3.92GB with root. (to increase it even more.)

You can always see if swap is up and running with command
Code:
free -m
Thanks