codecamp

make oldconfig 报错

今天安装 nginx-systemtap-toolkit 时需要安装 utrace (内核版本为 debian3.2,无内嵌的 utrace)

下载 https://github.com/utrace/linux/branches 对应的 linux-utrace-3.2 版本

7za x linux-utrace-3.2.zip

(第一次用unzip时报错,提示文件名过长,改用7za问题解决)

cd linux-utrace-3.2

make 会提示无 include/config/auto.conf

make oldconfig 又会有很多新的选项(上千条)需要手动选择

因此 make allyesconfig 生成 .config

cp .config include/config/auto.conf

此时再 make,提示 generated/autoconf.h: No such file or directory

运行 make oldconfig && make prepare 进行修复

再次 make && make install 成功


磁盘空间不足提示 No space left on device
influxdata
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }