Last active
December 11, 2015 16:19
-
-
Save treehouse-su/4626232 to your computer and use it in GitHub Desktop.
Cloning the SDcard of the raspberry pi while running remotely ... (second SDcard is attached usb SDcard-Reader)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#copy your ssh key to root@raspberrypi | |
ssh [email protected] 'aptitude install screen' | |
ssh [email protected] 'screen -d -m -S clone' | |
ssh [email protected] 'echo u > /proc/sysrq-trigger' | |
ssh [email protected] 'screen -x clone' | |
dd if=/dev/mmcblk0 bs=1M of=/dev/sda count=4K | |
#for the first 4GB | |
#detach with "CRTL-a d" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment