What's new
VORON Design

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members!

Copy all config files from Pi to PC

MichaelOToole

Well-known member
Easiest way to backup your config files from your Pi

I use the following to copy the config directory from my Pi to my Linux PC using the terminal (on my PC)

Code:
scp -r pi@voron24:/home/pi/printer_data/config /home/Mike

This will copy the complete config folder and files (the -r = recursive)...

Change: pi@raspberrypi to suit your Pi install, default might be pi@raspberrypi
Change: /home/Mike to your user folder (in windows this might be: C:/Users/Mike )

To copy the cfg file from my Linux box to the Pi...
CD to the folder containing your config files...
Open command terminal there, type:
Code:
scp -r *.cfg  pi@voron24b:/home/pi/printer_data/config

Change pi@voron24b to suit your Pi install, default might be pi@raspberrypi

Source Video
This video gives more options...
Mike
 
Last edited:
Top