Free up unused memory:[1][2]
sudo sysctl -w vm.drop_caches=3
#This command will clear pagecache:
/sbin/sysctl vm.drop_caches=1
#To clear dentries and inodes you can use:
/sbin/sysctl vm.drop_caches=2
#To free memory of the all above use a following command:
/sbin/sysctl vm.drop_caches=3
或者
sudo sync &&