Warning: A non-numeric value encountered in /www/wwwroot/kxceping.com/wp-content/themes/xiu/functions.xiu.php on line 1512
锐速功能介绍
锐速是一款TCP网络加速软件,能在Linux系统和Windows系统的服务器中安装,安装后能启到提高网络连接稳定性、带宽利用率、低访问失败率等作用,从而提高服务器网络访问速度。锐速并不能增加大宽带,只是提高网络的稳定性和利用率而已,但这对于使用国外的VPS做站的朋友来说也是非常不错的了。
vultr这里就不用介绍了,目前Vultr家VPS所有的内置linux系统都是不能直接安装锐速的,这样我们就需要更换内核来进行安装,今天博主介绍两个系统的安装方式,一种提Debian 8 x64 (jessie)系统,另外一种是Centos 7 x64系统。
Debian 8系统安装锐速
我们要先安装好Debian 8 x64 (jessie)系统,然后使用Xshell连接上你的VPS,查看目前的内核,查看命令为:
uname -a
目前显示的应该是:
linux-image-3.16.0-6-amd64
我们需要降到的版本为:
linux-image-3.16.0-4-amd64
降内核教程:
执行以下脚本
wget http://security-cdn.debian.org/pool/updates/main/l/linux/linux-image-3.16.0-4-amd64_3.16.43-2+deb8u5_amd64.deb
安装3.16.0-4内核
dpkg -i linux-image-3.16.0-4*.deb
删除原来的内核,先要看一下都有那些,展示一下所有的内核
dpkg -l|grep linux-image
删除原内核
apt-get -y remove linux-image-3.16.0-7-amd64
删除的时候会出现一个白蓝色的画面,让你选择yes 和no,一定要选择no,这样原内核就删除了。
更新 grub 系统引导文件
update-grub
重启VPS
reboot
等待一下重新连接VPS,查看一下内核版本uname -a
可以看到已经降完了,下面就可以安装锐速了。
wget --no-check-certificate -O appex.sh https://raw.githubusercontent.com/0oVicero0/serverSpeeder_Install/master/appex.sh && chmod +x appex.sh && bash appex.sh install
输入以上脚本,中间提示你需要回车继续,直接回车就可以了。
CentOS 7系统安装锐速
vultr的centos7系统的内核是不支持锐速安装的,我们可以提前查询一下内核。
uname -r
显示如下:
我们需要到3.10.0-229.1.2.el7.x86_64才可以安装,输入以下脚本:
rpm -ivh http://soft.91yun.org/ISO/Linux/CentOS/kernel/kernel-3.10.0-229.1.2.el7.x86_64.rpm --nodeps --force
输出结果如下:
我们再检查一下是否成功,输入:
rpm -qa | grep kernel
然后就可能重启了,再重新查询一下内核:
reboot uname -r
显示已经更换成功了。
下面就可以安装锐速了。
wget -N --no-check-certificate https://github.com/91yun/serverspeeder/raw/master/serverspeeder.sh && bash serverspeeder.sh
可能报以下错误:
serverspeeder.sh: line 141: ifconfig: command not found serverspeeder.sh: line 144: ifconfig: command not found The name of network interface is not eth0, please retry after changing the name
我们只需要安装一下ifconfig就好了,输入:
yum install net-tool
安装完成再输入安装锐速的脚本,等待几秒就成功了。
以上就是vultr家的两种系统安装锐速过程,有问题的可以直接留言给我。