- allow sudo without password
- basic LAN to WAN NAT in Ubuntu 24.04
- Change interface MAC on Ububtu 24
- Compile btop 1.4.4 in Ubuntu 24.04
- Control power limits of Intel CPU in Ubuntu 24.04
- disable IPv6 in Ubuntu 24.04
- Install Intel GPU tools on Ubuntu 24.04
- Install Intel NPU driver on Ububntu 24.04
- Install nginx with http2 on Ubuntu 24.04
- OpenVPN UI on Ubuntu 24.04
- Router example netplan configuration
- Setup basic DHCP server on Ubuntu 24.04
- Setup bridge using netplan in Ubuntu 24.04
some nice tools
Update OS
apt update apt upgrade -y
#apt install -y btop apt install -y ncdu duf apt install -y net-tools #netstat apt install -y tree apt install -y exfatprogs #exfat apt install -y iotop
switch from nano to vim
sudo update-alternatives --config editor
hardware monitoring tools
apt install -y smartmontools lm-sensors #apt install -y fancontrol
set timezone
#tzselect echo 'Europe/Kyiv' > /etc/timezone
set history
cat <<EOF >> /etc/bash.bashrc HISTTIMEFORMAT="%Y-%m-%d %T " HISTSIZE=20000 HISTCONTROL=ignoredups:erasedups shopt -s histappend EOF
install docker
for pkg in docker.io docker-doc docker-compose docker-compose-v2 podman-docker containerd runc; do sudo apt-get remove -y $pkg; done apt update apt install ca-certificates curl install -m 0755 -d /etc/apt/keyrings curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc chmod a+r /etc/apt/keyrings/docker.asc echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \ $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null apt update apt install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin