wangqi0021
kernel-2.6.18-8.el5.src.rpm 这种内核要如何编译安装
kernel-2.6.18-8.el5.src.rpm 这种内核要如何编译安装 每次rpmbuild它都会在/var/tmp目录生成一个临时文件 但是每次都说那个临时文件有错误
camelguo
下面是些提示,希望对你有用
# Install the package:
$ rpm -i kernel-source.src.rpm
# Unpack the patches and the kernel sources:
$ cd /usr/src/packages/SOURCES
$ for f in patches.*.tar.bz2; do /
tar xfj $f || break; /
done
$ tar xfj linux-2.6.5.tar.bz2
# Apply the patches
$ for p in $(./guards $(./arch-symbols) < series.conf); do
patch -d linux-2.6.5 -p1 < $p || break
done