I'm new to snap (snapd
), but from what I have read the snap support sanboxed app environments out of the box (Snap vs Flatpak vs AppImage).
Question: Is it there a way for me to verify that the application itself actually is "sandboxed"? Can I verify that it is running in a container, and how?
Thanks.
chromium
(browser) try and upload a file to a website and navigate what looks like your filesystem, at the same time comparing to what's really in those directories. You'll see note the files don't match, as the snap is restricted to a fs that exists within the snap itself. Yes you can add extra directories viasnap connect
etc, but only within certain limits. (Chromium runs in a strict confinement model) – guiverc Sep 03 '20 at 06:36chromium
example: If I upload a file, I would think the application (chromium
) would copy that file to its dedicated fs, if that makes sense? – user1098490 Sep 03 '20 at 08:23snap connect
can add /mnt/ and /media/ access, but that's as far as the confinement allows. See also https://askubuntu.com/questions/1184357/why-cant-chromium-suddenly-access-any-partition-except-for-home – guiverc Sep 03 '20 at 08:56HOME
-directory. Thanks- – user1098490 Sep 03 '20 at 11:12