Copy sample files
This chapter describes how to copy the complete folder with the sample configuration from a local Windows computer to an industrial PC with Linux® using PowerShell. The Secure Copy Protocol scp is used to copy the files.
scp -r C:\<source-path>\<source-folder> Administrator@<Linux-IP>:/home/Administrator/The command ensures that all files and subdirectories in the specified folder are also copied. The home directory is specified as the target location on the Linux® system.
-r: with this parameter, the command is executed recursively so that the entire folder, including all files and subdirectories contained therein, is copied.<source-path>and<source-folder>: are placeholders for the actual path and folder name on the local system.Administrator: is the user name on the Linux® system.<Linux-IP>: is the placeholder for the IP address of the target system.