Releases: OpenListTeam/OpenList-APT
OpenList DEB Package 4.1.9
DEB Package for OpenList 4.1.9
This is an automated DEB package build from OpenListTeam/OpenList v4.1.9.
π¦ Package Information
- Source: OpenListTeam/OpenList v4.1.9
- Package Version: 4.1.9-1
- Build Date: 2026-01-02 03:41:54 UTC
- Architectures: amd64, i386, arm64, armel, armhf, ppc64el, riscv64, s390x, loong64
- GPG Signed: β Yes
- Repository Format: APT-compatible with GPG signature verification
π Installation
π― APT Repository (Recommended - Automatic GPG Setup)
# One-line install with automatic GPG key setup
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/install-apt.sh | bash
# Then install OpenList
sudo apt install openlist -yπ¦ PPA Repository (Alternative - Launchpad)
# Add PPA repository
sudo add-apt-repository ppa:openlist/server
sudo apt update
# Install OpenList
sudo apt install openlist -yπ Manual APT Setup with GPG Verification (Modern systems - Ubuntu 22.04+/Debian 12+)
# Download and install GPG keyring
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Add repository with GPG verification
echo "Types: deb
URIs: https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/
Suites: ./
Signed-By: /usr/share/keyrings/openlist-archive-keyring.gpg" | \
sudo tee /etc/apt/sources.list.d/openlist.sources
# Update and install
sudo apt update && sudo apt install openlist -yπ Manual APT Setup with GPG Verification (Legacy systems - Ubuntu <22.04/Debian <12)
# Download and install GPG keyring
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Add repository with GPG verification
echo "deb [signed-by=/usr/share/keyrings/openlist-archive-keyring.gpg] https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/ ./" | \
sudo tee /etc/apt/sources.list.d/openlist.list
# Update and install
sudo apt update && sudo apt install openlist -yβ οΈ Manual APT Setup without GPG Verification (Not Recommended)
# Modern systems (Ubuntu 22.04+/Debian 12+)
echo "Types: deb
URIs: https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/
Suites: ./
Trusted: yes" | sudo tee /etc/apt/sources.list.d/openlist.sources
# Legacy systems (Ubuntu <22.04/Debian <12)
echo "deb [trusted=yes] https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/ ./" | \
sudo tee /etc/apt/sources.list.d/openlist.list
# Update and install
sudo apt update && sudo apt install openlist -yπ¦ Direct Download (AMD64)
wget https://github.com/OpenListTeam/OpenList-APT/releases/download/v4.1.9/openlist_4.1.9-1_amd64.deb
sudo dpkg -i openlist_4.1.9-1_amd64.deb
sudo apt-get install -f # Fix any dependency issuesπ¦ Direct Download (ARM64)
wget https://github.com/OpenListTeam/OpenList-APT/releases/download/v4.1.9/openlist_4.1.9-1_arm64.deb
sudo dpkg -i openlist_4.1.9-1_arm64.deb
sudo apt-get install -f # Fix any dependency issuesπ GPG Key Information
- GPG Signed: Yes
- Keyring File: openlist-archive-keyring.gpg
- Verification: Repository packages are cryptographically signed for security
π§ Service Management
# Check service status
sudo systemctl status openlist
# Start/stop/restart service
sudo systemctl start openlist
sudo systemctl stop openlist
sudo systemctl restart openlist
# Enable/disable auto-start
sudo systemctl enable openlist # Start on boot
sudo systemctl disable openlist # Don't start on boot
# View logs
sudo journalctl -u openlist -f
sudo journalctl -u openlist --since "1 hour ago"π File Locations
- Binary:
/var/lib/openlist/openlist - Working Directory:
/var/lib/openlist - Service File:
/usr/lib/systemd/system/openlist.service - Command Symlink:
/usr/bin/openlist - Configuration:
/var/lib/openlist/(auto-generated) - Logs:
journalctl -u openlistor/var/log/syslog
π Verification
# Verify installation
openlist --version
systemctl is-active openlist
# Check if repository is properly configured
apt policy openlist
# Verify GPG signature (if using signed repository)
apt-key list | grep -i openlist # Legacy systems
gpg --show-keys /usr/share/keyrings/openlist-archive-keyring.gpg # Modern systemsποΈ Uninstallation
# Stop and remove service
sudo systemctl stop openlist
sudo systemctl disable openlist
# Remove package but keep configuration
sudo apt remove openlist
# Remove package and all configuration/data (complete removal)
sudo apt purge openlist
# Remove repository configuration
sudo rm -f /etc/apt/sources.list.d/openlist.sources # Modern systems
sudo rm -f /etc/apt/sources.list.d/openlist.list # Legacy systems
sudo rm -f /usr/share/keyrings/openlist-archive-keyring.gpg
# Update package list
sudo apt updateπ Troubleshooting
# If you get GPG errors
sudo apt update --allow-unauthenticated
# Re-download GPG key
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Check service logs for issues
sudo journalctl -u openlist --no-pager
# Reset configuration (will regenerate on next start)
sudo systemctl stop openlist
sudo rm -rf /var/lib/openlist/*
sudo systemctl start openlistπ Security Note: This repository is GPG-signed for package integrity verification. The automatic installation script will set up GPG verification by default. For maximum security, always use the GPG-verified installation methods.
OpenList DEB Package 4.1.8
DEB Package for OpenList 4.1.8
This is an automated DEB package build from OpenListTeam/OpenList v4.1.8.
π¦ Package Information
- Source: OpenListTeam/OpenList v4.1.8
- Package Version: 4.1.8-1
- Build Date: 2025-11-26 03:16:49 UTC
- Architectures: amd64, i386, arm64, armel, armhf, ppc64el, riscv64, s390x, loong64
- GPG Signed: β Yes
- Repository Format: APT-compatible with GPG signature verification
π Installation
π― APT Repository (Recommended - Automatic GPG Setup)
# One-line install with automatic GPG key setup
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/install-apt.sh | bash
# Then install OpenList
sudo apt install openlist -yπ¦ PPA Repository (Alternative - Launchpad)
# Add PPA repository
sudo add-apt-repository ppa:openlist/server
sudo apt update
# Install OpenList
sudo apt install openlist -yπ Manual APT Setup with GPG Verification (Modern systems - Ubuntu 22.04+/Debian 12+)
# Download and install GPG keyring
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Add repository with GPG verification
echo "Types: deb
URIs: https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/
Suites: ./
Signed-By: /usr/share/keyrings/openlist-archive-keyring.gpg" | \
sudo tee /etc/apt/sources.list.d/openlist.sources
# Update and install
sudo apt update && sudo apt install openlist -yπ Manual APT Setup with GPG Verification (Legacy systems - Ubuntu <22.04/Debian <12)
# Download and install GPG keyring
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Add repository with GPG verification
echo "deb [signed-by=/usr/share/keyrings/openlist-archive-keyring.gpg] https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/ ./" | \
sudo tee /etc/apt/sources.list.d/openlist.list
# Update and install
sudo apt update && sudo apt install openlist -yβ οΈ Manual APT Setup without GPG Verification (Not Recommended)
# Modern systems (Ubuntu 22.04+/Debian 12+)
echo "Types: deb
URIs: https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/
Suites: ./
Trusted: yes" | sudo tee /etc/apt/sources.list.d/openlist.sources
# Legacy systems (Ubuntu <22.04/Debian <12)
echo "deb [trusted=yes] https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/ ./" | \
sudo tee /etc/apt/sources.list.d/openlist.list
# Update and install
sudo apt update && sudo apt install openlist -yπ¦ Direct Download (AMD64)
wget https://github.com/OpenListTeam/OpenList-APT/releases/download/v4.1.8/openlist_4.1.8-1_amd64.deb
sudo dpkg -i openlist_4.1.8-1_amd64.deb
sudo apt-get install -f # Fix any dependency issuesπ¦ Direct Download (ARM64)
wget https://github.com/OpenListTeam/OpenList-APT/releases/download/v4.1.8/openlist_4.1.8-1_arm64.deb
sudo dpkg -i openlist_4.1.8-1_arm64.deb
sudo apt-get install -f # Fix any dependency issuesπ GPG Key Information
- GPG Signed: Yes
- Keyring File: openlist-archive-keyring.gpg
- Verification: Repository packages are cryptographically signed for security
π§ Service Management
# Check service status
sudo systemctl status openlist
# Start/stop/restart service
sudo systemctl start openlist
sudo systemctl stop openlist
sudo systemctl restart openlist
# Enable/disable auto-start
sudo systemctl enable openlist # Start on boot
sudo systemctl disable openlist # Don't start on boot
# View logs
sudo journalctl -u openlist -f
sudo journalctl -u openlist --since "1 hour ago"π File Locations
- Binary:
/var/lib/openlist/openlist - Working Directory:
/var/lib/openlist - Service File:
/usr/lib/systemd/system/openlist.service - Command Symlink:
/usr/bin/openlist - Configuration:
/var/lib/openlist/(auto-generated) - Logs:
journalctl -u openlistor/var/log/syslog
π Verification
# Verify installation
openlist --version
systemctl is-active openlist
# Check if repository is properly configured
apt policy openlist
# Verify GPG signature (if using signed repository)
apt-key list | grep -i openlist # Legacy systems
gpg --show-keys /usr/share/keyrings/openlist-archive-keyring.gpg # Modern systemsποΈ Uninstallation
# Stop and remove service
sudo systemctl stop openlist
sudo systemctl disable openlist
# Remove package but keep configuration
sudo apt remove openlist
# Remove package and all configuration/data (complete removal)
sudo apt purge openlist
# Remove repository configuration
sudo rm -f /etc/apt/sources.list.d/openlist.sources # Modern systems
sudo rm -f /etc/apt/sources.list.d/openlist.list # Legacy systems
sudo rm -f /usr/share/keyrings/openlist-archive-keyring.gpg
# Update package list
sudo apt updateπ Troubleshooting
# If you get GPG errors
sudo apt update --allow-unauthenticated
# Re-download GPG key
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Check service logs for issues
sudo journalctl -u openlist --no-pager
# Reset configuration (will regenerate on next start)
sudo systemctl stop openlist
sudo rm -rf /var/lib/openlist/*
sudo systemctl start openlistπ Security Note: This repository is GPG-signed for package integrity verification. The automatic installation script will set up GPG verification by default. For maximum security, always use the GPG-verified installation methods.
OpenList DEB Package 4.1.7
DEB Package for OpenList 4.1.7
This is an automated DEB package build from OpenListTeam/OpenList v4.1.7.
π¦ Package Information
- Source: OpenListTeam/OpenList v4.1.7
- Package Version: 4.1.7-1
- Build Date: 2025-11-11 03:18:25 UTC
- Architectures: amd64, i386, arm64, armel, armhf, ppc64el, riscv64, s390x, loong64
- GPG Signed: β Yes
- Repository Format: APT-compatible with GPG signature verification
π Installation
π― APT Repository (Recommended - Automatic GPG Setup)
# One-line install with automatic GPG key setup
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/install-apt.sh | bash
# Then install OpenList
sudo apt install openlist -yπ¦ PPA Repository (Alternative - Launchpad)
# Add PPA repository
sudo add-apt-repository ppa:openlist/server
sudo apt update
# Install OpenList
sudo apt install openlist -yπ Manual APT Setup with GPG Verification (Modern systems - Ubuntu 22.04+/Debian 12+)
# Download and install GPG keyring
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Add repository with GPG verification
echo "Types: deb
URIs: https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/
Suites: ./
Signed-By: /usr/share/keyrings/openlist-archive-keyring.gpg" | \
sudo tee /etc/apt/sources.list.d/openlist.sources
# Update and install
sudo apt update && sudo apt install openlist -yπ Manual APT Setup with GPG Verification (Legacy systems - Ubuntu <22.04/Debian <12)
# Download and install GPG keyring
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Add repository with GPG verification
echo "deb [signed-by=/usr/share/keyrings/openlist-archive-keyring.gpg] https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/ ./" | \
sudo tee /etc/apt/sources.list.d/openlist.list
# Update and install
sudo apt update && sudo apt install openlist -yβ οΈ Manual APT Setup without GPG Verification (Not Recommended)
# Modern systems (Ubuntu 22.04+/Debian 12+)
echo "Types: deb
URIs: https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/
Suites: ./
Trusted: yes" | sudo tee /etc/apt/sources.list.d/openlist.sources
# Legacy systems (Ubuntu <22.04/Debian <12)
echo "deb [trusted=yes] https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/ ./" | \
sudo tee /etc/apt/sources.list.d/openlist.list
# Update and install
sudo apt update && sudo apt install openlist -yπ¦ Direct Download (AMD64)
wget https://github.com/OpenListTeam/OpenList-APT/releases/download/v4.1.7/openlist_4.1.7-1_amd64.deb
sudo dpkg -i openlist_4.1.7-1_amd64.deb
sudo apt-get install -f # Fix any dependency issuesπ¦ Direct Download (ARM64)
wget https://github.com/OpenListTeam/OpenList-APT/releases/download/v4.1.7/openlist_4.1.7-1_arm64.deb
sudo dpkg -i openlist_4.1.7-1_arm64.deb
sudo apt-get install -f # Fix any dependency issuesπ GPG Key Information
- GPG Signed: Yes
- Keyring File: openlist-archive-keyring.gpg
- Verification: Repository packages are cryptographically signed for security
π§ Service Management
# Check service status
sudo systemctl status openlist
# Start/stop/restart service
sudo systemctl start openlist
sudo systemctl stop openlist
sudo systemctl restart openlist
# Enable/disable auto-start
sudo systemctl enable openlist # Start on boot
sudo systemctl disable openlist # Don't start on boot
# View logs
sudo journalctl -u openlist -f
sudo journalctl -u openlist --since "1 hour ago"π File Locations
- Binary:
/var/lib/openlist/openlist - Working Directory:
/var/lib/openlist - Service File:
/usr/lib/systemd/system/openlist.service - Command Symlink:
/usr/bin/openlist - Configuration:
/var/lib/openlist/(auto-generated) - Logs:
journalctl -u openlistor/var/log/syslog
π Verification
# Verify installation
openlist --version
systemctl is-active openlist
# Check if repository is properly configured
apt policy openlist
# Verify GPG signature (if using signed repository)
apt-key list | grep -i openlist # Legacy systems
gpg --show-keys /usr/share/keyrings/openlist-archive-keyring.gpg # Modern systemsποΈ Uninstallation
# Stop and remove service
sudo systemctl stop openlist
sudo systemctl disable openlist
# Remove package but keep configuration
sudo apt remove openlist
# Remove package and all configuration/data (complete removal)
sudo apt purge openlist
# Remove repository configuration
sudo rm -f /etc/apt/sources.list.d/openlist.sources # Modern systems
sudo rm -f /etc/apt/sources.list.d/openlist.list # Legacy systems
sudo rm -f /usr/share/keyrings/openlist-archive-keyring.gpg
# Update package list
sudo apt updateπ Troubleshooting
# If you get GPG errors
sudo apt update --allow-unauthenticated
# Re-download GPG key
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Check service logs for issues
sudo journalctl -u openlist --no-pager
# Reset configuration (will regenerate on next start)
sudo systemctl stop openlist
sudo rm -rf /var/lib/openlist/*
sudo systemctl start openlistπ Security Note: This repository is GPG-signed for package integrity verification. The automatic installation script will set up GPG verification by default. For maximum security, always use the GPG-verified installation methods.
OpenList DEB Package 4.1.6
DEB Package for OpenList 4.1.6
This is an automated DEB package build from OpenListTeam/OpenList v4.1.6.
π¦ Package Information
- Source: OpenListTeam/OpenList v4.1.6
- Package Version: 4.1.6-1
- Build Date: 2025-11-04 03:16:11 UTC
- Architectures: amd64, i386, arm64, armel, armhf, ppc64el, riscv64, s390x, loong64
- GPG Signed: β Yes
- Repository Format: APT-compatible with GPG signature verification
π Installation
π― APT Repository (Recommended - Automatic GPG Setup)
# One-line install with automatic GPG key setup
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/install-apt.sh | bash
# Then install OpenList
sudo apt install openlist -yπ¦ PPA Repository (Alternative - Launchpad)
# Add PPA repository
sudo add-apt-repository ppa:openlist/server
sudo apt update
# Install OpenList
sudo apt install openlist -yπ Manual APT Setup with GPG Verification (Modern systems - Ubuntu 22.04+/Debian 12+)
# Download and install GPG keyring
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Add repository with GPG verification
echo "Types: deb
URIs: https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/
Suites: ./
Signed-By: /usr/share/keyrings/openlist-archive-keyring.gpg" | \
sudo tee /etc/apt/sources.list.d/openlist.sources
# Update and install
sudo apt update && sudo apt install openlist -yπ Manual APT Setup with GPG Verification (Legacy systems - Ubuntu <22.04/Debian <12)
# Download and install GPG keyring
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Add repository with GPG verification
echo "deb [signed-by=/usr/share/keyrings/openlist-archive-keyring.gpg] https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/ ./" | \
sudo tee /etc/apt/sources.list.d/openlist.list
# Update and install
sudo apt update && sudo apt install openlist -yβ οΈ Manual APT Setup without GPG Verification (Not Recommended)
# Modern systems (Ubuntu 22.04+/Debian 12+)
echo "Types: deb
URIs: https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/
Suites: ./
Trusted: yes" | sudo tee /etc/apt/sources.list.d/openlist.sources
# Legacy systems (Ubuntu <22.04/Debian <12)
echo "deb [trusted=yes] https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/ ./" | \
sudo tee /etc/apt/sources.list.d/openlist.list
# Update and install
sudo apt update && sudo apt install openlist -yπ¦ Direct Download (AMD64)
wget https://github.com/OpenListTeam/OpenList-APT/releases/download/v4.1.6/openlist_4.1.6-1_amd64.deb
sudo dpkg -i openlist_4.1.6-1_amd64.deb
sudo apt-get install -f # Fix any dependency issuesπ¦ Direct Download (ARM64)
wget https://github.com/OpenListTeam/OpenList-APT/releases/download/v4.1.6/openlist_4.1.6-1_arm64.deb
sudo dpkg -i openlist_4.1.6-1_arm64.deb
sudo apt-get install -f # Fix any dependency issuesπ GPG Key Information
- GPG Signed: Yes
- Keyring File: openlist-archive-keyring.gpg
- Verification: Repository packages are cryptographically signed for security
π§ Service Management
# Check service status
sudo systemctl status openlist
# Start/stop/restart service
sudo systemctl start openlist
sudo systemctl stop openlist
sudo systemctl restart openlist
# Enable/disable auto-start
sudo systemctl enable openlist # Start on boot
sudo systemctl disable openlist # Don't start on boot
# View logs
sudo journalctl -u openlist -f
sudo journalctl -u openlist --since "1 hour ago"π File Locations
- Binary:
/var/lib/openlist/openlist - Working Directory:
/var/lib/openlist - Service File:
/usr/lib/systemd/system/openlist.service - Command Symlink:
/usr/bin/openlist - Configuration:
/var/lib/openlist/(auto-generated) - Logs:
journalctl -u openlistor/var/log/syslog
π Verification
# Verify installation
openlist --version
systemctl is-active openlist
# Check if repository is properly configured
apt policy openlist
# Verify GPG signature (if using signed repository)
apt-key list | grep -i openlist # Legacy systems
gpg --show-keys /usr/share/keyrings/openlist-archive-keyring.gpg # Modern systemsποΈ Uninstallation
# Stop and remove service
sudo systemctl stop openlist
sudo systemctl disable openlist
# Remove package but keep configuration
sudo apt remove openlist
# Remove package and all configuration/data (complete removal)
sudo apt purge openlist
# Remove repository configuration
sudo rm -f /etc/apt/sources.list.d/openlist.sources # Modern systems
sudo rm -f /etc/apt/sources.list.d/openlist.list # Legacy systems
sudo rm -f /usr/share/keyrings/openlist-archive-keyring.gpg
# Update package list
sudo apt updateπ Troubleshooting
# If you get GPG errors
sudo apt update --allow-unauthenticated
# Re-download GPG key
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Check service logs for issues
sudo journalctl -u openlist --no-pager
# Reset configuration (will regenerate on next start)
sudo systemctl stop openlist
sudo rm -rf /var/lib/openlist/*
sudo systemctl start openlistπ Security Note: This repository is GPG-signed for package integrity verification. The automatic installation script will set up GPG verification by default. For maximum security, always use the GPG-verified installation methods.
OpenList DEB Package 4.1.5
DEB Package for OpenList 4.1.5
This is an automated DEB package build from OpenListTeam/OpenList v4.1.5.
π¦ Package Information
- Source: OpenListTeam/OpenList v4.1.5
- Package Version: 4.1.5-1
- Build Date: 2025-10-20 03:38:42 UTC
- Architectures: amd64, i386, arm64, armel, armhf, ppc64el, riscv64, s390x, loong64
- GPG Signed: β Yes
- Repository Format: APT-compatible with GPG signature verification
π Installation
π― APT Repository (Recommended - Automatic GPG Setup)
# One-line install with automatic GPG key setup
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/install-apt.sh | bash
# Then install OpenList
sudo apt install openlist -yπ¦ PPA Repository (Alternative - Launchpad)
# Add PPA repository
sudo add-apt-repository ppa:openlist/server
sudo apt update
# Install OpenList
sudo apt install openlist -yπ Manual APT Setup with GPG Verification (Modern systems - Ubuntu 22.04+/Debian 12+)
# Download and install GPG keyring
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Add repository with GPG verification
echo "Types: deb
URIs: https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/
Suites: ./
Signed-By: /usr/share/keyrings/openlist-archive-keyring.gpg" | \
sudo tee /etc/apt/sources.list.d/openlist.sources
# Update and install
sudo apt update && sudo apt install openlist -yπ Manual APT Setup with GPG Verification (Legacy systems - Ubuntu <22.04/Debian <12)
# Download and install GPG keyring
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Add repository with GPG verification
echo "deb [signed-by=/usr/share/keyrings/openlist-archive-keyring.gpg] https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/ ./" | \
sudo tee /etc/apt/sources.list.d/openlist.list
# Update and install
sudo apt update && sudo apt install openlist -yβ οΈ Manual APT Setup without GPG Verification (Not Recommended)
# Modern systems (Ubuntu 22.04+/Debian 12+)
echo "Types: deb
URIs: https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/
Suites: ./
Trusted: yes" | sudo tee /etc/apt/sources.list.d/openlist.sources
# Legacy systems (Ubuntu <22.04/Debian <12)
echo "deb [trusted=yes] https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/ ./" | \
sudo tee /etc/apt/sources.list.d/openlist.list
# Update and install
sudo apt update && sudo apt install openlist -yπ¦ Direct Download (AMD64)
wget https://github.com/OpenListTeam/OpenList-APT/releases/download/v4.1.5/openlist_4.1.5-1_amd64.deb
sudo dpkg -i openlist_4.1.5-1_amd64.deb
sudo apt-get install -f # Fix any dependency issuesπ¦ Direct Download (ARM64)
wget https://github.com/OpenListTeam/OpenList-APT/releases/download/v4.1.5/openlist_4.1.5-1_arm64.deb
sudo dpkg -i openlist_4.1.5-1_arm64.deb
sudo apt-get install -f # Fix any dependency issuesπ GPG Key Information
- GPG Signed: Yes
- Keyring File: openlist-archive-keyring.gpg
- Verification: Repository packages are cryptographically signed for security
π§ Service Management
# Check service status
sudo systemctl status openlist
# Start/stop/restart service
sudo systemctl start openlist
sudo systemctl stop openlist
sudo systemctl restart openlist
# Enable/disable auto-start
sudo systemctl enable openlist # Start on boot
sudo systemctl disable openlist # Don't start on boot
# View logs
sudo journalctl -u openlist -f
sudo journalctl -u openlist --since "1 hour ago"π File Locations
- Binary:
/var/lib/openlist/openlist - Working Directory:
/var/lib/openlist - Service File:
/usr/lib/systemd/system/openlist.service - Command Symlink:
/usr/bin/openlist - Configuration:
/var/lib/openlist/(auto-generated) - Logs:
journalctl -u openlistor/var/log/syslog
π Verification
# Verify installation
openlist --version
systemctl is-active openlist
# Check if repository is properly configured
apt policy openlist
# Verify GPG signature (if using signed repository)
apt-key list | grep -i openlist # Legacy systems
gpg --show-keys /usr/share/keyrings/openlist-archive-keyring.gpg # Modern systemsποΈ Uninstallation
# Stop and remove service
sudo systemctl stop openlist
sudo systemctl disable openlist
# Remove package but keep configuration
sudo apt remove openlist
# Remove package and all configuration/data (complete removal)
sudo apt purge openlist
# Remove repository configuration
sudo rm -f /etc/apt/sources.list.d/openlist.sources # Modern systems
sudo rm -f /etc/apt/sources.list.d/openlist.list # Legacy systems
sudo rm -f /usr/share/keyrings/openlist-archive-keyring.gpg
# Update package list
sudo apt updateπ Troubleshooting
# If you get GPG errors
sudo apt update --allow-unauthenticated
# Re-download GPG key
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Check service logs for issues
sudo journalctl -u openlist --no-pager
# Reset configuration (will regenerate on next start)
sudo systemctl stop openlist
sudo rm -rf /var/lib/openlist/*
sudo systemctl start openlistπ Security Note: This repository is GPG-signed for package integrity verification. The automatic installation script will set up GPG verification by default. For maximum security, always use the GPG-verified installation methods.
OpenList DEB Package 4.1.4
DEB Package for OpenList 4.1.4
This is an automated DEB package build from OpenListTeam/OpenList v4.1.4.
π¦ Package Information
- Source: OpenListTeam/OpenList v4.1.4
- Package Version: 4.1.4-1
- Build Date: 2025-10-02 03:05:12 UTC
- Architectures: amd64, i386, arm64, armel, armhf, ppc64el, riscv64, s390x, loong64
- GPG Signed: β Yes
- Repository Format: APT-compatible with GPG signature verification
π Installation
π― APT Repository (Recommended - Automatic GPG Setup)
# One-line install with automatic GPG key setup
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/install-apt.sh | bash
# Then install OpenList
sudo apt install openlist -yπ¦ PPA Repository (Alternative - Launchpad)
# Add PPA repository
sudo add-apt-repository ppa:openlist/server
sudo apt update
# Install OpenList
sudo apt install openlist -yπ Manual APT Setup with GPG Verification (Modern systems - Ubuntu 22.04+/Debian 12+)
# Download and install GPG keyring
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Add repository with GPG verification
echo "Types: deb
URIs: https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/
Suites: ./
Signed-By: /usr/share/keyrings/openlist-archive-keyring.gpg" | \
sudo tee /etc/apt/sources.list.d/openlist.sources
# Update and install
sudo apt update && sudo apt install openlist -yπ Manual APT Setup with GPG Verification (Legacy systems - Ubuntu <22.04/Debian <12)
# Download and install GPG keyring
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Add repository with GPG verification
echo "deb [signed-by=/usr/share/keyrings/openlist-archive-keyring.gpg] https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/ ./" | \
sudo tee /etc/apt/sources.list.d/openlist.list
# Update and install
sudo apt update && sudo apt install openlist -yβ οΈ Manual APT Setup without GPG Verification (Not Recommended)
# Modern systems (Ubuntu 22.04+/Debian 12+)
echo "Types: deb
URIs: https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/
Suites: ./
Trusted: yes" | sudo tee /etc/apt/sources.list.d/openlist.sources
# Legacy systems (Ubuntu <22.04/Debian <12)
echo "deb [trusted=yes] https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/ ./" | \
sudo tee /etc/apt/sources.list.d/openlist.list
# Update and install
sudo apt update && sudo apt install openlist -yπ¦ Direct Download (AMD64)
wget https://github.com/OpenListTeam/OpenList-APT/releases/download/v4.1.4/openlist_4.1.4-1_amd64.deb
sudo dpkg -i openlist_4.1.4-1_amd64.deb
sudo apt-get install -f # Fix any dependency issuesπ¦ Direct Download (ARM64)
wget https://github.com/OpenListTeam/OpenList-APT/releases/download/v4.1.4/openlist_4.1.4-1_arm64.deb
sudo dpkg -i openlist_4.1.4-1_arm64.deb
sudo apt-get install -f # Fix any dependency issuesπ GPG Key Information
- GPG Signed: Yes
- Keyring File: openlist-archive-keyring.gpg
- Verification: Repository packages are cryptographically signed for security
π§ Service Management
# Check service status
sudo systemctl status openlist
# Start/stop/restart service
sudo systemctl start openlist
sudo systemctl stop openlist
sudo systemctl restart openlist
# Enable/disable auto-start
sudo systemctl enable openlist # Start on boot
sudo systemctl disable openlist # Don't start on boot
# View logs
sudo journalctl -u openlist -f
sudo journalctl -u openlist --since "1 hour ago"π File Locations
- Binary:
/var/lib/openlist/openlist - Working Directory:
/var/lib/openlist - Service File:
/usr/lib/systemd/system/openlist.service - Command Symlink:
/usr/bin/openlist - Configuration:
/var/lib/openlist/(auto-generated) - Logs:
journalctl -u openlistor/var/log/syslog
π Verification
# Verify installation
openlist --version
systemctl is-active openlist
# Check if repository is properly configured
apt policy openlist
# Verify GPG signature (if using signed repository)
apt-key list | grep -i openlist # Legacy systems
gpg --show-keys /usr/share/keyrings/openlist-archive-keyring.gpg # Modern systemsποΈ Uninstallation
# Stop and remove service
sudo systemctl stop openlist
sudo systemctl disable openlist
# Remove package but keep configuration
sudo apt remove openlist
# Remove package and all configuration/data (complete removal)
sudo apt purge openlist
# Remove repository configuration
sudo rm -f /etc/apt/sources.list.d/openlist.sources # Modern systems
sudo rm -f /etc/apt/sources.list.d/openlist.list # Legacy systems
sudo rm -f /usr/share/keyrings/openlist-archive-keyring.gpg
# Update package list
sudo apt updateπ Troubleshooting
# If you get GPG errors
sudo apt update --allow-unauthenticated
# Re-download GPG key
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Check service logs for issues
sudo journalctl -u openlist --no-pager
# Reset configuration (will regenerate on next start)
sudo systemctl stop openlist
sudo rm -rf /var/lib/openlist/*
sudo systemctl start openlistπ Security Note: This repository is GPG-signed for package integrity verification. The automatic installation script will set up GPG verification by default. For maximum security, always use the GPG-verified installation methods.
OpenList DEB Package 4.1.3
DEB Package for OpenList 4.1.3
This is an automated DEB package build from OpenListTeam/OpenList v4.1.3.
π¦ Package Information
- Source: OpenListTeam/OpenList v4.1.3
- Package Version: 4.1.3-1
- Build Date: 2025-09-21 04:46:33 UTC
- Architectures: amd64, i386, arm64, armel, armhf, ppc64el, riscv64, s390x, loong64
- GPG Signed: β Yes
- Repository Format: APT-compatible with GPG signature verification
π Installation
π― APT Repository (Recommended - Automatic GPG Setup)
# One-line install with automatic GPG key setup
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/install-apt.sh | bash
# Then install OpenList
sudo apt install openlist -yπ¦ PPA Repository (Alternative - Launchpad)
# Add PPA repository
sudo add-apt-repository ppa:openlist/server
sudo apt update
# Install OpenList
sudo apt install openlist -yπ Manual APT Setup with GPG Verification (Modern systems - Ubuntu 22.04+/Debian 12+)
# Download and install GPG keyring
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Add repository with GPG verification
echo "Types: deb
URIs: https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/
Suites: ./
Signed-By: /usr/share/keyrings/openlist-archive-keyring.gpg" | \
sudo tee /etc/apt/sources.list.d/openlist.sources
# Update and install
sudo apt update && sudo apt install openlist -yπ Manual APT Setup with GPG Verification (Legacy systems - Ubuntu <22.04/Debian <12)
# Download and install GPG keyring
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Add repository with GPG verification
echo "deb [signed-by=/usr/share/keyrings/openlist-archive-keyring.gpg] https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/ ./" | \
sudo tee /etc/apt/sources.list.d/openlist.list
# Update and install
sudo apt update && sudo apt install openlist -yβ οΈ Manual APT Setup without GPG Verification (Not Recommended)
# Modern systems (Ubuntu 22.04+/Debian 12+)
echo "Types: deb
URIs: https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/
Suites: ./
Trusted: yes" | sudo tee /etc/apt/sources.list.d/openlist.sources
# Legacy systems (Ubuntu <22.04/Debian <12)
echo "deb [trusted=yes] https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/ ./" | \
sudo tee /etc/apt/sources.list.d/openlist.list
# Update and install
sudo apt update && sudo apt install openlist -yπ¦ Direct Download (AMD64)
wget https://github.com/OpenListTeam/OpenList-APT/releases/download/v4.1.3/openlist_4.1.3-1_amd64.deb
sudo dpkg -i openlist_4.1.3-1_amd64.deb
sudo apt-get install -f # Fix any dependency issuesπ¦ Direct Download (ARM64)
wget https://github.com/OpenListTeam/OpenList-APT/releases/download/v4.1.3/openlist_4.1.3-1_arm64.deb
sudo dpkg -i openlist_4.1.3-1_arm64.deb
sudo apt-get install -f # Fix any dependency issuesπ GPG Key Information
- GPG Signed: Yes
- Keyring File: openlist-archive-keyring.gpg
- Verification: Repository packages are cryptographically signed for security
π§ Service Management
# Check service status
sudo systemctl status openlist
# Start/stop/restart service
sudo systemctl start openlist
sudo systemctl stop openlist
sudo systemctl restart openlist
# Enable/disable auto-start
sudo systemctl enable openlist # Start on boot
sudo systemctl disable openlist # Don't start on boot
# View logs
sudo journalctl -u openlist -f
sudo journalctl -u openlist --since "1 hour ago"π File Locations
- Binary:
/var/lib/openlist/openlist - Working Directory:
/var/lib/openlist - Service File:
/usr/lib/systemd/system/openlist.service - Command Symlink:
/usr/bin/openlist - Configuration:
/var/lib/openlist/(auto-generated) - Logs:
journalctl -u openlistor/var/log/syslog
π Verification
# Verify installation
openlist --version
systemctl is-active openlist
# Check if repository is properly configured
apt policy openlist
# Verify GPG signature (if using signed repository)
apt-key list | grep -i openlist # Legacy systems
gpg --show-keys /usr/share/keyrings/openlist-archive-keyring.gpg # Modern systemsποΈ Uninstallation
# Stop and remove service
sudo systemctl stop openlist
sudo systemctl disable openlist
# Remove package but keep configuration
sudo apt remove openlist
# Remove package and all configuration/data (complete removal)
sudo apt purge openlist
# Remove repository configuration
sudo rm -f /etc/apt/sources.list.d/openlist.sources # Modern systems
sudo rm -f /etc/apt/sources.list.d/openlist.list # Legacy systems
sudo rm -f /usr/share/keyrings/openlist-archive-keyring.gpg
# Update package list
sudo apt updateπ Troubleshooting
# If you get GPG errors
sudo apt update --allow-unauthenticated
# Re-download GPG key
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Check service logs for issues
sudo journalctl -u openlist --no-pager
# Reset configuration (will regenerate on next start)
sudo systemctl stop openlist
sudo rm -rf /var/lib/openlist/*
sudo systemctl start openlistπ Security Note: This repository is GPG-signed for package integrity verification. The automatic installation script will set up GPG verification by default. For maximum security, always use the GPG-verified installation methods.
OpenList DEB Package 4.1.2
DEB Package for OpenList 4.1.2
This is an automated DEB package build from OpenListTeam/OpenList v4.1.2.
π¦ Package Information
- Source: OpenListTeam/OpenList v4.1.2
- Package Version: 4.1.2-1
- Build Date: 2025-09-07 03:05:24 UTC
- Architectures: AMD64, ARM64
- GPG Signed: β Yes
- Repository Format: APT-compatible with GPG signature verification
π Installation
π― APT Repository (Recommended - Automatic GPG Setup)
# One-line install with automatic GPG key setup
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/install-apt.sh | bash
# Then install OpenList
sudo apt install openlist -yπ¦ PPA Repository (Alternative - Launchpad)
# Add PPA repository
sudo add-apt-repository ppa:openlist/server
sudo apt update
# Install OpenList
sudo apt install openlist -yπ Manual APT Setup with GPG Verification (Modern systems - Ubuntu 22.04+/Debian 12+)
# Download and install GPG keyring
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Add repository with GPG verification
echo "Types: deb
URIs: https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/
Suites: ./
Signed-By: /usr/share/keyrings/openlist-archive-keyring.gpg" | \
sudo tee /etc/apt/sources.list.d/openlist.sources
# Update and install
sudo apt update && sudo apt install openlist -yπ Manual APT Setup with GPG Verification (Legacy systems - Ubuntu <22.04/Debian <12)
# Download and install GPG keyring
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Add repository with GPG verification
echo "deb [signed-by=/usr/share/keyrings/openlist-archive-keyring.gpg] https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/ ./" | \
sudo tee /etc/apt/sources.list.d/openlist.list
# Update and install
sudo apt update && sudo apt install openlist -yβ οΈ Manual APT Setup without GPG Verification (Not Recommended)
# Modern systems (Ubuntu 22.04+/Debian 12+)
echo "Types: deb
URIs: https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/
Suites: ./
Trusted: yes" | sudo tee /etc/apt/sources.list.d/openlist.sources
# Legacy systems (Ubuntu <22.04/Debian <12)
echo "deb [trusted=yes] https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/ ./" | \
sudo tee /etc/apt/sources.list.d/openlist.list
# Update and install
sudo apt update && sudo apt install openlist -yπ¦ Direct Download (AMD64)
wget https://github.com/OpenListTeam/OpenList-APT/releases/download/v4.1.2/openlist_4.1.2-1_amd64.deb
sudo dpkg -i openlist_4.1.2-1_amd64.deb
sudo apt-get install -f # Fix any dependency issuesπ¦ Direct Download (ARM64)
wget https://github.com/OpenListTeam/OpenList-APT/releases/download/v4.1.2/openlist_4.1.2-1_arm64.deb
sudo dpkg -i openlist_4.1.2-1_arm64.deb
sudo apt-get install -f # Fix any dependency issuesπ GPG Key Information
- GPG Signed: Yes
- Keyring File: openlist-archive-keyring.gpg
- Verification: Repository packages are cryptographically signed for security
π§ Service Management
# Check service status
sudo systemctl status openlist
# Start/stop/restart service
sudo systemctl start openlist
sudo systemctl stop openlist
sudo systemctl restart openlist
# Enable/disable auto-start
sudo systemctl enable openlist # Start on boot
sudo systemctl disable openlist # Don't start on boot
# View logs
sudo journalctl -u openlist -f
sudo journalctl -u openlist --since "1 hour ago"π File Locations
- Binary:
/var/lib/openlist/openlist - Working Directory:
/var/lib/openlist - Service File:
/usr/lib/systemd/system/openlist.service - Command Symlink:
/usr/bin/openlist - Configuration:
/var/lib/openlist/(auto-generated) - Logs:
journalctl -u openlistor/var/log/syslog
π Verification
# Verify installation
openlist --version
systemctl is-active openlist
# Check if repository is properly configured
apt policy openlist
# Verify GPG signature (if using signed repository)
apt-key list | grep -i openlist # Legacy systems
gpg --show-keys /usr/share/keyrings/openlist-archive-keyring.gpg # Modern systemsποΈ Uninstallation
# Stop and remove service
sudo systemctl stop openlist
sudo systemctl disable openlist
# Remove package but keep configuration
sudo apt remove openlist
# Remove package and all configuration/data (complete removal)
sudo apt purge openlist
# Remove repository configuration
sudo rm -f /etc/apt/sources.list.d/openlist.sources # Modern systems
sudo rm -f /etc/apt/sources.list.d/openlist.list # Legacy systems
sudo rm -f /usr/share/keyrings/openlist-archive-keyring.gpg
# Update package list
sudo apt updateπ Troubleshooting
# If you get GPG errors
sudo apt update --allow-unauthenticated
# Re-download GPG key
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Check service logs for issues
sudo journalctl -u openlist --no-pager
# Reset configuration (will regenerate on next start)
sudo systemctl stop openlist
sudo rm -rf /var/lib/openlist/*
sudo systemctl start openlistπ Security Note: This repository is GPG-signed for package integrity verification. The automatic installation script will set up GPG verification by default. For maximum security, always use the GPG-verified installation methods.
OpenList DEB Package 4.1.1
DEB Package for OpenList 4.1.1
This is an automated DEB package build from OpenListTeam/OpenList v4.1.1.
π¦ Package Information
- Source: OpenListTeam/OpenList v4.1.1
- Package Version: 4.1.1-1
- Build Date: 2025-08-19 03:14:01 UTC
- Architectures: AMD64, ARM64
- GPG Signed: β Yes
- Repository Format: APT-compatible with GPG signature verification
π Installation
π― APT Repository (Recommended - Automatic GPG Setup)
# One-line install with automatic GPG key setup
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/install-apt.sh | bash
# Then install OpenList
sudo apt install openlist -yπ¦ PPA Repository (Alternative - Launchpad)
# Add PPA repository
sudo add-apt-repository ppa:openlist/server
sudo apt update
# Install OpenList
sudo apt install openlist -yπ Manual APT Setup with GPG Verification (Modern systems - Ubuntu 22.04+/Debian 12+)
# Download and install GPG keyring
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Add repository with GPG verification
echo "Types: deb
URIs: https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/
Suites: ./
Signed-By: /usr/share/keyrings/openlist-archive-keyring.gpg" | \
sudo tee /etc/apt/sources.list.d/openlist.sources
# Update and install
sudo apt update && sudo apt install openlist -yπ Manual APT Setup with GPG Verification (Legacy systems - Ubuntu <22.04/Debian <12)
# Download and install GPG keyring
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Add repository with GPG verification
echo "deb [signed-by=/usr/share/keyrings/openlist-archive-keyring.gpg] https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/ ./" | \
sudo tee /etc/apt/sources.list.d/openlist.list
# Update and install
sudo apt update && sudo apt install openlist -yβ οΈ Manual APT Setup without GPG Verification (Not Recommended)
# Modern systems (Ubuntu 22.04+/Debian 12+)
echo "Types: deb
URIs: https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/
Suites: ./
Trusted: yes" | sudo tee /etc/apt/sources.list.d/openlist.sources
# Legacy systems (Ubuntu <22.04/Debian <12)
echo "deb [trusted=yes] https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/ ./" | \
sudo tee /etc/apt/sources.list.d/openlist.list
# Update and install
sudo apt update && sudo apt install openlist -yπ¦ Direct Download (AMD64)
wget https://github.com/OpenListTeam/OpenList-APT/releases/download/v4.1.1/openlist_4.1.1-1_amd64.deb
sudo dpkg -i openlist_4.1.1-1_amd64.deb
sudo apt-get install -f # Fix any dependency issuesπ¦ Direct Download (ARM64)
wget https://github.com/OpenListTeam/OpenList-APT/releases/download/v4.1.1/openlist_4.1.1-1_arm64.deb
sudo dpkg -i openlist_4.1.1-1_arm64.deb
sudo apt-get install -f # Fix any dependency issuesπ GPG Key Information
- GPG Signed: Yes
- Keyring File: openlist-archive-keyring.gpg
- Verification: Repository packages are cryptographically signed for security
π§ Service Management
# Check service status
sudo systemctl status openlist
# Start/stop/restart service
sudo systemctl start openlist
sudo systemctl stop openlist
sudo systemctl restart openlist
# Enable/disable auto-start
sudo systemctl enable openlist # Start on boot
sudo systemctl disable openlist # Don't start on boot
# View logs
sudo journalctl -u openlist -f
sudo journalctl -u openlist --since "1 hour ago"π File Locations
- Binary:
/var/lib/openlist/openlist - Working Directory:
/var/lib/openlist - Service File:
/usr/lib/systemd/system/openlist.service - Command Symlink:
/usr/bin/openlist - Configuration:
/var/lib/openlist/(auto-generated) - Logs:
journalctl -u openlistor/var/log/syslog
π Verification
# Verify installation
openlist --version
systemctl is-active openlist
# Check if repository is properly configured
apt policy openlist
# Verify GPG signature (if using signed repository)
apt-key list | grep -i openlist # Legacy systems
gpg --show-keys /usr/share/keyrings/openlist-archive-keyring.gpg # Modern systemsποΈ Uninstallation
# Stop and remove service
sudo systemctl stop openlist
sudo systemctl disable openlist
# Remove package but keep configuration
sudo apt remove openlist
# Remove package and all configuration/data (complete removal)
sudo apt purge openlist
# Remove repository configuration
sudo rm -f /etc/apt/sources.list.d/openlist.sources # Modern systems
sudo rm -f /etc/apt/sources.list.d/openlist.list # Legacy systems
sudo rm -f /usr/share/keyrings/openlist-archive-keyring.gpg
# Update package list
sudo apt updateπ Troubleshooting
# If you get GPG errors
sudo apt update --allow-unauthenticated
# Re-download GPG key
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Check service logs for issues
sudo journalctl -u openlist --no-pager
# Reset configuration (will regenerate on next start)
sudo systemctl stop openlist
sudo rm -rf /var/lib/openlist/*
sudo systemctl start openlistπ Security Note: This repository is GPG-signed for package integrity verification. The automatic installation script will set up GPG verification by default. For maximum security, always use the GPG-verified installation methods.
OpenList DEB Package 4.1.0
DEB Package for OpenList 4.1.0
This is an automated DEB package build from OpenListTeam/OpenList v4.1.0.
π¦ Package Information
- Source: OpenListTeam/OpenList v4.1.0
- Package Version: 4.1.0-1
- Build Date: 2025-08-01 03:32:50 UTC
- Architectures: AMD64, ARM64
- GPG Signed: β Yes
- Repository Format: APT-compatible with GPG signature verification
π Installation
π― APT Repository (Recommended - Automatic GPG Setup)
# One-line install with automatic GPG key setup
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/install-apt.sh | bash
# Then install OpenList
sudo apt install openlist -yπ¦ PPA Repository (Alternative - Launchpad)
# Add PPA repository
sudo add-apt-repository ppa:openlist/server
sudo apt update
# Install OpenList
sudo apt install openlist -yπ Manual APT Setup with GPG Verification (Modern systems - Ubuntu 22.04+/Debian 12+)
# Download and install GPG keyring
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Add repository with GPG verification
echo "Types: deb
URIs: https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/
Suites: ./
Signed-By: /usr/share/keyrings/openlist-archive-keyring.gpg" | \
sudo tee /etc/apt/sources.list.d/openlist.sources
# Update and install
sudo apt update && sudo apt install openlist -yπ Manual APT Setup with GPG Verification (Legacy systems - Ubuntu <22.04/Debian <12)
# Download and install GPG keyring
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Add repository with GPG verification
echo "deb [signed-by=/usr/share/keyrings/openlist-archive-keyring.gpg] https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/ ./" | \
sudo tee /etc/apt/sources.list.d/openlist.list
# Update and install
sudo apt update && sudo apt install openlist -yβ οΈ Manual APT Setup without GPG Verification (Not Recommended)
# Modern systems (Ubuntu 22.04+/Debian 12+)
echo "Types: deb
URIs: https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/
Suites: ./
Trusted: yes" | sudo tee /etc/apt/sources.list.d/openlist.sources
# Legacy systems (Ubuntu <22.04/Debian <12)
echo "deb [trusted=yes] https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/ ./" | \
sudo tee /etc/apt/sources.list.d/openlist.list
# Update and install
sudo apt update && sudo apt install openlist -yπ¦ Direct Download (AMD64)
wget https://github.com/OpenListTeam/OpenList-APT/releases/download/v4.1.0/openlist_4.1.0-1_amd64.deb
sudo dpkg -i openlist_4.1.0-1_amd64.deb
sudo apt-get install -f # Fix any dependency issuesπ¦ Direct Download (ARM64)
wget https://github.com/OpenListTeam/OpenList-APT/releases/download/v4.1.0/openlist_4.1.0-1_arm64.deb
sudo dpkg -i openlist_4.1.0-1_arm64.deb
sudo apt-get install -f # Fix any dependency issuesπ GPG Key Information
- GPG Signed: Yes
- Keyring File: openlist-archive-keyring.gpg
- Verification: Repository packages are cryptographically signed for security
π§ Service Management
# Check service status
sudo systemctl status openlist
# Start/stop/restart service
sudo systemctl start openlist
sudo systemctl stop openlist
sudo systemctl restart openlist
# Enable/disable auto-start
sudo systemctl enable openlist # Start on boot
sudo systemctl disable openlist # Don't start on boot
# View logs
sudo journalctl -u openlist -f
sudo journalctl -u openlist --since "1 hour ago"π File Locations
- Binary:
/var/lib/openlist/openlist - Working Directory:
/var/lib/openlist - Service File:
/usr/lib/systemd/system/openlist.service - Command Symlink:
/usr/bin/openlist - Configuration:
/var/lib/openlist/(auto-generated) - Logs:
journalctl -u openlistor/var/log/syslog
π Verification
# Verify installation
openlist --version
systemctl is-active openlist
# Check if repository is properly configured
apt policy openlist
# Verify GPG signature (if using signed repository)
apt-key list | grep -i openlist # Legacy systems
gpg --show-keys /usr/share/keyrings/openlist-archive-keyring.gpg # Modern systemsποΈ Uninstallation
# Stop and remove service
sudo systemctl stop openlist
sudo systemctl disable openlist
# Remove package but keep configuration
sudo apt remove openlist
# Remove package and all configuration/data (complete removal)
sudo apt purge openlist
# Remove repository configuration
sudo rm -f /etc/apt/sources.list.d/openlist.sources # Modern systems
sudo rm -f /etc/apt/sources.list.d/openlist.list # Legacy systems
sudo rm -f /usr/share/keyrings/openlist-archive-keyring.gpg
# Update package list
sudo apt updateπ Troubleshooting
# If you get GPG errors
sudo apt update --allow-unauthenticated
# Re-download GPG key
curl -fsSL https://github.com/OpenListTeam/OpenList-APT/releases/latest/download/openlist-archive-keyring.gpg | \
sudo tee /usr/share/keyrings/openlist-archive-keyring.gpg > /dev/null
# Check service logs for issues
sudo journalctl -u openlist --no-pager
# Reset configuration (will regenerate on next start)
sudo systemctl stop openlist
sudo rm -rf /var/lib/openlist/*
sudo systemctl start openlistπ Security Note: This repository is GPG-signed for package integrity verification. The automatic installation script will set up GPG verification by default. For maximum security, always use the GPG-verified installation methods.