-
AuthorPosts
-
After tinkering with RetroPie for about a week (bear in mind, this was my first time ever dealing with Linux), I finally configured it to do everything I wanted in an all-in-one retro gaming console. My son-in-law saw it and wants me to create one for him, as well. In order to make a second console, can I simply clone the SD card and plug it into another Pi and it’s ready to play? Or will I have to configure a separate card for a separate system? Much thanks in advance!
Use a program called Win32 Disk Imager. You can insert your sd card into your PC and them read the sd card and create an output .img file. You can then wrote this image file to any other sd card. It’s what u do to make a backup of my setup.
if you have a mac, I very much suggest ApplePi-Baker, it’s awesome an every fast! here’s the link
Thank you.
which way worked for you, mate
I haven’t done it, yet, but I’m on a PC and going to try using the Win32 disk imager. I’ve read that it was possible to create a backup using this method in the event your SD card becomes corrupt, but I wasn’t sure if the SD card image was interchangeable between Pi consoles.
It is definitely interchangeable. I have done it with dd on Linux.
dd is a command line tool for unix to backup disks. It can be dangerous so be careful.
From memory I run the following:
df to see what disks are mounted.
umount /dev/sdb1 if my sd card is device sdb
sudo dd bs=4M if=/dev/sdb of=filename.imgTo copy that to the new sd I unmount it and run:
sudo dd bs=4M if=filename.img of=/dev/sdbYou might want to google some other pages about backing up a sdcard using dd before doing it for the first time. Obviously you need another linux computer to do it as you can’t do it whilst it is mounted.
-
AuthorPosts
- You must be logged in to reply to this topic.