Clear Memory Kali Linux Rolling.
echo 3 > /proc/sys/vm/drop_cachesClear Swap Space:
swapoff -aCheck memory used
swapon -a
free -h
Tutorial Video:
#!/bin/shsh -c "free -h && echo 3 > /proc/sys/vm/drop_caches && swapoff -a && swapon -a &&
printf '\n%s\n' ' Done.........' && free -h"
chmod +x file.sh
./file.sh
Comments
Post a Comment