LINUX系统中/proc/sys/vm文件夹什么存什么的?
发布网友
发布时间:2022-05-11 07:09
我来回答
共1个回答
热心网友
时间:2023-01-22 12:22
是表示Linux调整虚拟内存和将一些特别数据写入磁盘之用
其中从Kernel网站查看你的这个参数:
dirty_writeback_centisecs
The
pdflush
writeback
daemons
will
periodically
wake
up
and
write
`old'
data
out
to
disk.
This
tunable
expresses
the
interval
between
those
wakeups,
in
100'ths
of
a
second.
Setting
this
to
zero
disables
periodic
writeback
altogether.
字面上大概的理解是,触发一个回写进程,将Vm中的一些数据写到磁盘上。如果值是0表示禁用此项。
-----------------
virtual
memory
(VM)
subsystem
of
the
Linux
kernel
即是虚拟内存的英文。。。