Horje
clear ram cache linux Code Example
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 
clear ram cache ubuntu
sync && echo 3 | sudo tee /proc/sys/vm/drop_caches
clear ram linux
sudo sync; echo 3 > /proc/sys/vm/drop_caches
clear ram cache linux
sync; echo 1 > /proc/sys/vm/drop_caches




Shell

Related
poython opencv pip Code Example poython opencv pip Code Example
install @ng-bootstrap/ng-bootstrap@5.1.1 Code Example install @ng-bootstrap/[email protected] Code Example
git clone to path Code Example git clone to path Code Example
git clone with folder name Code Example git clone with folder name Code Example
install mongodb on m1 Code Example install mongodb on m1 Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13