2024-06-23 15:10:36 +02:00
|
|
|
## Justfile (https://github.com/casey/justfile)
|
|
|
|
|
2024-06-28 19:07:57 +02:00
|
|
|
distro := `grep -G "\bID\b" /etc/os-release | awk -F= '{print $2}'`
|
2024-06-24 21:42:28 +02:00
|
|
|
release := `grep "VERSION_CODENAME" /etc/os-release | awk -F= '{print $2}'`
|
2024-06-23 15:10:36 +02:00
|
|
|
run_user := env_var("USER")
|
|
|
|
|
|
|
|
default: common
|
|
|
|
|
|
|
|
common:
|
|
|
|
sudo apt update
|
|
|
|
sudo apt dist-upgrade -y
|
|
|
|
sudo apt install -y \
|
|
|
|
apt-file \
|
|
|
|
apt-listchanges \
|
|
|
|
apt-utils \
|
|
|
|
atop \
|
|
|
|
autoconf \
|
|
|
|
automake \
|
|
|
|
build-essential \
|
|
|
|
byobu \
|
|
|
|
cmake \
|
|
|
|
curl \
|
|
|
|
firewalld \
|
|
|
|
git \
|
|
|
|
htop \
|
|
|
|
httpie \
|
|
|
|
ifplugd \
|
|
|
|
iotop \
|
|
|
|
less \
|
|
|
|
libpam-systemd \
|
|
|
|
lynis \
|
|
|
|
man-db \
|
|
|
|
manpages \
|
|
|
|
nfs-common \
|
|
|
|
nmon \
|
|
|
|
pipx \
|
|
|
|
python3-dev \
|
|
|
|
python3-pip \
|
2024-06-24 21:42:28 +02:00
|
|
|
rclone \
|
2024-06-23 15:10:36 +02:00
|
|
|
rsync \
|
|
|
|
unattended-upgrades \
|
|
|
|
vim \
|
|
|
|
wget \
|
|
|
|
zsh
|
|
|
|
sudo systemctl enable man-db.timer
|
|
|
|
|
|
|
|
caddy-install:
|
|
|
|
sudo apt install -y debian-keyring debian-archive-keyring apt-transport-https curl
|
2024-06-24 21:42:28 +02:00
|
|
|
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/gpg.key' | sudo gpg --dearmor -o /usr/share/keyrings/caddy-stable-archive-keyring.gpg
|
|
|
|
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/debian.deb.txt' | sudo tee /etc/apt/sources.list.d/caddy-stable.list
|
2024-06-23 15:10:36 +02:00
|
|
|
sudo apt update
|
|
|
|
sudo apt install caddy
|
|
|
|
|
|
|
|
archivebox-install:
|
|
|
|
sudo apt install -y pipx python3-dev python3-pip nodejs npm curl wget git ripgrep
|
|
|
|
pipx install archivebox
|
|
|
|
pipx install yt-dlp
|
|
|
|
pipx install playwright
|
|
|
|
playwright install --with-deps chromium
|
|
|
|
|
|
|
|
archivebox-init:
|
|
|
|
cd {{archivebox_data}} && archivebox init --setup
|
|
|
|
|
|
|
|
archivebox-setup:
|
|
|
|
cd {{archivebox_data}} && archivebox setup
|
|
|
|
|
|
|
|
thelounge-install:
|
2024-06-24 21:42:28 +02:00
|
|
|
curl -s https://api.github.com/repos/thelounge/thelounge-deb/releases/latest | grep "browser_download_url.*deb" | cut -d : -f 2,3 | tr -d \" | wget -qi -
|
2024-06-23 15:10:36 +02:00
|
|
|
sudo apt install -y ./thelounge*.deb
|
|
|
|
|
|
|
|
tailscale-install:
|
2024-06-24 21:42:28 +02:00
|
|
|
curl -fsSL https://tailscale.com/install.sh | sh
|
2024-06-23 15:10:36 +02:00
|
|
|
sudo tailscale up
|
|
|
|
|
|
|
|
qbt-install:
|
2024-06-24 21:42:28 +02:00
|
|
|
curl -1sLf 'https://dl.cloudsmith.io/public/qbittorrent-cli/qbittorrent-cli/gpg.F8756541ADDA2B7D.key' | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/qbittorrent-cli.gpg
|
2024-06-28 19:07:57 +02:00
|
|
|
sudo wget https://repos.fedarovich.com/{{distro}}/{{release}}/qbittorrent-cli.list -O /etc/apt/sources.list.d/qbittorrent-cli.list
|
2024-06-23 15:10:36 +02:00
|
|
|
sudo apt update
|
|
|
|
sudo apt install -y qbittorrent-cli
|
|
|
|
|
|
|
|
scihub-setup:
|
|
|
|
mkdir ~/scihub-torrent-urls
|
2024-07-03 12:04:46 +02:00
|
|
|
lynx -dump -nonumbers -listonly=on https://libgen.rs/repository_torrent/ | grep "\.torrent" | tee ~/scihub-torrent-urls/urls.txt
|
|
|
|
cd ~/scihub-torrent-urls && split -l 60 ~/scihub-torrent-urls/urls.txt torrent-
|
|
|
|
rm -fv ~/scihub-torrent-urls/urls.txt
|
2024-07-03 18:11:39 +02:00
|
|
|
|
|
|
|
docker-install:
|
|
|
|
for pkg in docker.io docker-doc docker-compose podman-docker containerd runc; do sudo apt remove $pkg; done
|
|
|
|
|
|
|
|
sudo apt update
|
|
|
|
sudo apt install -y ca-certificates curl
|
|
|
|
sudo install -m 0755 -d /etc/apt/keyrings
|
|
|
|
sudo curl -fsSL https://download.docker.com/linux/{{distro}}/gpg -o /etc/apt/keyrings/docker.asc
|
|
|
|
sudo 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/{{distro}} {{release}} stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
|
|
|
|
sudo apt update
|
|
|
|
sudo apt install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose docker-compose-plugin
|
|
|
|
sudo systemctl enable --now docker.service
|
|
|
|
sudo usermod -aG docker {{run_user}}
|