Proxmox - Mount cifs is not working

hiimsinak

Member
Nov 7, 2017
14
0
6
Hi there,

I'm using Proxmox 5.1-35 on a server. I've got a NAS on different server.

I have virtual machines and containers in my Proxmox Cluster, they work well but I have some issues.

After installing the container and configuring it, I can not mount a NAS directory to it. (Debian 8 currently)

I used the followed command :

sudo apt-get instal cifs-utils
sudo mount -t cifs //192.168.0.22/Multimedia -o username=something /media/NAS/

The error is :
Mount error (95): Operation not supported
Refer to the mount.cifs(8) manual page (e.g man mount.cifs)

That command works well on my other physicals machines or my virtual machines.

Kindest Regards
 
Last edited:
which samba version is the server? since version 4.13 the kernel defaults to samba version 3.0
you can manually set the version with the 'vers=' option (e.g., vers=2.0)
 
How can I force the version 2.0 ? I tried to add the vers=2.0 but it doesn't work. It show me the differents commands.

I tried with -V 2.0 / -V vers=2.0. Same issue.
 
Code:
sudo mount -t cifs //192.168.0.22/Multimedia -o username=hiimsinak,vers=2.0 /media/NAS/
something like this should work