Re: recursively share NFS

2025-04-05 Thread gene heskett
On 3/19/25 16:19, to...@tuxteam.de wrote: On Wed, Mar 19, 2025 at 02:53:51PM -0400, Eben King wrote: I have this machine "alexandria". It mounts a directory from the nas via NFS. When I export a parent directory on alexandria, the mount point appears empty, even though you can ssh to it and se

Re: recursively share NFS

2025-04-05 Thread tomas
On Thu, Mar 20, 2025 at 02:04:45PM +0800, An Liu wrote: > AFAIK, > > Exporting a nfs mounted location is possible via nfs-ganesha I have no experience with this one. Thanks for reminding me :-) Cheers -- t signature.asc Description: PGP signature

Re: recursively share NFS

2025-04-04 Thread Titus Newswanger
Great, I have that same question. Eventually came up with a workaround that works for my case. A while back I was trying to do exactly that, never did get it working. My situation was: my Truenas NAS insisted to export share path like so: /mnt/my/share my client was hard coded to mount /home

Re: recursively share NFS

2025-03-24 Thread Stefan Monnier
Stefan Monnier [2025-03-19 17:34:07] wrote: >> In essence, what you are asking is "how can I re-share an NFS share >> that I'm mounting as a client, to another client". >> To the best of my knowledge, this is not possible. >> >> However, what *is* possible, because I've done it, is to mount an NFS

Re: recursively share NFS

2025-03-23 Thread tomas
On Wed, Mar 19, 2025 at 02:53:51PM -0400, Eben King wrote: > I have this machine "alexandria". It mounts a directory from the nas > via NFS. When I export a parent directory on alexandria, the mount > point appears empty, even though you can ssh to it and see everything > there that should be. H

Re: recursively share NFS

2025-03-22 Thread Nicolas George
debian-u...@howorth.org.uk (HE12025-03-20): > It's not a workaround. It's expected behaviour. You told the NAS to > share some of its contents with alexandria. That's what it's doing. Why > would you expect it to respond to a random request from some other > computer? That is not what it is doing.

Re: recursively share NFS

2025-03-20 Thread Eben King
On 3/20/25 13:36, 🦓 wrote: Eben King : NAS:/nfs/Movies is mounted on alexandria by NFS as /files/movies. Alex exports /files by NFS. My computer mounts alexandria:/files and sees /files/movies/ as empty. Why don't you mount alexandria:/files /files && mount nas:/nfs/Movies /files/movie

Re: recursively share NFS

2025-03-20 Thread tomas
On Thu, Mar 20, 2025 at 08:09:48PM +0100, Nicolas George wrote: > to...@tuxteam.de (HE12025-03-20): > > Sorry if that came across as rude. > > Do not be: not reading before replying at least to see if what one is > about to reply has already been addressed and therefore wasting > everybody's time

Re: recursively share NFS

2025-03-20 Thread Nicolas George
to...@tuxteam.de (HE12025-03-20): > Sorry if that came across as rude. Do not be: not reading before replying at least to see if what one is about to reply has already been addressed and therefore wasting everybody's time is way ruder than your message might seem. Regards, -- Nicolas George

Re: recursively share NFS

2025-03-20 Thread tomas
On Thu, Mar 20, 2025 at 05:59:34PM +, debian-u...@howorth.org.uk wrote: > wrote: [...] > > Besides, we already know NFS can do that (with caveats). I wonder > > whether people read the other postings in the threads they reply > > to :) > > I certainly don't always read all the posts in a lo

Re: recursively share NFS

2025-03-20 Thread debian-user
wrote: > On Thu, Mar 20, 2025 at 01:32:27PM +0100, Nicolas George wrote: > > debian-u...@howorth.org.uk (HE12025-03-20): > > > It's not a workaround. It's expected behaviour. You told the NAS > > > to share some of its contents with alexandria. That's what it's > > > doing. Why would you expect

Re: recursively share NFS

2025-03-20 Thread 🦓
Eben King : > NAS:/nfs/Movies is mounted on alexandria by NFS as /files/movies. Alex > exports /files by NFS. My computer mounts alexandria:/files and sees > /files/movies/ as empty. > Why don't you mount alexandria:/files /files && mount nas:/nfs/Movies /files/movies rather than -o nohide,cro

Re: recursively share NFS

2025-03-20 Thread Eben King
On 3/20/25 01:43, to...@tuxteam.de wrote: On Thu, Mar 20, 2025 at 01:29:39AM -0400, Eben King wrote: On 3/19/25 16:19, to...@tuxteam.de wrote: On Wed, Mar 19, 2025 at 02:53:51PM -0400, Eben King wrote: I have this machine "alexandria". It mounts a directory from the nas via NFS. When I

Re: recursively share NFS

2025-03-20 Thread Stefan Monnier
> Exporting a nfs mounted location is possible via nfs-ganesha Oh nice! Looks like this is a similar tool to unfs3, just more recent and still actively developed. Thanks, Stefan

Re: recursively share NFS

2025-03-20 Thread tomas
On Thu, Mar 20, 2025 at 01:32:27PM +0100, Nicolas George wrote: > debian-u...@howorth.org.uk (HE12025-03-20): > > It's not a workaround. It's expected behaviour. You told the NAS to > > share some of its contents with alexandria. That's what it's doing. Why > > would you expect it to respond to a r

Re: recursively share NFS

2025-03-20 Thread debian-user
Eben King wrote: > On 3/19/25 15:05, Greg Wooledge wrote: > > On Wed, Mar 19, 2025 at 14:53:51 -0400, Eben King wrote: > >> I have this machine "alexandria". It mounts a directory from the > >> nas via NFS. When I export a parent directory on alexandria, the > >> mount point appears empty, eve

Re: recursively share NFS

2025-03-20 Thread Anssi Saari
Eben King writes: > I have this machine "alexandria". It mounts a directory from the nas > via NFS. When I export a parent directory on alexandria, the mount > point appears empty, even though you can ssh to it and see everything > there that should be. How do I get it to share the contents of

Re: recursively share NFS

2025-03-19 Thread An Liu
AFAIK, Exporting a nfs mounted location is possible via nfs-ganesha An template config will be like Ganesha.conf: EXPORT { Export_ID = 1; Path = "/mnt/nfs_mount"; Pseudo = "/re_export"; Access_Type = RW; Protocols = 4; Transports = TCP; FSAL { Name = VFS

Re: recursively share NFS

2025-03-19 Thread tomas
On Thu, Mar 20, 2025 at 01:29:39AM -0400, Eben King wrote: > > > On 3/19/25 16:19, to...@tuxteam.de wrote: > > On Wed, Mar 19, 2025 at 02:53:51PM -0400, Eben King wrote: > > > I have this machine "alexandria". It mounts a directory from the nas > > > via NFS. When I export a parent directory on

Re: recursively share NFS

2025-03-19 Thread Eben King
On 3/19/25 16:19, to...@tuxteam.de wrote: On Wed, Mar 19, 2025 at 02:53:51PM -0400, Eben King wrote: I have this machine "alexandria". It mounts a directory from the nas via NFS. When I export a parent directory on alexandria, the mount point appears empty, even though you can ssh to it and

Re: recursively share NFS

2025-03-19 Thread Stefan Monnier
> In essence, what you are asking is "how can I re-share an NFS share > that I'm mounting as a client, to another client". > To the best of my knowledge, this is not possible. > > However, what *is* possible, because I've done it, is to mount an NFS > share and then share that via Samba. I assume

Re: recursively share NFS

2025-03-19 Thread Eben King
On 3/19/25 15:05, Greg Wooledge wrote: On Wed, Mar 19, 2025 at 14:53:51 -0400, Eben King wrote: I have this machine "alexandria". It mounts a directory from the nas via NFS. When I export a parent directory on alexandria, the mount point appears empty, even though you can ssh to it and see

Re: recursively share NFS

2025-03-19 Thread Greg Wooledge
On Wed, Mar 19, 2025 at 14:53:51 -0400, Eben King wrote: > I have this machine "alexandria". It mounts a directory from the nas > via NFS. When I export a parent directory on alexandria, the mount > point appears empty, even though you can ssh to it and see everything > there that should be. How