lotServer支持内核列表:https://github.com/0oVicero0/serverSpeeder_kernel/blob/master/serverSpeeder.txt

可以看到支持debian8的主要是3.16.0-4版本:

Debian/8/3.16.0-4-amd64/x64/3.10.61.0/lotServer_6185
Debian/8/3.16.0-4-amd64/x64/3.11.20.4/lotServer_7138
Debian/8/3.16.0-4-amd64/x64/3.11.20.10/lotServer_7942
Debian/8/4.4.10-1-pve/x64/3.11.20.10/lotServer_7920

查看自己vps内核版本:

root@##:~# uname -r
3.16.0-6-amd64

因此需要将debian8的3.16.0-6-amd64版本降级到3.16.0-4-amd64.

下载内核

wget http://security.debian.org/debian-security/pool/updates/main/l/linux/linux-image-3.16.0-4-amd64_3.16.43-2+deb8u5_amd64.deb
wget http://security-cdn.debian.org/pool/updates/main/l/linux/linux-headers-3.16.0-4-common_3.16.43-2+deb8u5_amd64.deb

安装内核

dpkg -i *.deb

删除内核

先运行

dpkg -l|grep linux-image

查看所有内核版本,然后删掉自带的3.16.0-6版本:

apt-get remove linux-image-3.16.0-6-amd64 -y

删除内核时会弹出一个确认的,记得选No就对了。

之后执行:

update-grub
reboot

重启后通过 uname -r
确认是否修改成功。