with the following mount command I can copy from 10.112.12.180 any file to the linux machine (/mnt)
mount -t nfs 10.112.12.180:/dir1/dir2/dir /mnt
my question if it possible to perform the other side: to copy from linux machine to 10.112.12.180 server
I try it but I get
cp file /mnt
cp: cannot create regular file `/mnt/file: Read-only file system
how to get solution for this (copy from linux to server?)
mount + copy files to mounted directory is it possible?
