Skip to content

Instantly share code, notes, and snippets.

View marcolaux's full-sized avatar
💫

marco marcolaux

💫
View GitHub Profile
@solace
solace / gist:0ea7c761ff448a0f3aa5c7a35a7de278
Created April 6, 2020 05:04
Import FileZilla Bookmarks to Cyberduck
# From https://trac.cyberduck.io/ticket/7317
#
# Should do it automatically, if it doesn't, check if ~/.config/filezilla/sitemanager.xml exists.
# If it doesn't, create the directory, and
cp ~/.filezilla/sitemanager.xml ~/.config/filezilla/sitemanager.xml
defaults delete ch.sudo.cyberduck bookmark.import.de.filezilla
# Relaunch Cyberduck
@mdPlusPlus
mdPlusPlus / compile_newest_stable_kernel_with_acso_patch.sh
Last active March 22, 2023 12:19
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
}