Challenge - 5 Problems
Snap & Flatpak Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
π» Command Output
intermediate2:00remaining
Identify the output of listing installed Snap packages
What is the output of the command
snap list if you have installed 'vlc' and 'spotify' snaps?Linux CLI
snap listAttempts:
2 left
π‘ Hint
The
snap list command shows detailed columns about installed snaps.β Incorrect
The
snap list command outputs a table with columns like Name, Version, Rev, Tracking, Publisher, and Notes for each installed snap package.π» Command Output
intermediate2:00remaining
Determine the output of listing installed Flatpak applications
What is the output of the command
flatpak list if you have installed 'org.gimp.GIMP' and 'com.spotify.Client'?Linux CLI
flatpak listAttempts:
2 left
π‘ Hint
The
flatpak list command shows a table with columns including Application ID and Version.β Incorrect
The
flatpak list command outputs a table listing installed flatpak apps with details like Application ID, Version, Branch, and Installation location.π Syntax
advanced1:30remaining
Which command correctly installs VLC using Snap?
Choose the correct command to install VLC media player using Snap.
Attempts:
2 left
π‘ Hint
The command to install a snap package uses the word 'install'.
β Incorrect
The
snap install command installs a snap package. Other commands like get, add, or update do not install new snaps.π» Command Output
advanced1:30remaining
What error does this Flatpak uninstall command produce if the app is not installed?
What error message appears when running
flatpak uninstall org.gimp.GIMP if 'org.gimp.GIMP' is not installed?Linux CLI
flatpak uninstall org.gimp.GIMP
Attempts:
2 left
π‘ Hint
If the app is not installed, Flatpak reports no matching references found.
β Incorrect
Flatpak shows an error message 'No matching refs found for uninstall' when trying to uninstall an app that is not installed.
π Application
expert2:30remaining
Compare Snap and Flatpak commands for updating all installed apps
Which option correctly shows commands to update all installed Snap and Flatpak applications respectively?
Attempts:
2 left
π‘ Hint
Snap uses 'refresh' to update, Flatpak uses 'update'.
β Incorrect
The correct commands are
snap refresh to update all snaps and flatpak update to update all flatpak apps. Other options use invalid commands or wrong keywords.