Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在进行标准内核编译时,是否存在可以找到内核构建日志的位置。一种方法是将输出重定向到文件。
source <build_script> > build_log_file.txt
它进入标准输出和标准错误。如果您希望它转到文件,您可以:
make > <logfile> 1>&2
如果您希望输出进入文件和屏幕,您可以
make 2>&1 | tee <logfile>