Installation Guides
Copy-paste ready commands for installing archiving tools on EndeavourOS using pacman, yay, flatpak, and Docker.
Command-Line Tools
These form the backbone of any automated archiving system.
The de facto standard for downloading video and audio from 1000+ websites.
yt-dlp installation
# From official repositories (recommended)\nsudo pacman -S yt-dlp\n\n# Install essential optional dependencies\nsudo pacman -S ffmpeg aria2 atomicparsleyDownload entire galleries from Instagram, Twitter, DeviantArt, and more.
gallery-dl installation
# From the AUR\nyay -S gallery-dlGraphical Applications
User-friendly front-ends for powerful backend tools.
Feature-rich GUI for managing channel subscriptions and automated downloads.
Tartube installation
# From the AUR\nyay -S tartubeSelf-Hosted Applications
Docker is recommended for self-hosted applications. It simplifies updates and enhances security.
Install Docker and enable the service before setting up self-hosted apps.
Docker installation
# Install Docker and Docker Compose\nsudo pacman -S docker docker-compose\n\n# Enable and start Docker service\nsudo systemctl enable --now docker.service\n\n# Add your user to docker group (log out/in after)\nsudo usermod -aG docker $USER