← Back to context

Comment by dundarious

16 hours ago

You can't sudo echo and redirect from the non-sudo shell like that.

    echo 3 | sudo tee /proc/sys/vm/drop_caches

or

    sudo sh -c 'echo 3 > /proc/sys/vm/drop_caches'

Also fixed your typo in /proc...