transfer data from linux system to NAS storage.

mitul.acespritech

Prominent
Sep 6, 2017
1
0
510
i have linux system and i want to transfer my data from linux system to NAS. so what i do for transfer the data.? i have remote access of linux system and NAS storage. can i transfer the data of using linux scp command?
 
Solution
You have lots of options...

1. Mount the NAS directly on Linux and just use cp.
2. scp or winscp if you are on Windows
3. rsync is the command I would use as it is interruptable and you can create a log file of the copy process.

S Haran

Distinguished
Jul 12, 2013
219
0
18,910
You have lots of options...

1. Mount the NAS directly on Linux and just use cp.
2. scp or winscp if you are on Windows
3. rsync is the command I would use as it is interruptable and you can create a log file of the copy process.

 
Solution