root@volumio:~# mount -t cifs //192.168.0.6/Music -o username=root /mnt/TonidoPlug2
mount: block device //192.168.0.6/Music is write-protected, mounting read-only
mount: cannot mount block device //192.168.0.6/Music read-only
“Music” is the name of the samba share defined in smb.conf of my TonidoPlug2 device (which I’m trying to mount) and the mount point “/mnt/TonidoPlug2” already exists.
I also tried to install cifs-utils, but again, no joy!
root@volumio:~# apt-get install cifs-utils
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package cifs-utils
Thanks
franz
apt-get update
apt-get upgrade
apt-get instal cifs-utils
Just wait for the appropriate amount of time for the upgrade to complete.
Mount the samba share.
In my case I had to bypass security to overcome a “permission denied” error I was getting
Returning a permission error:
root@volumio:/mnt# mount -t cifs //192.168.0.6/Music -o username=root /mnt/TonidoPlug2
Password:
mount error(13): Permission denied
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
Working:
mount -t cifs //192.168.0.6/Music -o sec=none /mnt/TonidoPlug2