First up. This is not a JRiver problem but I am hoping that someone can help me with my problem. JRiver expects to have read write privilege on the drive that music is located under.
I am trying to setup JRiver on Debian x64 (Stretch) with latest updates and everything is working correctly. The problem that I have is my music is stored on Windows 2008 server which is part of a domain. I am successfully able to mount the Windows share but unable to write anything to the mount point. Just trying to to "touch /media/music/foo.txt" give me permission denied error. I have confirmed that permission are correct and the share is mounted as read/write. I even set the uid,gid to the account that has read/write privilege.
Command that I am using to mount the share
mount -v -t cifs -o user,credentials=/etc/.smbcred,uid=jriver,gid=jriver,file_mode=0777,dir_mode=0777 //10.19.67.35/public/Music2 /media/music
Directory listing before mounting the share.
jriver@jriver:/media$ ls -la
total 208
drwxr-xr-x 5 root root 4096 Feb 18 16:37 .
drwxr-xr-x 22 root root 4096 Feb 17 20:42 ..
lrwxrwxrwx 1 root root 6 Feb 17 20:41 cdrom -> cdrom0
drwxr-xr-x 2 root root 4096 Feb 17 20:41 cdrom0
drwxrwxrwx 2 jriver jriver 196608 Feb 18 15:02 music
drwxr-xr-x 2 jriver jriver 4096 Feb 18 17:02 Music2
Directory listing after mounting the share.
jriver@jriver:/media$ ls -la
total 208
drwxr-xr-x 5 root root 4096 Feb 18 16:37 .
drwxr-xr-x 22 root root 4096 Feb 17 20:42 ..
lrwxrwxrwx 1 root root 6 Feb 17 20:41 cdrom -> cdrom0
drwxr-xr-x 2 root root 4096 Feb 17 20:41 cdrom0
drwxrwxrwx 2 jriver jriver 196608 Feb 18 15:02 music
drwxr-xr-x 2 jriver jriver 4096 Feb 18 17:02 Music2
Error message
jriver@jriver:/media/music$ touch foo
touch: cannot touch 'foo': Permission denied
I also tried mounting the driver under /home/jriver/Music and got the same error message. Any idea on what I should check for?