
To upgrade your kernel to 4.19.x on Debian 8 you can use the Vultr Debian Repo. This repo contains a regularly updated version of the 4.19.x kernel. To install this copy and paste the following block of code into your PuTTY or SSH client window when logged into the server and hit enter. This will automatically install the required packages, the gpg key, the repo, the kernel and headers, then remove the old kernel for you. Afterwards reboot the server and you will be on the new kernel.
echo '
#!/bin/bash
# Add GPG Key
wget -O - -q https://debian.choopalabs.com/debian.choopalabs.com.gpg.key | apt-key add -
# Add Vultr Kernel Repo
echo deb http://debian.choopalabs.com/repo/ jessie main >> /etc/apt/sources.list
# Install Vultr 4.19 Kernel
apt-get install -t jessie linux-image
apt-get install -t jessie linux-headers
# Remove old kernel
apt-get autoremove -y
rm -f /root/install-kernel.sh
' > /root/install-kernel.sh
chmod +x /root/install-kernel.sh
/root/install-kernel.sh
Related Content
Installing Debian 8 on Vultr
November 21, 2023
Article
How to Upgrade the Linux Kernel with Cloud-init User-data
July 25, 2024
Article
How to Deploy Google BBR on CentOS 7
January 23, 2025
Article
How to Install FFmpeg on Debian
January 23, 2025
Article
No comments yet.