Yes, it would be helpful if you ran it after you had completed the commands when you are having the issues, All three of the commands, "df -h; mount; free -m"
And the important information from the free -m in your case is the free "2593", meaning you have ~2.5GB free memory.
The result of all three should be something like this.
- Code:
Linx@K54C:~$ df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda1 224G 54G 170G 25% /
none 4.0K 0 4.0K 0% /sys/fs/cgroup
udev 3.9G 4.0K 3.9G 1% /dev
tmpfs 789M 1.3M 788M 1% /run
none 5.0M 0 5.0M 0% /run/lock
none 3.9G 84K 3.9G 1% /run/shm
none 100M 36K 100M 1% /run/user
/dev/sda1 224G 54G 170G 25% /home
Linx@K54C:~$ mount
/dev/sda1 on / type btrfs (rw,subvol=@)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
none on /sys/fs/cgroup type tmpfs (rw)
none on /sys/fs/fuse/connections type fusectl (rw)
none on /sys/kernel/debug type debugfs (rw)
none on /sys/kernel/security type securityfs (rw)
udev on /dev type devtmpfs (rw,mode=0755)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620)
tmpfs on /run type tmpfs (rw,noexec,nosuid,size=10%,mode=0755)
none on /run/lock type tmpfs (rw,noexec,nosuid,nodev,size=5242880)
none on /run/shm type tmpfs (rw,nosuid,nodev)
none on /run/user type tmpfs (rw,noexec,nosuid,nodev,size=104857600,mode=0755)
none on /sys/fs/pstore type pstore (rw)
/dev/sda1 on /home type btrfs (rw,subvol=@home)
binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,noexec,nosuid,nodev)
systemd on /sys/fs/cgroup/systemd type cgroup (rw,noexec,nosuid,nodev,none,name=systemd)
gvfsd-fuse on /run/user/1000/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,user=brandon)
Linx@K54C:~$ free -m
total used free shared buffers cached
Mem: 7887 3761 4126 167 1 2829
-/+ buffers/cache: 930 6957
Swap: 0 0 0
Linx@K54C:~$