I have to store some gigabytes of data in a single dir. The structure is as follow :
/DATADIR
- dataABC
- dataXYZ
- folder012/
- folder456/
- ...
If my hard disk is close to full, is there a way to increase the capacity using one (or several) NFS server(s), which would all be mounted with the same root (/DATADIR) ? My goal is to avoid using subdirectories for newly mounted NFS servers. I don't want this :
/DATADIR
- dataABC
- dataXYZ
- folder012/
- folder456/
- NFS-1/
- dataMNO
- folder789/
- NFS-2/
- dataPQR
- folder234/
- ...
I don't know if it's possible. If someone has an idea ...
Thanks !