Last updated 5 months ago
If you find the service NFS then probably you will be able to list and download(and maybe upload) files:
To know which folder has the server available to mount you an ask it using:
showmount -e <IP>
Then mount it using:
sudo mount -t nfs <ip>:<remote_folder> <local_folder>
Example:
mkdir /mnt/ sudo mount -t nfs 10.10.10.180:/site_backups mnt