Answers for "clear cache ubuntu"

5

linux memory cache clear

# clear pagecache only.
sync; echo 1 > /proc/sys/vm/drop_caches

# clear dentries and inodes.
sync; echo 2 > /proc/sys/vm/drop_caches

# clear pagecache, dentries and inodes.
sync; echo 3 > /proc/sys/vm/drop_caches
Posted by: Guest on July-01-2020
2

remove all cache ubuntu

$ sudo apt-get clean
Posted by: Guest on November-29-2020
6

clear ram linux

sudo sync; echo 3 > /proc/sys/vm/drop_caches
Posted by: Guest on April-29-2020
0

how to clear all the caches in ubuntu

sudo apt-get clean
Posted by: Guest on November-16-2020
0

clear cache ubuntu

du -sh /var/cache/apt/archives
Posted by: Guest on January-17-2021
0

how to clear memory in ubuntu 18.04

sync; echo 1 > /proc/sys/vm/drop_caches
Posted by: Guest on October-21-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language