Skip to content

offlineinstallersetup/linux-offline-installers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 

Repository files navigation

Linux Offline Installers

A reference of Linux desktop / server software available as offline packages — DEB, RPM, AppImage, tar.gz — for offline / air-gapped Linux installs.

Maintained by OfflineInstallerSetup.com — verified offline installer links from official publishers.

Website Ubuntu Fedora Debian


Why offline installers on Linux?

Linux package managers usually need internet — but for:

  • 🖥️ Air-gapped servers (regulated environments, secure facilities)
  • 🏢 Enterprise VDI / golden images
  • 🐢 Slow connections in remote sites
  • 📦 Pinned-version installs for compliance
  • 🔄 Offline package mirrors

…you need standalone DEB / RPM / AppImage files. This list catalogs apps that publish them on official sources.


Browsers

App Format Architecture
Mozilla Firefox tar.bz2 / DEB / RPM x86_64, ARM64
Google Chrome DEB / RPM x86_64
Microsoft Edge DEB / RPM x86_64
Brave Browser DEB / RPM x86_64, ARM64
Opera DEB / RPM x86_64
Vivaldi DEB / RPM x86_64, ARM64
Tor Browser tar.xz x86_64

→ More at offlineinstallersetup.com


Office & Productivity

App Format
LibreOffice DEB / RPM bundles
OnlyOffice Desktop DEB / RPM / AppImage
Apache OpenOffice tar.gz
Thunderbird tar.bz2 / DEB / RPM
Joplin AppImage
Obsidian DEB / RPM / AppImage

Media

  • VLC Media Player — DEB / RPM (in repos) + Flatpak / Snap
  • MPV — Static binary available
  • Audacity — AppImage
  • HandBrake — AppImage / Flatpak
  • OBS Studio — DEB / Flatpak
  • Kdenlive — AppImage

Developer Tools

App Format
Visual Studio Code DEB / RPM / tar.gz
JetBrains IDEs tar.gz (per-IDE)
Sublime Text DEB / RPM / tar.xz
Git Source / DEB / RPM
Node.js tar.xz binaries
Python Source / system packages
Docker (CE) DEB / RPM

Communication

  • Zoom — DEB / RPM
  • Microsoft Teams (Linux preview) — DEB / RPM (deprecated; use web)
  • Slack — DEB / RPM
  • Telegram Desktop — tar.xz
  • Signal Desktop — DEB
  • Discord — DEB / tar.gz

Graphics & Design

  • GIMP — Flatpak / AppImage
  • Inkscape — AppImage
  • Krita — AppImage
  • Blender — tar.xz portable
  • darktable — AppImage / DEB

Installing offline packages

Debian / Ubuntu (DEB)

# Install a single .deb file (resolves dependencies if available locally)
sudo apt install ./package.deb

# Or with dpkg (no auto dependency resolution)
sudo dpkg -i package.deb
sudo apt-get install -f   # fix dependencies if needed

Fedora / RHEL / Rocky (RPM)

# Modern (DNF)
sudo dnf install ./package.rpm

# Older (yum)
sudo yum localinstall package.rpm

AppImage

chmod +x app-x.x.x.AppImage
./app-x.x.x.AppImage

tar.gz / tar.xz

tar -xzf software-x.x.x.tar.gz
cd software-x.x.x
./install.sh   # or follow vendor instructions

Building an offline package mirror

For larger Linux fleets, mirror the entire package repository:

  • Debian/Ubuntuapt-mirror or debmirror
  • Fedora/RHELreposync from dnf-utils
  • Containers — local Docker registry mirror

Reference: offlineinstallersetup.com/resources/offline-installer-availability


Verifying signatures

# DEB packages
dpkg-sig --verify package.deb

# RPM packages
rpm --checksig package.rpm

# AppImage (manual GPG verification with vendor key)
gpg --verify app.AppImage.sig app.AppImage

Guide: How to verify installer safety


Resources


Contributing

Found a Linux app with an offline DEB/RPM/AppImage that should be on this list? Open a PR or contact via offlineinstallersetup.com/contact.

License

CC0 — Public domain.


🌐 Maintained by OfflineInstallerSetup.com

About

Linux offline installers — DEB, RPM, AppImage, tar.gz packages for offline / air-gapped Linux servers and desktops. Ubuntu, Debian, Fedora, RHEL. From offlineinstallersetup.com

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors