flatpak-coredumpctl command not found

In this troubleshooting guide we learn how to fix flatpak-coredumpctl command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

flatpak-coredumpctl: command not found

or when using sudo you get the following error message

sudo: flatpak-coredumpctl: command not found

Solutions to flatpak-coredumpctl: command not found

How To Fix flatpak-coredumpctl: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu flatpak-coredumpctl is provided by libflatpak-dev package.

libflatpak-dev is:

Flatpak installs, manages and runs sandboxed desktop application bundles. See the flatpak package for a more comprehensive description.

This package contains development headers and pkg-config metadata for libflatpak0, and the flatpak-coredump and flatpak-bisect scripts used to debug Flatpak applications.

To fix this problem, we can install more using the command below.

sudo apt-get -y install libflatpak-dev

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install libflatpak-dev.

sudo apt -y install libflatpak-dev

Or if you have aptitude installed you can use the following command.

sudo aptitude install libflatpak-dev

Summary

In this tutorial we learn how to fix flatpak-coredumpctl command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.