How to Install Akregator on Ubuntu 26.04, 24.04 and 22.04

Install Akregator on Ubuntu 26.04, 24.04 and 22.04 to manage news feeds, blogs and podcasts with KDE’s aggregator.

Last updatedAuthorJoshua JamesRead time5 minGuide typeUbuntu

Browser-based readers are convenient until a service changes, a sync account disappears, or you simply want your subscriptions stored locally. Install Akregator on Ubuntu 26.04, 24.04, or 22.04 when you want a desktop RSS reader that keeps news sites, blogs, podcasts, and YouTube channels in one application with offline access and tight KDE integration.

Ubuntu users can install Akregator either from Ubuntu’s repository or from Flathub. The repository gives you the distro-packaged build with standard system updates, while Flatpak uses KDE’s verified Flathub record and keeps app/runtime updates separate from Ubuntu packages. Akregator installs from a terminal on all three supported Ubuntu LTS releases, but it still needs an active graphical session to launch.

Install Akregator on Ubuntu

Choose the repository build if you want the version that matches your Ubuntu release, or use Flatpak if you want KDE’s verified Flathub record and per-app Flatpak updates.

MethodSourceChannelUpdatesBest Fit
APT repositoryUbuntu universeDistribution defaultapt upgradesSmaller dependency set and tighter Ubuntu integration
FlatpakFlathubStore stable channelflatpak updateDesktop users who prefer KDE’s Flathub package outside the Ubuntu release cadence

Ubuntu 26.04, 24.04, and 22.04 all provide an APT package for Akregator. The Flatpak method also works across these releases. Minimal systems can complete the install commands, but Akregator is still a desktop application and needs a graphical session to open.

Update Ubuntu Before Installing Akregator

Refresh the package index and install pending upgrades first so Akregator pulls against current repository metadata.

sudo apt update
sudo apt upgrade -y

These commands use sudo for tasks that need administrator privileges. If your account does not have sudo access yet, follow the guide on how to add a new user to sudoers on Ubuntu.

Install Akregator from Ubuntu Repository

The Ubuntu package is the best fit if you want Akregator to track your release’s KDE libraries and update with the rest of the system.

Akregator is in Ubuntu’s universe component. If APT cannot locate the package on a customized system, enable Universe on Ubuntu, refresh the package index, and then retry the install command.

sudo apt install akregator -y

For a headless-safe verification, query the installed package state instead of running the GUI binary from SSH or a text console.

dpkg-query -W -f='${db:Status-Abbrev} ${binary:Package} ${Version}\n' akregator
ii  akregator 4:25.12.3-0ubuntu1

Check the package source when you need to confirm the release candidate and archive component.

apt-cache policy akregator
akregator:
  Installed: 4:25.12.3-0ubuntu1
  Candidate: 4:25.12.3-0ubuntu1
  Version table:
 *** 4:25.12.3-0ubuntu1 500
        500 http://au.archive.ubuntu.com/ubuntu resolute/universe amd64 Packages
        100 /var/lib/dpkg/status

Ubuntu 24.04 reports 4:23.08.5-0ubuntu4.1 after installation, and Ubuntu 22.04 reports 4:21.12.3-0ubuntu1. The install still creates the same akregator terminal launcher and org.kde.akregator.desktop application-menu entry on each release.

Install Akregator with Flatpak on Ubuntu

Use Flatpak when you prefer a Flathub-managed app and KDE Platform runtime outside Ubuntu’s package cadence.

If the flatpak command is missing on your system, follow the guide to install Flatpak on Ubuntu before continuing.

Add the Flathub remote first. The --if-not-exists flag prevents duplicate-remote errors if you rerun the command later.

sudo flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo

Confirm that Flathub is available at system scope before you install the application.

flatpak remotes --columns=name,options | awk '$1 == "flathub" {print $1, $2}'
flathub system

Install Akregator from Flathub:

sudo flatpak install flathub org.kde.akregator -y

Verify the Flatpak package metadata after installation.

flatpak info org.kde.akregator
Akregator - Keep up with your feeds

          ID: org.kde.akregator
         Ref: app/org.kde.akregator/x86_64/stable
        Arch: x86_64
      Branch: stable
     Version: 6.6.2
      Origin: flathub
Installation: system

Akregator’s Flatpak metadata uses KDE’s 6.x application version line, while Ubuntu’s package string uses a KDE Gear-style 25.x package version on current releases. Treat those strings as source labels rather than a simple newer-versus-older comparison.

Launch Akregator on Ubuntu

Akregator launches from the application menu on GNOME and other Ubuntu desktops once a graphical login is active. KDE Plasma is not required, but install KDE Plasma on Ubuntu if you want tighter integration with Kontact, KDE wallet prompts, and KDE widgets.

Launch Repository-installed Akregator on Ubuntu

Use the package-provided launcher from a terminal emulator inside your desktop session.

akregator

Launch Flatpak-installed Akregator on Ubuntu

Use the Flatpak runtime command if you installed Akregator from Flathub.

flatpak run org.kde.akregator

Launch Akregator from Ubuntu’s Application Menu

Open your desktop’s application menu, search for Akregator, and start it like any other GUI application.

Add RSS Feeds to Akregator on Ubuntu

After Akregator opens, add subscriptions from Feed > Add Feed, then use File > Import Feeds or File > Export Feeds when you want to move OPML subscriptions between readers or keep a backup.

Akregator on Ubuntu can subscribe to standard RSS and Atom URLs, including YouTube channel feeds that use the https://www.youtube.com/feeds/videos.xml?channel_id=CHANNEL_ID format.

  • News sites often publish feeds like https://example.com/tech/rss or https://example.com/news/feed.
  • Blogs commonly use patterns such as https://blog.example.com/feed or https://example.com/rss.xml.
  • YouTube channels use https://www.youtube.com/feeds/videos.xml?channel_id=CHANNEL_ID.

Update or Remove Akregator on Ubuntu

Update Repository-installed Akregator on Ubuntu

Use APT when you installed the Ubuntu package.

sudo apt update
sudo apt install --only-upgrade akregator -y

Update Flatpak Akregator on Ubuntu

Update only the Akregator Flatpak when you want to leave other Flatpak applications alone.

sudo flatpak update org.kde.akregator -y

Remove Repository-installed Akregator on Ubuntu

Use the Ubuntu package manager to remove Akregator first.

sudo apt remove akregator -y

Preview dependency cleanup before removing libraries, because reused desktops can have unrelated packages in the autoremovable set.

sudo apt autoremove --dry-run

If the preview only lists packages you no longer need, run the cleanup interactively.

sudo apt autoremove

Confirm that the Ubuntu package is no longer installed.

dpkg-query -W -f='${db:Status-Abbrev} ${binary:Package}\n' akregator 2>/dev/null | grep '^ii' || echo not-installed
not-installed

Removing the package does not back up your personal feeds for you. Export an OPML copy from Akregator before uninstalling if you want to keep your subscription list for another system or reader.

Remove Flatpak Akregator on Ubuntu

Remove the system-scope Flatpak package with the same scope used during installation.

sudo flatpak remove org.kde.akregator -y

Verify that the Flatpak application is gone.

flatpak list --app --columns=application | grep -Fx org.kde.akregator || echo not-installed
not-installed

Flatpak application data lives in your home directory, separate from the system-scope app package.

Export your feeds to OPML before deleting the Flatpak profile if you want to keep your subscription list.

rm -rf ~/.var/app/org.kde.akregator
test ! -d ~/.var/app/org.kde.akregator && echo profile-removed
profile-removed

Troubleshoot Akregator on Ubuntu

The most common Akregator issue on Ubuntu is trying to launch it from a shell that has no graphical display attached.

Fix Akregator Launch Failures Without a Graphical Session on Ubuntu

If you start Akregator from SSH or a text-only console, Qt cannot connect to the desktop display and the application aborts with errors like these:

qt.qpa.xcb: could not connect to display
Could not load the Qt platform plugin "xcb"

Check whether the shell can see a graphical session:

printf 'DISPLAY=%s\nWAYLAND_DISPLAY=%s\n' "${DISPLAY:-unset}" "${WAYLAND_DISPLAY:-unset}"
DISPLAY=unset
WAYLAND_DISPLAY=unset

If both values are unset, return to a local desktop session, then launch Akregator from the Ubuntu application menu or from a terminal emulator inside GNOME or KDE Plasma.

Conclusion

Akregator is ready on Ubuntu for RSS, Atom, OPML imports, and local feed reading without relying on a web service. Keep the APT build when release-matched KDE libraries matter most, or use the Flathub package when you prefer separate Flatpak app and runtime updates.

Share this guide

Help another Linux user troubleshoot faster

Share this guide with someone troubleshooting Linux systems or saving it for later.

Follow LinuxCapable

Want more LinuxCapable guides in Google?

Add LinuxCapable as a preferred source so Google can show more of our fresh Linux tutorials in Top Stories and From your sources when relevant.

Add LinuxCapable as a preferred source on Google
Search LinuxCapable

Need another guide?

Search LinuxCapable for package installs, commands, troubleshooting, and follow-up guides related to what you just read.

Found this guide useful?

Support LinuxCapable to keep tutorials free and up to date.

Buy me a coffeeBuy me a coffee
Before commenting, please review our Comments Policy.
Formatting tips for your comment

You can use basic HTML to format your comment. Useful tags currently allowed in published comments:

You type Result
<code>command</code> command
<strong>bold</strong> bold
<em>italic</em> italic
<blockquote>quote</blockquote> quote block

Got a Question or Feedback?

We read and reply to every comment - let us know how we can help or improve this guide.

Verify before posting: