1.54 smb stopped working

Hi everyone,

Is anyone else running into issues with SMB shares after updating to v1.54?

Ever since the update, I’ve been completely unable to connect to my NAS. Every time I try to map the drive or access the share, I get the following error:

“operation not supported”

This is a major headache for me because I use this connection to run backups to my NAS over my local network (LAN). Since the NAS doesn’t use HTTPS, I’m strictly dependent on a stable SMB connection. It was working perfectly on the previous version, and nothing has changed in my network configuration or NAS settings.

Has anyone found a workaround, or is there a way to roll back the SMB client settings? I’d love to know if this is a widespread bug or if there’s a new security toggle I need to flip.

Thanks in advance for any help!

Yes, this has come up after 1.5.4.

Most cases are not a full SMB break. v1.5.4 added “Pause Sharing”, and some shares end up stopped after the upgrade. When that happens, Windows throws “operation not supported”.

Quick checks:

  • Go to Files → Shared Folders and confirm the share is active, not paused
  • Remove the mapped drive on the client, clear saved credentials, reconnect using \\IP\share
  • Try accessing the share from another client or via the Files app (server-side)

If Files works locally but clients fail, it’s almost always a paused share or SMB negotiation issue, not your data.

1 Like

Thank you so much for your quick reply.

Unfortunately it’s the other way round. ZimaOS throws “operation not supported” when I’m trying to mount my NAS in Files on ZimaOS.

Also Backupapp

EDIT: I did toggle SMB back and forth in settings and tried all possible combinations of (un)toggled options.

Run these on ZimaOS.

1) Check kernel SMB support (quick sanity)

lsmod | grep cifs

If nothing returns → that’s a bug.

2) Try a manual SMB probe (no mount)

smbclient -L 192.168.178.113 -U admin
  • If this fails → SMB client regression
  • If this works → UI mount path is broken

3) Check Files / mount errors

dmesg | tail -50 | grep -i cifs

4) Check system logs around mount

journalctl -xe | grep -i smb

These commands don’t change anything and will clearly show whether:

  • CIFS is broken
  • Auth/negotiation fails
  • The Files app mount wrapper is erroring

If you post the output of 2 + 3, it’s enough to confirm a 1.5.4 bug.

1 Like

2)

smb1

without smb1

3)

Any chance I can roll back to 1.53?

This is not authentication and not a UI issue.
It’s a protocol mismatch introduced in ZimaOS 1.5.4.

Key log line:

CIFS: VFS: Dialect not supported by server … return code = -95

What this means:

  • Your NAS only supports older SMB dialects (SMB1 / early SMB2)
  • ZimaOS 1.5.4 now defaults to newer SMB dialects
  • The Files / Backup UI does not expose vers=, so the mount fails with “operation not supported”

That’s why:

  • smbclient can list shares successfully
  • Files / Backup cannot mount them

Rollback note:

  • There is no supported in-place downgrade from 1.5.4 > 1.5.3
  • Downgrading requires a full reinstall
  • Back up all data first before attempting a downgrade

Status summary:

  • Confirmed SMB client regression in 1.5.4
  • Deterministic failure against NAS devices requiring SMB1 / early SMB2
  • Needs either:
    • a vers= selector in Files, or
    • restored legacy SMB dialect fallback
1 Like

Thank you!
That’s too bad. Shouldn’t have upgraded just yet.

You are not alone with this problem. I’ve all media on old Synology NAS and the Jellyfin and Immich server have worked fine with this smb connections to the machines till… I search for a solution since one week…

I’ve got check files/mount errors → 3)

2303.888190] CIFS: Attempting to mount //192.168.178.58/Music
[ 2303.901107] CIFS: VFS: cifs_mount failed w/return code = -22
[ 4197.570158] CIFS: VFS: Malformed UNC in devname
[ 4238.772185] CIFS: VFS: Malformed UNC in devname

I think it is another issue?

You’re not wrong to question it, but this is still the same 1.5.4 issue.

Those errors (-22, “Malformed UNC”) are misleading. In 1.5.4 the SMB client behaviour changed, and older Synology NAS boxes (SMB1 / early SMB2) no longer negotiate properly. The Files / Backup UI doesn’t let you force vers=, so the mount fails and throws generic CIFS errors.

That’s why:

  • Jellyfin / Immich worked before the update
  • smbclient often still works
  • The breakage started exactly after upgrading to 1.5.4

It’s not a bad path and not an app issue, it’s a protocol mismatch with no UI fallback.

At the moment there’s no workaround in the UI. It needs a fix from IceWhale (dialect selection or legacy fallback).
If anything here doesn’t line up, post the full CIFS log and we can double-check.