Skip to content

Instantly share code, notes, and snippets.

View TheRainstorm's full-sized avatar
👾
On School

Fuyan Yuan TheRainstorm

👾
On School
  • Chongqing University
  • {Jiangxi, Chongqing, Hefei}, China
  • 05:37 (UTC +08:00)
View GitHub Profile
@mdPlusPlus
mdPlusPlus / compile_newest_stable_kernel_with_acso_patch.sh
Last active April 10, 2025 20:00
Download, patch, compile and install the newest stable Linux kernel with the ACS override patch (Ubuntu / Debian)
#!/bin/bash
function install_dependencies() {
echo "Installing dependencies..."
sudo apt -qq update
sudo apt -qq install -y curl git wget
# sudo apt -qq install -y bison flex kernel-package libelf-dev libssl-dev
sudo apt -qq install -y bison flex libelf-dev libssl-dev
}