上回说到让非root用户监听1024以内端口,要重新编译内核,下面记录下编译器和编译内核部分操作
1 gcc编译器
#yum install gcc
[可选]修改/etc/profile 优化编译参数
CFLAGS="-O3 -g -fomit-frame-pointer -ffast-math -fno-exceptions -pipe -march=core2 -mfpmath=sse -mmmx -msse -msse2 -msse3 -msse4 -m64"
CXXFLAGS=$CFLAGS
export CFLAGS CXXFLAGS
#su -
2 下载内核
wget
tar -Jxf linux-4.11.tar.xz
cd linux-4.11
yum install ncurses-devel -y
make menuconfig
make -j 4 clean
make -j 4 bzImage
make -j 4 modules
make modules_install
make install
reboot
选择新内核启动系统
阅读(514) | 评论(0) | 转发(0) |