Hi,
I've the following problem:
I want to mount 2 directories from my NAS for use in LMS.
I added the mounts in the Web-UI, and it works ..... BUT when I boot the piCorePlayer and the NAS isn't online pcp tries to mount it several times, despite of that it shouldn't, according to the options
So it seems to me that the options simply get ignored.
Then I added these lines to the bootlocal.sh, but they don't seem to be executed, log shows nothing:
So, has anyone an idea to solve this problem?
I've the following problem:
I want to mount 2 directories from my NAS for use in LMS.
I added the mounts in the Web-UI, and it works ..... BUT when I boot the piCorePlayer and the NAS isn't online pcp tries to mount it several times, despite of that it shouldn't, according to the options
Code:
retrans=1,retry=1
Then I added these lines to the bootlocal.sh, but they don't seem to be executed, log shows nothing:
Code:
sudo mkdir /mnt/Musik
sudo mkdir /mnt/Hoerspiele
sudo mount -o addr=192.168.1.77,nolock,retrans=1,retry=1 -t nfs 192.168.1.77:/export/Musik /mnt/Musik
sudo mount -o addr=192.168.1.77,nolock,retrans=1,retry=1 -t nfs 192.168.1.77:/export/Hoerspiele /mnt/Hoerspiele