Cpu
如何在沒有 root 訪問權限的情況下獲取所有 CPU 記憶體資訊
我正在嘗試找出 Linux 伺服器所有級別的記憶體映射方案,包括關聯性,但是我沒有 root 訪問權限。我只是用
dmidecode
這個,但你需要root訪問權限。有沒有其他方法可以在沒有 root 的情況下獲取相同的資訊?
lscpu
, inutil-linux
, 描述記憶體佈局而不需要root
:[...] L1d cache: 32K L1i cache: 32K L2 cache: 256K L3 cache: 8192K
中的文件
/sys/devices/system/cpu/cpu*/cache/
應該包含您要查找的所有資訊,包括關聯性,並且可以在沒有 的情況下讀取root
,但它們更難解析:grep . /sys/devices/system/cpu/cpu*/cache/index*/*