mount a mounted folder
system/network:
WinSrv2008:
IP 192.168.0.2
shared-Folder(CIFS): //192.168.0.2/records
Debian7:
IP 192.168.0.3
mounted CIFS-Folder in fstab: //192.168.0.2/records /var/www/records cifs user=XXXXX,domain=SRV2008,passwd=XXXXX,uid=nobody,gid=nogroup 0 0
that works great!
But now the problem:
on another linux-system i want to mount the cifs-mount of the Debian7-system via NFS.
The second Linux-System:
System: Linux version 2.6.18-7.4-dm800se (newnigma2@vs35) (gcc version 4.4.3 (GCC) ) #1 SMP Sun Dec 11 05:14:53 UTC 2011
IP: 192.168.0.8
command: mount 192.168.0.3:/var/www/records ./records
answer: mount: 192.168.0.3:/var/www/records failed, reason given by server: Permission denied
but why!? cant i mount a folder on 192.168.0.3 which also is mounted?
the nfs-server on 192.168.0.3 is running.
/etc/exports: /var/www/records 192.168.0.8(rw,sync)
before i tried to mount a nfs-share with both systems, where the shared-folder is not a CIFS-mount, and it works. But this way wont work :/
So my first Question: It is possible to mount a nfs-share of a system, where the nfs-shared-folder is a CIFS-share of another system?
|