[GH-ISSUE #2807] Document broken options order for appimage #1758

Closed
opened 2026-05-05 08:25:48 -06:00 by gitea-mirror · 1 comment
Owner

Originally created by @zabbal on GitHub (Jun 28, 2019).
Original GitHub issue: https://github.com/netblue30/firejail/issues/2807

While trying to run appimage the order in which options are processed actually have an impact on the way appimage is executed:

firejail --private=~/tmp/test --net=none --appimage ~/.local/img
will execute an appimage as expected.

firejail --private=~/tmp/test --appimage ~/.local/img --net=none
Will fail because the last option is given to appimage as-is instead of being processed by firejail itself.

This is highly counter-intuitive and should be at the very least documented in https://firejail.wordpress.com/documentation-2/appimage-support/ or, better yet, fixed so only the options after explicit mark (or options unsupported by firejail) are given to appimage.

Originally created by @zabbal on GitHub (Jun 28, 2019). Original GitHub issue: https://github.com/netblue30/firejail/issues/2807 While trying to run appimage the order in which options are processed actually have an impact on the way appimage is executed: ` firejail --private=~/tmp/test --net=none --appimage ~/.local/img ` will execute an appimage as expected. ` firejail --private=~/tmp/test --appimage ~/.local/img --net=none ` Will fail because the last option is given to appimage as-is instead of being processed by firejail itself. This is highly counter-intuitive and should be at the very least documented in https://firejail.wordpress.com/documentation-2/appimage-support/ or, better yet, fixed so only the options after explicit mark (or options unsupported by firejail) are given to appimage.
gitea-mirror 2026-05-05 08:25:48 -06:00
  • closed this issue
  • added the
    bug
    label
Author
Owner

@netblue30 commented on GitHub (Jul 4, 2019):

Add to man page:

[...]
SYNOPSIS
       Start a sandbox:

              firejail [OPTIONS] [program and arguments]

       Start an AppImage program:

              firejail [OPTIONS] --appimage [appimage-file and arguments]

       File transfer from an existing sandbox

              firejail {--ls | --get | --put} dir_or_filename

[...]
<!-- gh-comment-id:508537785 --> @netblue30 commented on GitHub (Jul 4, 2019): Add to man page: ````` [...] SYNOPSIS Start a sandbox: firejail [OPTIONS] [program and arguments] Start an AppImage program: firejail [OPTIONS] --appimage [appimage-file and arguments] File transfer from an existing sandbox firejail {--ls | --get | --put} dir_or_filename [...] `````
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: github-starred/firejail#1758
No description provided.