GIMP 2.10 (snap version) doesn't allow me to open the /media
directory, so I'm unable to access my external USB drive. I get the following error message:
I get the same error message if I try and open an image file in Nautilus from the USB drive by Right-Click image file > Open with GIMP
I installed GIMP 2.10 with snap:
sudo snap install gimp
There's obviously something I'm missing in terms of configuration, but I can't find a similar question posted yet.
Update:
I was pointed to the solution to resolve the problem:
How do I get the latest GIMP version available?
You need to give the snap GIMP package explicit permission to access external media once installed:
sudo snap connect gimp:removable-media
Why we have to do this extra step, is alluded to by N0rbert:
How to get access to USB-storage from the application installed as Snap?
"...if the application does not have auto-connect of removable-media we need to connect it manually"
My question is why would an application package be created without the ability to access external media by default?
Sometimes the packager of the snap package gives the snap package explicit permission to access external media and sometimes the packager does not, so the decision to give the snap package explicit permission to access external media is left to the user. Since there's no overriding policy, the decision to enable removable media support is up to the packager of the snap package and after that it's up to the user.
I have observed that snap packages are generally less reliable than apt packages which means that I often install a snap package, and then I have to uninstall it because it didn't work properly. So I guess that not enabling removable media support on some snap packages adds another layer of security to the snap package that the packager thought it needed.
If you need GIMP to have full access to external media (such as USB flash drive, SD/MicroSD card, additional mounted hard drive and so on), run the following command:
There is also a GUI way to give a snap application access to removable media from the Software app. Snap packages that allow access to removable media will display a Permissions button in the Software app after they are installed.
Click the permissions button and then toggle the Read/write files on removable storage devices slider from Off to On as shown in the above screenshot.