How to connect to Synology NAS via photo editors or other programs

Ubuntu Version: 24.04.1 LTS

Desktop Environment GNOME

Problem Description:
Recently I installed Ubuntu 24.04. as a new user. That all went fine. The only thing I can’t get done is accessing the Synology NAS from photo editing programs. The NAS is accessible via ‘files’ and the files are readable. I can also open photos in the various photo editors via the right mouse button with ‘open with’. That works of course, but is very cumbersome and I can’t import the photos into the library of the editor that way. Does anyone know how I can solve this?

Relevant System Information:

System Details Report


Report details

  • Date generated: 2025-01-18 12:24:48

Hardware Information:

  • Hardware Model: Intel_R_ Client Systems NUC12WSKi7
  • Memory: 32.0 GiB
  • Processor: 12th Gen Intel® Core™ i7-1260P × 16
  • Graphics: Intel® Graphics (ADL GT2)
  • Disk Capacity: 500.1 GB

Software Information:

  • Firmware Version: WSADL357.0075.2022.0322.1605
  • OS Name: Ubuntu 24.04.1 LTS
  • OS Build: (null)
  • OS Type: 64-bit
  • GNOME Version: 46
  • Windowing System: Wayland
  • Kernel Version: Linux 6.8.0-51-generic

Screenshots or Error Messages:


What I’ve Tried: I have tried different programs, including winprograms running on Wine, none can connect tot the NAS.


What photo editors are you using?
How did you install them (apt/deb, snap, flatpak,…)?

I installed Showfoto, Gimp, RawTherapee, Darktable and NX Studio (Win on Wine). Apart from NX Studio all using the app center.

The first thing that comes to mind is using a symlink. Find the folder path of your nas pictures on your machine and save that for later. Then open your home folder in a terminal. Since your home folder shows in the image editor, that tells me you could create a symlink there and the image editor would see it.

cd ~/
#Change your nasfolder path to the actual path
ln -s /your/nasfolder /home/hans-de-ruiter/Pictures/nasPictures

This will not duplicate the files, just create a logical pointer or “shortcut” to where your NAS stuff actually is.

1 Like

Since you installed those from the app center, you’ll want to make sure you connect them to the “removable media” snap interface since a NAS might appear as removable storage when mounted.

You can do this from the app center for the individual app, or from the command line.

For the command line, it’s fairly simple. We’ll use Gimp as an example:

sudo snap connect gimp:removable-media

Doing that from any one of those apps will give them access to your NAS once mounted.

1 Like

This works like a charm for all the mentioned programs, thank you very much!

Not sure if this would also have the problem fixed. I tried it but the reaction in the terminal was: error: snap “rawtherapee” has no plug named “removable-storage”

Small typo there, I’m sure Erich meant to say removable-media :slightly_smiling_face:

This is correct. More of a memory blunder on my part.

@jgpderuiter, using the tab key for [tab]

$ sudo snap connect rawtherapee:[tab]
mount-observe    removable-media

You’d want removable-media.

I’ve edited my reply above to reflect this.

2 Likes

Of course, glad its working for you!