查看Centos版本,
cat /etc/redhat-release
CentOS Linux release 7.0.1406 (Core)
查看当前内核版本:
uname -a
Linux fzhost 3.10.0-123.4.2.el7.x86_64 #1 SMP Mon Jun 30 16:09:14 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
查看锐速所支持的对应内核版本,Centos7.0支持的内核版本为3.10.0-123.x86_64,与当前内核版本不符合。
Centos的内核历史版本可以在http://vault.centos.org下载
当前版本发布后后续更新的内核版本在:
http://vault.centos.org/7.0.1406/updates/x86_64/Packages/
发布时带的内核版本在:
http://vault.centos.org/7.0.1406/os/x86_64/Packages/
下载对应的内核版本安装:
wget http://vault.centos.org/7.0.1406/os/x86_64/Packages/kernel-3.10.0-123.el7.x86_64.rpm
rpm -ivh --oldpackage kernel-3.10.0-123.el7.x86_64.rpm
查看已安装的内核版本:
egrep ^menuentry /etc/grub2.cfg | cut -f 2 -d \'
CentOS Linux (3.10.0-123.4.2.el7.x86_64) 7 (Core)
CentOS Linux, with Linux 3.10.0-123.el7.x86_64
CentOS Linux, with Linux 0-rescue-11264912be38456483e63dfd21d402f4
设置使用安装的内核版本启动:
grub2-set-default 1
安装锐速:
wget --no-check-certificate -O appex.sh https://raw.githubusercontent.com/0oVicero0/serverSpeeser_Install/master/appex.sh && chmod +x appex.sh && bash appex.sh install
标签:none
现在linux 4.9以上的内核有个bbr的参数,用这个bbr比用锐速效果更好,可参考我的博文https://www.163stack.com/linux-kernel-4-9-bbr/