Reputation: 27087
AFAIK all disk reads on linux get into the page cache.
Is there a way to prevent reads (done by a backup process) to get in to the page cache?
Imagine:
My preferred solution:
Upvotes: 6
Views: 839
Reputation: 611
--drop-cache
according to this questionminimize the effect an application has on the Linux file system cache
Use case: backup processes that should not interfere with the present state of the cache.
nocache
option check the command info coreutils 'dd invocation'
for detailsUpvotes: 5