Exploring the new Flatpak and Snap package formats
Rolling your Own Flatpak
Once Flatpak is installed and the flatpack
program is available, the developer creates an empty directory for a new flatpak:
flatpak build-init helloworld org.example. HelloWorld org.gnome.Sdk org.gnome.Platform 3.22
The individual parameters behind build-init
each have a special significance: helloworld
specifies the directory name within which the flatpak is created; org.example.HelloWorld
defines the D-bus name that the flatpak uses later to communicate with D-Bus. The SDK and the runtime, which the flatpak uses, are defined by org.gnome.Sdk
and org.gnome.Platform
, and 3.22
is the version number.
This example uses Gnome's SDK and runtime, which have been extensively tested and are fine for most everyday applications, but other options are also available.
The next step adds the program you wish to include in the flatpak. The flatpak build
command is very useful; the package builder uses it to execute arbitrary commands in the flatpak build environment. For example,
flatpak build helloworld touch /app/test
creates a test
file in the flatpak app
directory. You can also compile a program within Flatpak. First, download the sources [11] and unzip them. Next, type cd
to change to the folder with the unpacked sources; enter the following commands when you get there:
flatpak build flatpak_folder_name gcc $(pkg-config --cflags dbus-1 glib-2.0) -o send-hello dbus-send-hello.c $(pkg-config --libs dbus-1 glib-2.0)
flatpak_folder_name
is followed by the relative path to the directory just created by flatpak build-init
.
In the next step, you create the actual flatpak:
flatpak build-finish helloworld --socket=x11 --share=network --command=send-hello --socket=system-bus --socket=session-bus
The parameters --socket=x11
and --share=network
give the flatpak app access to X11 and the network, which is not necessary for this example but is for many applications.
In the next step, you can execute the flatpak with the help of the commands from Listing 1.
Listing 1
Running the Flatpak
The four commands create a Flatpak repository based on the local flatpak, add it to the Flatpak repository configuration, install the Flatpak from the repo, and finally execute it. The reward for all this effort is a Hello World message in the D-Bus logfile on the host system.
Powerful Tool
This example demonstrates only a tiny part of Flatpak's capability. The Flatpak website offers examples of how the package system can accommodate far more complex applications in a flatpak [12]. The granularity with which the developers have organized rights assignments is worthy of note. For each flatpak, the package maker determines whether the software needs access to X11, Wayland, D-Bus, or individual folders within the host filesystem. You can even control access to audio devices.
If you experiment with more complex Flatpak examples, you will also stumble across flatpak-builder
, which sounds a lot like flatpak-build
but is a separate tool. Flatpak-builder
accesses information from a JSON file that you created up front and builds a flatpak automatically.
The JSON file essentially contains the same information that you previously passed into flatpak-build
at the command line. The tool thus extends the principle to include a kind of batch mode, which proves to be very useful in practice (Figure 2).
Exploring Snap
Unlike Flatpak, Snap is not targeted at desktop users. Canonical instead envisions Snap as a tool for revolutionizing the way enterprise applications reach servers. Like Flatpak, Snap relies on the kernel's various isolation techniques, combining them so applications run in their own isolated environments.
The structure of a snap is not fundamentally different from that of a flatpak, but the terms have different names. Instead of a runtime, Snap refers to a framework, which is a basic set of libraries on which Snap can build.
Unlike Flatpack, Snap is not aimed at general-purpose systems. Canonical is developing a basic system known as the Snappy Ubuntu Core [13] that offers different frameworks designed to work with the Snap package system (Figure 3).
« Previous 1 2 3 4 Next »
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Linux Kernel 6.13 Offers Improvements for AMD/Apple Users
The latest Linux kernel is now available, and it includes plenty of improvements, especially for those who use AMD or Apple-based systems.
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.
-
AlmaLinux 10.0 Beta Released
The AlmaLinux OS Foundation has announced the availability of AlmaLinux 10.0 Beta ("Purple Lion") for all supported devices with significant changes.