HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

vmtouch — Manage the filesystem cache. More information: <https://manned.org/vmtouch>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thevmtouchcommandcacheclimanagefilesystemmore

Problem

How to use the vmtouch command: Manage the filesystem cache. More information: <https://manned.org/vmtouch>.

Solution

vmtouch — Manage the filesystem cache. More information: <https://manned.org/vmtouch>.

Print the cache status of a file:
vmtouch {{path/to/file}}


Load a file into cache:
vmtouch -t {{path/to/file}}


Evict a file from cache:
vmtouch -e {{path/to/file}}


Lock a file in cache to prevent eviction from memory:
vmtouch -l {{path/to/file}}


Lock a file and daemonize the program:
vmtouch -ld {{path/to/file}}

Code Snippets

Print the cache status of a file

vmtouch {{path/to/file}}

Load a file into cache

vmtouch -t {{path/to/file}}

Evict a file from cache

vmtouch -e {{path/to/file}}

Lock a file in cache to prevent eviction from memory

vmtouch -l {{path/to/file}}

Lock a file and daemonize the program

vmtouch -ld {{path/to/file}}

Context

tldr-pages: common/vmtouch

Revisions (0)

No revisions yet.