-
Notifications
You must be signed in to change notification settings - Fork 0
Pushing files to the Pi
Rachael Kemp edited this page Oct 17, 2019
·
1 revision
Sometimes it's necessary to transfer files from your machine to the Pi. This includes updates to the tools or GUI. To perform this, you must first enable the SSH server on your Pi. This is done by following the steps in Connecting to your Pi over SSH.
-
Navigate a command line window on your machine to the location where the files you wish to send are stored.
-
Send file to the Pi:
scp FILE_TO_SEND pi@raspberrypi:
- If you wish to send the contents of a folder, add the
-r
flag:
scp -r FOLDER_TO_SEND pi@raspberrypi: