今天剁手一台 Linode JP2 的机子,在尝试开启 BBR 优化算法的时候,一直不成功,原因是 Linode 的机器全部用的是定制的内核,不仅 BBR 用不了,锐速也一样用不了,只能更换内核来开启 BBR 或者锐速
一、更新 CentOS 6.5 系统到最新
yum install epel-release -y
yum update -y
二、安装 grub 引导
yum install grub -y
三、新建 menu.lst 引导文件
先看看你机器安装的最新内核是什么
ls -l /boot
输入后显示如下内容
[root@tw-3 ~]# ls -l /boot
total 93576
-rw-r--r--. 1 root root 108108 Jan 11 21:02 config-2.6.32-642.13.1.el6.x86_64
drwxr-xr-x. 3 root root 4096 Jan 24 19:55 efi
drwxr-xr-x. 2 root root 4096 Feb 22 06:48 grub
-rw-------. 1 root root 21949645 Jan 24 20:00 initramfs-2.6.32-642.13.1.el6.x86_64.img
-rw-r--r--. 1 root root 215528 Jan 11 21:02 symvers-2.6.32-642.13.1.el6.x86_64.gz
-rw-r--r--. 1 root root 2618532 Jan 11 21:02 System.map-2.6.32-642.13.1.el6.x86_64
-rwxr-xr-x. 1 root root 4269968 Jan 11 21:02 vmlinuz-2.6.32-642.13.1.el6.x86_64
这明显的是 2.6.32-642.13.1.el6.x86_64,
编辑nano /boot/grub/menu.lst
然后按照下面的格式填写menu.lst
中的内容模版
timeout 5
title CentOS 2.6.32-642.13.1.el6.x86_64
root (hd0)
kernel /boot/vmlinuz-2.6.32-642.13.1.el6.x86_64 root=/dev/sda
initrd /boot/initramfs-2.6.32-642.13.1.el6.x86_64.img
四、Linode 控制面板修改启动方式
对应 VPS 的系统盘 Edit 下的 Kernel 选择 【GRUB(Legacy)】保存后,Reboot
五、启动后,验证内核
uname -a
文章评论