“Clear Ram Cache Ubuntu” Ответ

Кэш памяти Linux 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 
juliocorradi

Clear Ram Cache Ubuntu

sync && echo 3 | sudo tee /proc/sys/vm/drop_caches
Magnificent Mongoose

Clear Ram Cache Linux

sync; echo 1 > /proc/sys/vm/drop_caches
DK

Ответы похожие на “Clear Ram Cache Ubuntu”

Вопросы похожие на “Clear Ram Cache Ubuntu”

Больше похожих ответов на “Clear Ram Cache Ubuntu” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования