This page (revision-24) was last changed on 2021-04-21 06:16 by Murray Altheim

This page was created on 2021-03-27 21:00 by Murray Altheim

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
24 2021-04-21 06:16 12 KB Murray Altheim to previous
23 2021-04-21 06:14 12 KB Murray Altheim to previous | to last
22 2021-04-21 06:13 12 KB Murray Altheim to previous | to last
21 2021-04-17 03:16 11 KB Murray Altheim to previous | to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 22 changed one line
The result will list ''all'' of the drives connected to your computer. You'll need to determine which one is the SD card, as you don't want to be messing around with the drives on your desktop.
The result will list ''all'' of the drives connected to your computer, which appear in the {{/dev}} directory as if they were files (they're not). You'll need to determine which one of these is your SD card, as you don't want to be messing around with the drives on your desktop. Big mistake.
At line 47 changed one line
Then use the "{{dd}}" command to make the copy, storing it in my home ("~") directory as a file named "rpi-backup-20210328.img". I generally add a timestamp to my backups so I can figure out when I made them.
If you get a response like "umount: /dev/sdd: not mounted." you'll need to unmount the partitions individually:
At line 49 added 5 lines
sudo umount /dev/sdd1
sudo umount /dev/sdd2
}}}
Once you've unmounted the partitions, you can then use the "{{dd}}" command to make the copy. I'll be storing it in my home ("~") directory as a file named "rpi-backup-20210328.img". I generally add a timestamp to my backups so I can figure out when I made them.
{{{
At line 52 changed one line
Note that you __must__ alter the "if" argument to match the drive of the SD card you found using fdisk, otherwise you may damage an existing drive. If won't necessarily be the same as what I found, and an SD card won't even always mount at the same location. ''Check it every time''.
Note that you __must__ alter the "if" (input file) argument to match the drive of the SD card you found using fdisk, otherwise you may damage an existing drive. If won't necessarily be the same as what I found, and an SD card won't even always mount at the same location. ''Check it every time''.