浅析Kernel-6.5新系统调用

/images/Tex_6.5.png

Note

本文系统环境:

Linux gentoo 6.5.0-rc1

如果你想自己尝试,你需要知道的几个命令:

  1. 创建随机文件用于测试
    #signle random file "a"
    dd if=/dev/urandom of=a bs=1M count=128
    
    # random files "f1"-"f8"
    for i in {1..8}
    do
    dd if=/dev/urandom of=f${i} bs=1M count=128
    done
    
  2. 清除系统cache:

0%