I have ported this Gist to a handbook. I'll not maintain this Gist anymore, but will keep it here for future references. You can access the respective chapter in the handbook here.
In this guide you will find:
- btrfs with Zstandard compression
- LUKS-encrypted root and swapfile
- GRUB with UEFI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
ifconfig | |
read -p "Enter your external interface: " EXT_INTER | |
# do not edit after this line | |
set -x # enable echo | |
sudo yum install -y epel-release | |
sudo yum install -y vim git tmux bash-completion net-tools htop psmisc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
config BR2_PACKAGE_LIBCURL | |
bool "libcurl" | |
help | |
cURL is a tool for getting files from FTP, HTTP, Gopher, Telnet, | |
and Dict servers, using any of the supported protocols. | |
http://curl.haxx.nu/ | |
config BR2_PACKAGE_CURL | |
bool "curl binary" |