Skip to content

Releases: OpenListTeam/OpenList-APT

OpenList DEB Package 4.1.9

02 Jan 03:41
7e21978

Choose a tag to compare

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

πŸ”§ 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 openlist or /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

26 Nov 03:16
7e21978

Choose a tag to compare

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

πŸ”§ 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 openlist or /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

11 Nov 03:18
7e21978

Choose a tag to compare

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

πŸ”§ 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 openlist or /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

04 Nov 03:16
7e21978

Choose a tag to compare

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

πŸ”§ 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 openlist or /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

20 Oct 03:38
7e21978

Choose a tag to compare

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

πŸ”§ 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 openlist or /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

02 Oct 03:05
7e21978

Choose a tag to compare

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

πŸ”§ 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 openlist or /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

21 Sep 04:46
82e2ce0

Choose a tag to compare

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

πŸ”§ 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 openlist or /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

07 Sep 03:05
88d25c2

Choose a tag to compare

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

πŸ”§ 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 openlist or /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

19 Aug 03:14
88d25c2

Choose a tag to compare

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

πŸ”§ 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 openlist or /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

01 Aug 03:32
88d25c2

Choose a tag to compare

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

πŸ”§ 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 openlist or /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.