I'm moving my Squeezbox server installation from a dedicated server with it's own local music folder, and in the new Ubuntu server I'm trying to mount the music library using an NFS share from FreeNAS.
fstab is as follows:
This mounts fine, and even my lowly testuser can see into the directories:
testuser is in the same group with squeezeboxserver:
But the squeezebox still can't see into the NFS mount. See attached screenshot:
![Name: CantGoDownMnt.PNG
Views: 136
Size: 49.7 KB]()
I suppose I can switch to CIFS if I had to, but I figure I'm very close to having this working, and would like to understand what's going wrong.
fstab is as follows:
Code:
stew@waffle:/mnt$ cat /etc/fstab
# /etc/fstab: static file system information.
#
...
#
manzanita.doodle.local:/mnt/ManzanitaPool/ManzanitaDataset/ManzanitaMusicDataset /mnt/ManzanitaMusic nfs defaults,ro 0 0
Code:
root@waffle:/mnt# su testuser
testuser@waffle:/mnt$ cd /mnt
testuser@waffle:/mnt$ ls -alg
total 9
drwxr-xr-x 3 root 4096 Aug 2 18:33 .
drwxr-xr-x 22 root 4096 Jul 11 22:30 ..
drwxrwx--- 6 root 6 Aug 2 18:50 ManzanitaMusic
testuser@waffle:/mnt$ cd ManzanitaMusic/
testuser@waffle:/mnt/ManzanitaMusic$ ls -alg
total 611
drwxrwx--- 6 root 6 Aug 2 18:50 .
drwxr-xr-x 3 root 4096 Aug 2 18:33 ..
drwxrwx--- 63 root 68 Aug 2 15:03 MusicLibrary
drwxrwx--- 5 root 5 Jan 9 2017 MusicLibrary2
drwxrwx--- 839 root 845 Sep 27 2013 MusicStew
drwxrwx--- 58 root 81 Sep 28 2013 MusicTerri
testuser@waffle:/mnt/ManzanitaMusic$
Code:
testuser@waffle:/mnt/ManzanitaMusic$ cat /etc/passwd | grep sque
squeezeboxserver:x:116:65534:Logitech Media Server,,,:/usr/share/squeezeboxserver:/usr/sbin/nologin
testuser@waffle:/mnt/ManzanitaMusic$
testuser@waffle:/mnt/ManzanitaMusic$ cat /etc/passwd | grep testuser
testuser:x:1002:65534:testuser,,,:/home/testuser:/bin/bash
testuser@waffle:/mnt/ManzanitaMusic$
I suppose I can switch to CIFS if I had to, but I figure I'm very close to having this working, and would like to understand what's going wrong.