标签:blog http ar 使用 sp 文件 art log bs
输入:apt-cache search linux-source //查看内核版本
1.使用apt-get source 方法,会下载到当前目录,并且会直接解压:
apt-get source linux-source-2.6.32 #或者其他编号
2.使用apt-get install,会下载到/usr/src下,不会解压。 敲完下面命令后可以按二次Tab键看看可以安装什么内核的源码(库中不一定有)。
sudo apt-get install linux-source
如果提示是已经安装了,但是/usr/src下没有,可以先执行, sudo apt-get remove linux-source 然后再执行上面的安装命令
sudo find ./ -depth -name "filename.h" -print
在当前文件及其子目录下,查找文件"filename.h",并打印出来
标签:blog http ar 使用 sp 文件 art log bs
原文地址:http://www.cnblogs.com/pselect/p/4138936.html