一、安装报错Missing file: arch/x86/boot/bzImage
[sudo] password for xmu:
arch/x86/Makefile:142: CONFIG_X86_X32 enabled but no binutils support
sh ./arch/x86/boot/install.sh 5.15.19-htmm-test1 \
arch/x86/boot/bzImage System.map "/boot"
*** Missing file: arch/x86/boot/bzImage
*** You need to run "make" before "make install".
arch/x86/Makefile:262: recipe for target 'install' failed
make[1]: *** [install] Error 1
Makefile:350: recipe for target '__build_one_by_one' failed
make: *** [__build_one_by_one] Error 2
在install之前:
make bzImage
二、网络需求
https://update.glados-config.com/clash/186932/93460d4/28619/glados.yaml
三、damon版本
按照论文所说大部分补丁都已经合并到5.18,按照damo需要5.16支持物理页采样。所以采用5.18的核试一试。
https://github.com/torvalds/linux/releases/tag/v6.1-rc1(这个是预备版本,不行会报错)要选用确定的版本。
不确定的点是否根据NUMA node有无CPU绑定来区别分层内存的层级的。
要检查你是否已经在运行支持 DAMON 的内核,你可以:
if grep CONFIG_DAMON /boot/config-$(uname -r); then echo "installed"; fi
获取 DAMON 合并的 Linux 内核源代码树(自 v5.15 起它已合并到 Linux 主线树中),构建并安装它。请注意,您应该启用内核DAMON的配置选项,取决于您的需求,例如:
cd $THE_FETCHED_DAMON_KERNEL_SOURCE_TREE
make olddefconfig
echo 'CONFIG_DAMON=y' >> /.config
echo 'CONFIG_DAMON_KUNIT_TEST=y' >> /.config
echo 'CONFIG_DAMON_VADDR=y' >> /.config
echo 'CONFIG_DAMON_PADDR=y' >> /.config
echo 'CONFIG_DAMON_VADDR_KUNIT_TEST=y' >> /.config
echo 'CONFIG_DAMON_SYSFS=y' >> /.config
echo 'CONFIG_DAMON_DBGFS=y' >> /.config
echo 'CONFIG_DAMON_DBGFS_KUNIT_TEST=y' >> /.config
echo 'CONFIG_DAMON_RECLAIM=y' >> /.config
echo 'CONFIG_DAMON_LRU_SORT=y' >> /.config
make -j$(nproc)
sudo make modules_install install
DAMON has started supporting the physical address space monitoring from v5.16 of Linux kernel. It also require CONFIG_DAMON_PADDR turned on.
四、从源码安装perf
然后确保系统perf是OK的,damon需要用,但是一些内核是改过名字的就很难从apt install下载,所以直接源码下载安装更省事。
https://zhuanlan.zhihu.com/p/446319798
安装
sudo pip3 install damo