标题: 四种解决”Argument list too long”参数列表过长的办法 [打印本页] 作者: mahan 时间: 2023-4-13 13:50 标题: 四种解决”Argument list too long”参数列表过长的办法 四种解决”Argument list too long”参数列表过长的办法
首先使用这个方案之前要谨慎,因为涉及到修改内核源代码,在生产环境中还是要斟酌一下并做好测试。
另外,这个方法是从根本上解决的,一劳永逸的
这也是开放源码的好处之一
首先在内核源码中找到 include/linux/binfmts.h文件 ,搜索到以下字段:
/*
* MAX_ARG_PAGES defines the number of pages allocated for arguments
* and envelope for the new program. 32 should suffice, this gives
* a maximum env+arg of 128kB w/4KB pages!
*/
#define MAX_ARG_PAGES 32