I am trying to check data integrity for a file transferred from local system to flash drive connected on a remote system.
So couple of questions:
- Is scp good method to transfer files this way? I cannot transfer file directory to remote system but only on an external flash drive connected to it.
- I am using sha 256 for checksum to avoid collision to a great extend. Is this checksum a good option?
- So overall test is, get checksum for file on local system using Windows Powershell and then find checksum on remote system which is linux based. If they match then I am good to go.
Is there any better approach or suggestions to verify data corruption while moving a file from local system to a flash drive connected on remote system?
Thanks.
scp
is quite good software for this purpose. You can use alsosftp
sha256
is very good hashing algorithm