[不花钱站长]:从免费域名开始[0元] Oracle永久免费VPS[0元] VPS环境搭建免费脚本[0元] 秒变大盘挂载免费网盘[0元] 小白免费采集器1天500W[0元] CF免费DNS+CDN服务[0元]
[零基础网赚]:撸本站免费源码[0元] 网站强引免费蜘蛛法[0元] 图片视频文件免费存储[0元] 外链轻松发布免费友链[0元] 入坑免费教程学习源代码[0元] 网上百种+赚钱联盟推荐[?元]

↑↑VPS推荐网 WWW.VPS.COM.IN 稳定 便宜 免备案↑↑


您现在的位置是:首页 > 全球[VPS测评] >  折腾VPS,折腾VPS,国外永久免费VPS

#Vultr#Debian 8及Centos7系统VPS安装破解版锐速图文教程

全球[VPS测评]来源:VPS推荐网点击:1682
【性价之王】【线路之王】【价格之王】【配置之王】
【免费之王】【香港首推】【梯子之王】【独服之王】
#Vultr#Debian 8及Centos7系统VPS安装破解版锐速图文教程

锐速功能介绍

锐速是一款TCP网络加速软件,能在Linux系统和Windows系统的服务器中安装,安装后能启到提高网络连接稳定性、带宽利用率、低访问失败率等作用,从而提高服务器网络访问速度。锐速并不能增加大宽带,只是提高网络的稳定性和利用率而已,但这对于使用国外的VPS做站的朋友来说也是非常不错的了。

vultr这里就不用介绍了,目前Vultr家VPS所有的内置linux系统都是不能直接安装锐速的,这样我们就需要更换内核来进行安装,今天博主介绍两个系统的安装方式,一种提Debian 8 x64 (jessie)系统,另外一种是Centos 7 x64系统。

[success]Vultr官方网站:www.vultr.com[/success]

Debian 8系统安装锐速

我们要先安装好Debian 8 x64 (jessie)系统,然后使用Xshell连接上你的VPS,查看目前的内核,查看命令为:

uname -a
1 uname -a

目前显示的应该是:

linux-image-3.16.0-6-amd64
1 linux-image-3.16.0-6-amd64

我们需要降到的版本为:

linux-image-3.16.0-4-amd64
1 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
1 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
1 dpkg -i linux-image-3.16.0-4*.deb

删除原来的内核,先要看一下都有那些,展示一下所有的内核

dpkg -l|grep linux-image
1 dpkg -l|grep linux-image

删除原内核

apt-get -y remove linux-image-3.16.0-7-amd64
1 apt-get -y remove linux-image-3.16.0-7-amd64

删除的时候会出现一个白蓝色的画面,让你选择yes 和no,一定要选择no,这样原内核就删除了。
更新 grub 系统引导文件

update-grub
1 update-grub

重启VPS

reboot
1 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
1 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
1 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
1 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
1 rpm -qa | grep kernel

然后就可能重启了,再重新查询一下内核:

rebootuname -r
12 rebootuname -r

显示已经更换成功了。

下面就可以安装锐速了。

wget -N --no-check-certificate https://github.com/91yun/serverspeeder/raw/master/serverspeeder.sh && bash serverspeeder.sh
1 wget -N --no-check-certificate https://github.com/91yun/serverspeeder/raw/master/serverspeeder.sh && bash serverspeeder.sh

可能报以下错误:

serverspeeder.sh: line 141: ifconfig: command not foundserverspeeder.sh: line 144: ifconfig: command not foundThe name of network interface is not eth0, please retry after changing the name
123 serverspeeder.sh: line 141: ifconfig: command not foundserverspeeder.sh: line 144: ifconfig: command not foundThe name of network interface is not eth0, please retry after changing the name

我们只需要安装一下ifconfig就好了,输入:

yum install net-tool
1 yum install net-tool

安装完成再输入安装锐速的脚本,等待几秒就成功了。

以上就是vultr家的两种系统安装锐速过程,有问题的可以直接留言给我。

总结:不管你是用vultr家的VPS是做站还是跑数据,安装加速软件是必不可少的,本文主要介绍了锐速安装,锐速只适合KVM架构的VPS安装,如果你的VPS是OpenVZ的架构,你可以试着安装一个魔改BBR,后期博主再分享给大家!

猜你可能想看的VPS


转载请注明原文地址:http://140.238.13.167:12355/read-21718.html

下一篇       上一篇