{"id":3945,"date":"2021-03-19T06:00:00","date_gmt":"2021-03-19T10:00:00","guid":{"rendered":"http:\/\/thebackroomtech.com\/?p=3945"},"modified":"2024-02-16T20:39:48","modified_gmt":"2024-02-17T01:39:48","slug":"how-to-install-and-run-flatpak-applications","status":"publish","type":"post","link":"https:\/\/thebackroomtech.com\/how-to-install-and-run-flatpak-applications\/","title":{"rendered":"How to Install and Run Flatpak Applications"},"content":{"rendered":"\n<p>Linux offers a range of options for managing packages. Traditionally, these options were confined to only package managers like APT,&nbsp; DNF or YUM. <\/p>\n\n\n\n<p>App stores, which are available in major distributions, provided great relief for users who are averse to working on the command-line. They provide a simple graphical interface that allows users to install, update, or remove installed software applications on Linux.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><a href=\"https:\/\/thebackroomtech.com\/wp-content\/uploads\/flatpak.jpg\"><img decoding=\"async\" width=\"680\" height=\"382\" src=\"https:\/\/thebackroomtech.com\/wp-content\/uploads\/flatpak.jpg\" alt=\"How to Install and Run Flatpak Applications image 1\" class=\"wp-image-3946\" srcset=\"https:\/\/thebackroomtech.com\/wp-content\/uploads\/flatpak.jpg 680w, https:\/\/thebackroomtech.com\/wp-content\/uploads\/flatpak-300x169.jpg 300w, https:\/\/thebackroomtech.com\/wp-content\/uploads\/flatpak-80x45.jpg 80w\" sizes=\"(max-width: 680px) 100vw, 680px\" \/><\/a><\/figure>\n<\/div>\n\n\n<h2 class=\"wp-block-heading\"><strong>Installing Software Packages in Linux<\/strong><\/h2>\n\n\n\n<p>Over time, managing software packages in Linux presented a host of complex challenges.&nbsp;<\/p>\n\n\n\n<p>First, not all applications could be found in App Stores. For you to install them, you had to download and run the corresponding rpm or debin packages. Sometimes, when running these packages, you would encounter dependency issues which would often result in errors during the installation.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><a href=\"https:\/\/thebackroomtech.com\/wp-content\/uploads\/linux-pc.jpeg\"><img decoding=\"async\" width=\"680\" height=\"505\" src=\"https:\/\/thebackroomtech.com\/wp-content\/uploads\/linux-pc.jpeg\" alt=\"How to Install and Run Flatpak Applications image 2\" class=\"wp-image-3947\" srcset=\"https:\/\/thebackroomtech.com\/wp-content\/uploads\/linux-pc.jpeg 680w, https:\/\/thebackroomtech.com\/wp-content\/uploads\/linux-pc-300x223.jpeg 300w, https:\/\/thebackroomtech.com\/wp-content\/uploads\/linux-pc-67x50.jpeg 67w, https:\/\/thebackroomtech.com\/wp-content\/uploads\/linux-pc-70x52.jpeg 70w\" sizes=\"(max-width: 680px) 100vw, 680px\" \/><\/a><\/figure>\n<\/div>\n\n\n<p>Secondly, while you could successfully install a software package in one Linux system, say Debian, the installation would totally fail in Ubuntu or another Debian-based operating system.&nbsp;<\/p>\n\n\n\n<p>Given the setbacks that users encountered in managing software packages across different environments, innovative ways of handling packages were developed.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Distribution Agnostic Software Packages<\/strong><\/h2>\n\n\n\n<p>Given the set of challenges that came with installing packages across multiple Linux distributions, a distribution-agnostic system of handling packages that would allow users to install and manage packages,&nbsp; regardless of the distribution they were running, was needed.&nbsp;<\/p>\n\n\n\n<p>In light of this, Canonical, Ubuntu\u2019s publisher, thought of snaps which are compressed applications that bundle with their own libraries and dependencies. The snapd daemon enables users to install, update and remove snap packages across all major distributions that have snap support. Canonical has availed <a href=\"https:\/\/snapcraft.io\/\">Snapcraft<\/a> which is a snap repository that hosts over 4000 snaps.&nbsp;<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><a href=\"https:\/\/thebackroomtech.com\/wp-content\/uploads\/linux.jpeg\"><img decoding=\"async\" width=\"680\" height=\"340\" src=\"https:\/\/thebackroomtech.com\/wp-content\/uploads\/linux.jpeg\" alt=\"How to Install and Run Flatpak Applications image 3\" class=\"wp-image-3948\" srcset=\"https:\/\/thebackroomtech.com\/wp-content\/uploads\/linux.jpeg 680w, https:\/\/thebackroomtech.com\/wp-content\/uploads\/linux-300x150.jpeg 300w, https:\/\/thebackroomtech.com\/wp-content\/uploads\/linux-80x40.jpeg 80w\" sizes=\"(max-width: 680px) 100vw, 680px\" \/><\/a><\/figure>\n<\/div>\n\n\n<p>Additionally, there is AppImage, a packaging system that allows users to install portable applications without requiring root privileges. The other alternative is Flatpak, which we will talk about and seek to understand in a better way.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Flatpak, What <\/strong>Is It?<\/h2>\n\n\n\n<p>Flatpak is a package management system that aims to enable&nbsp; users and developers to install and manage software packages on Linux systems regardless of the Linux distribution, runtime, dependencies and the type of package management.&nbsp;A flatpak application runs in a sandboxed environment. This is an isolated environment that is bundled with all the dependencies, libraries and everything that is needed for the app to run smoothly.&nbsp;<\/p>\n\n\n\n<p>The uniformity in distribution and packaging&nbsp; gives developers an easy time when developing and testing applications.<\/p>\n\n\n\n<p>To take advantage of flatpaks, you need to have flatpak enabled on your system. Without much further ado, let\u2019s dive into this and see how flatpak can be installed in&nbsp; major Linux distributions.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Enable Flatpak in Red Hat \/ CentOS \/ Fedora<\/strong><\/h4>\n\n\n\n<p>For RedHat \/ CentOS 8 and Fedora 22 and later versions, invoke the command below to enable flatpak:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>$ sudo dnf install flatpak<\/strong><\/pre>\n\n\n\n<p>For earlier versions of Red Hat and CentOS use the YUM package manager as shown:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>$ sudo yum install flatpak<\/strong><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Enable Flatpak in Debian\/Ubuntu&nbsp;<\/strong><\/h4>\n\n\n\n<p>If you are running the latest versions on Debian and Ubuntu, then the following commands will come in handy in getting flatpak on your system:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>$ sudo apt install flatpak<\/strong><\/pre>\n\n\n\n<p>For Linux Mint and other Ubuntu derivatives, i.e. Elementary OS, add the Alexander Larsson PPA first. ( Pssst! , this is the creator of the Flatpak packaging system).<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>$ sudo add-apt-repository ppa:alexlarsson\/flatpak&nbsp;<\/strong><\/pre>\n\n\n\n<p>Then update your system packages and run the commands shown:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>$ sudo apt update<\/strong><br><strong>$ sudo apt install flatpak<\/strong><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Enable Flatpak in ArchLinux \/ Manjaro<\/strong><\/h4>\n\n\n\n<p>If you are an Arch Linux or Arch-based distro lover, use the&nbsp; pacman package manager to enable Flatpak support.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>$ sudo pacman -S install flatpak<\/strong><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Enable Flatpak in OpenSUSE<\/strong><\/h4>\n\n\n\n<p>On OpenSUSE run the command as shown:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>$ sudo zypper install flatpak<\/strong><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How to Install and Run Flatpak Applications<\/strong><\/h2>\n\n\n\n<p>Flatpak applications, just like snaps, are hosted on a repository. The most popular repository is the <a rel=\"noreferrer noopener\" href=\"https:\/\/flathub.org\/\" target=\"_blank\">FlatHub<\/a> repository that has applications in broad categories such as audio &amp; video, graphics &amp; photography, developer tools, utilities and so much more.<\/p>\n\n\n\n<p>To enable Flathub repository to enable you install applications from Flathub, issue the command below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>$ flatpak remote-add --if-not-exists flathub https:\/\/flathub.org\/repo\/flathub.flatpakrepo<\/strong><\/pre>\n\n\n\n<p>You can verify the repository installed by running the command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>$ flatpak remotes<\/strong><\/pre>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><a href=\"https:\/\/thebackroomtech.com\/wp-content\/uploads\/01-flatpak-remotes.jpg\"><img decoding=\"async\" width=\"680\" height=\"152\" src=\"https:\/\/thebackroomtech.com\/wp-content\/uploads\/01-flatpak-remotes.jpg\" alt=\"How to Install and Run Flatpak Applications image 4\" class=\"wp-image-3949\" srcset=\"https:\/\/thebackroomtech.com\/wp-content\/uploads\/01-flatpak-remotes.jpg 680w, https:\/\/thebackroomtech.com\/wp-content\/uploads\/01-flatpak-remotes-300x67.jpg 300w, https:\/\/thebackroomtech.com\/wp-content\/uploads\/01-flatpak-remotes-80x18.jpg 80w\" sizes=\"(max-width: 680px) 100vw, 680px\" \/><\/a><\/figure>\n<\/div>\n\n\n<p>Once the repository is added, you can search for the availability of an application&nbsp; as shown.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>$ flatpak search app-name<\/strong><\/pre>\n\n\n\n<p>For example, we are going to search for the Skype desktop client as shown:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>$ flatpak search skype<\/strong><\/pre>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><a href=\"https:\/\/thebackroomtech.com\/wp-content\/uploads\/02-flatpak-search-app-name.jpg\"><img decoding=\"async\" width=\"680\" height=\"164\" src=\"https:\/\/thebackroomtech.com\/wp-content\/uploads\/02-flatpak-search-app-name.jpg\" alt=\"How to Install and Run Flatpak Applications image 5\" class=\"wp-image-3950\" srcset=\"https:\/\/thebackroomtech.com\/wp-content\/uploads\/02-flatpak-search-app-name.jpg 680w, https:\/\/thebackroomtech.com\/wp-content\/uploads\/02-flatpak-search-app-name-300x72.jpg 300w, https:\/\/thebackroomtech.com\/wp-content\/uploads\/02-flatpak-search-app-name-80x19.jpg 80w\" sizes=\"(max-width: 680px) 100vw, 680px\" \/><\/a><\/figure>\n<\/div>\n\n\n<p>The output gives you details about the flatpak application such as the Application ID, the version, the branch and a brief summary of the application.<\/p>\n\n\n\n<p>To install the flatpak application, run the syntax as follows:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>$ sudo flatpak install remotes Application-ID<\/strong><\/pre>\n\n\n\n<p>Here, the command to install Skype client will be:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>$ sudo flatpak install flathub com.skype.Client<\/strong><\/pre>\n\n\n\n<p>Your system will contact flathub, search for the flatpak application and install it. Simply follow the prompts by typing <strong>\u2018y\u2019<\/strong> and pressing ENTER. The installation can take quite a bit of time, and this might be a great opportunity to grab a cup of tea or rush to take a break.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><a href=\"https:\/\/thebackroomtech.com\/wp-content\/uploads\/03-flatpak-install-skype-application.jpg\"><img decoding=\"async\" width=\"680\" height=\"287\" src=\"https:\/\/thebackroomtech.com\/wp-content\/uploads\/03-flatpak-install-skype-application.jpg\" alt=\"How to Install and Run Flatpak Applications image 6\" class=\"wp-image-3951\" srcset=\"https:\/\/thebackroomtech.com\/wp-content\/uploads\/03-flatpak-install-skype-application.jpg 680w, https:\/\/thebackroomtech.com\/wp-content\/uploads\/03-flatpak-install-skype-application-300x127.jpg 300w, https:\/\/thebackroomtech.com\/wp-content\/uploads\/03-flatpak-install-skype-application-80x34.jpg 80w\" sizes=\"(max-width: 680px) 100vw, 680px\" \/><\/a><\/figure>\n<\/div>\n\n\n<p>You can list all the installed flatpak apps by running:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>$ flatpak list<\/strong><\/pre>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><a href=\"https:\/\/thebackroomtech.com\/wp-content\/uploads\/04-List-flatpak-applications.jpg\"><img decoding=\"async\" width=\"680\" height=\"192\" src=\"https:\/\/thebackroomtech.com\/wp-content\/uploads\/04-List-flatpak-applications.jpg\" alt=\"How to Install and Run Flatpak Applications image 7\" class=\"wp-image-3952\" srcset=\"https:\/\/thebackroomtech.com\/wp-content\/uploads\/04-List-flatpak-applications.jpg 680w, https:\/\/thebackroomtech.com\/wp-content\/uploads\/04-List-flatpak-applications-300x85.jpg 300w, https:\/\/thebackroomtech.com\/wp-content\/uploads\/04-List-flatpak-applications-80x23.jpg 80w\" sizes=\"(max-width: 680px) 100vw, 680px\" \/><\/a><\/figure>\n<\/div>\n\n\n<p>Running a flatpak is quite simple. Simply use the syntax:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>$ sudo flatpak run Application-ID<\/strong><\/pre>\n\n\n\n<p>For example, in our case, this will be<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>$ sudo flatpak run com.skype.Client<\/strong><\/pre>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><a href=\"https:\/\/thebackroomtech.com\/wp-content\/uploads\/05-flatpak-run-application.jpg\"><img decoding=\"async\" width=\"680\" height=\"538\" src=\"https:\/\/thebackroomtech.com\/wp-content\/uploads\/05-flatpak-run-application.jpg\" alt=\"How to Install and Run Flatpak Applications image 8\" class=\"wp-image-3953\" srcset=\"https:\/\/thebackroomtech.com\/wp-content\/uploads\/05-flatpak-run-application.jpg 680w, https:\/\/thebackroomtech.com\/wp-content\/uploads\/05-flatpak-run-application-300x237.jpg 300w, https:\/\/thebackroomtech.com\/wp-content\/uploads\/05-flatpak-run-application-63x50.jpg 63w, https:\/\/thebackroomtech.com\/wp-content\/uploads\/05-flatpak-run-application-66x52.jpg 66w\" sizes=\"(max-width: 680px) 100vw, 680px\" \/><\/a><\/figure>\n<\/div>\n\n\n<p>If you need to update flatpak applications, you can do so in one single command as shown.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>$ flatpak update<\/strong><\/pre>\n\n\n\n<p>Finally, if you don\u2019t need the flatpak application anymore, you can remove it using the syntax:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>$ flatpak uninstall Application-ID<\/strong><\/pre>\n\n\n\n<p>For instance, to remove Skype, execute the command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>$ sudo flatpak uninstall com.skype.Client<\/strong><\/pre>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><a href=\"https:\/\/thebackroomtech.com\/wp-content\/uploads\/06-Uninstall-flatpak.jpg\"><img decoding=\"async\" width=\"680\" height=\"139\" src=\"https:\/\/thebackroomtech.com\/wp-content\/uploads\/06-Uninstall-flatpak.jpg\" alt=\"How to Install and Run Flatpak Applications image 9\" class=\"wp-image-3954\" srcset=\"https:\/\/thebackroomtech.com\/wp-content\/uploads\/06-Uninstall-flatpak.jpg 680w, https:\/\/thebackroomtech.com\/wp-content\/uploads\/06-Uninstall-flatpak-300x61.jpg 300w, https:\/\/thebackroomtech.com\/wp-content\/uploads\/06-Uninstall-flatpak-80x16.jpg 80w\" sizes=\"(max-width: 680px) 100vw, 680px\" \/><\/a><\/figure>\n<\/div>\n\n\n<h2 class=\"wp-block-heading\"><strong>Closing Thoughts<\/strong><\/h2>\n\n\n\n<p>Clearly, Flatpak, alongside snap, has revolutionized package management in Linux. Flatpak provides a level-playing ground where users can rest assured that the applications will run across any Linux distribution that has Flatpak support without any issues. <\/p>\n\n\n\n<p>Additionally, Flatpaks guarantee future compatibility and easy integration with pre-existing applications on your system. If you are having challenges with installing apps on your system, Flathub comes highly recommended as a decent package management system.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Linux offers a range of options for managing packages. Traditionally, these options were confined to only package managers like APT,&nbsp; DNF or YUM. App stores, which are available in major [&hellip;]<\/p>\n","protected":false},"author":22,"featured_media":3946,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"updated_on":"","footnotes":""},"categories":[32],"tags":[],"class_list":{"0":"post-3945","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-linux"},"acf":[],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO Pro 4.9.5.2 - aioseo.com -->\n\t<meta name=\"description\" content=\"Linux offers a range of options for managing packages. Traditionally, these options were confined to only package managers like APT, DNF or YUM. App stores, which are available in major distributions, provided great relief for users who are averse to working on the command-line. They provide a simple graphical interface that allows users to install,\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Winnie Ondara\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/thebackroomtech.com\/how-to-install-and-run-flatpak-applications\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO Pro (AIOSEO) 4.9.5.2\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"The Back Room Tech - Serving up the info for back room techs everywhere\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"How to Install and Run Flatpak Applications - The Back Room Tech\" \/>\n\t\t<meta property=\"og:description\" content=\"Linux offers a range of options for managing packages. Traditionally, these options were confined to only package managers like APT, DNF or YUM. App stores, which are available in major distributions, provided great relief for users who are averse to working on the command-line. They provide a simple graphical interface that allows users to install,\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/thebackroomtech.com\/how-to-install-and-run-flatpak-applications\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2021-03-19T10:00:00+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-02-17T01:39:48+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How to Install and Run Flatpak Applications - The Back Room Tech\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Linux offers a range of options for managing packages. Traditionally, these options were confined to only package managers like APT, DNF or YUM. App stores, which are available in major distributions, provided great relief for users who are averse to working on the command-line. They provide a simple graphical interface that allows users to install,\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[]}\n\t\t<\/script>\n\t\t<!-- All in One SEO Pro -->\r\n\t\t<title>How to Install and Run Flatpak Applications - The Back Room Tech<\/title>\n\n","aioseo_head_json":{"title":"How to Install and Run Flatpak Applications - The Back Room Tech","description":"Linux offers a range of options for managing packages. Traditionally, these options were confined to only package managers like APT, DNF or YUM. App stores, which are available in major distributions, provided great relief for users who are averse to working on the command-line. They provide a simple graphical interface that allows users to install,","canonical_url":"https:\/\/thebackroomtech.com\/how-to-install-and-run-flatpak-applications\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[]},"og:locale":"en_US","og:site_name":"The Back Room Tech - Serving up the info for back room techs everywhere","og:type":"article","og:title":"How to Install and Run Flatpak Applications - The Back Room Tech","og:description":"Linux offers a range of options for managing packages. Traditionally, these options were confined to only package managers like APT, DNF or YUM. App stores, which are available in major distributions, provided great relief for users who are averse to working on the command-line. They provide a simple graphical interface that allows users to install,","og:url":"https:\/\/thebackroomtech.com\/how-to-install-and-run-flatpak-applications\/","article:published_time":"2021-03-19T10:00:00+00:00","article:modified_time":"2024-02-17T01:39:48+00:00","twitter:card":"summary_large_image","twitter:title":"How to Install and Run Flatpak Applications - The Back Room Tech","twitter:description":"Linux offers a range of options for managing packages. Traditionally, these options were confined to only package managers like APT, DNF or YUM. App stores, which are available in major distributions, provided great relief for users who are averse to working on the command-line. They provide a simple graphical interface that allows users to install,"},"aioseo_meta_data":{"post_id":"3945","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"seo_analyzer_scan_date":"2026-03-27 20:44:16","breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":null,"open_ai":null,"ai":null,"created":"2026-03-27 20:27:05","updated":"2026-03-28 00:48:04"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/thebackroomtech.com\" title=\"Home\">Home<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/thebackroomtech.com\/category\/linux\/\" title=\"Linux\">Linux<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\tHow to Install and Run Flatpak Applications\n<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/thebackroomtech.com"},{"label":"Linux","link":"https:\/\/thebackroomtech.com\/category\/linux\/"},{"label":"How to Install and Run Flatpak Applications","link":"https:\/\/thebackroomtech.com\/how-to-install-and-run-flatpak-applications\/"}],"_links":{"self":[{"href":"https:\/\/thebackroomtech.com\/wp-json\/wp\/v2\/posts\/3945","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/thebackroomtech.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/thebackroomtech.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/thebackroomtech.com\/wp-json\/wp\/v2\/users\/22"}],"replies":[{"embeddable":true,"href":"https:\/\/thebackroomtech.com\/wp-json\/wp\/v2\/comments?post=3945"}],"version-history":[{"count":0,"href":"https:\/\/thebackroomtech.com\/wp-json\/wp\/v2\/posts\/3945\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/thebackroomtech.com\/wp-json\/wp\/v2\/media\/3946"}],"wp:attachment":[{"href":"https:\/\/thebackroomtech.com\/wp-json\/wp\/v2\/media?parent=3945"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/thebackroomtech.com\/wp-json\/wp\/v2\/categories?post=3945"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/thebackroomtech.com\/wp-json\/wp\/v2\/tags?post=3945"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}