# How to create a new SD master card, or backup efficiently your existing card
If you want to backup your machine, or prepare an image from the golden machine to share it to the world (or your students), you may want to follow those steps.
!!! tip
The golden machine is the machine on which the setup is made. Everything is prepared according to your needs. Once it's ready, you just cleanly shut it down, pop the SD card out, and copy it to share the love!
Everything in this guide is written by using a Linux computer in which the sdcard is inserted.
## Find and unmount your sd card
Firsts things firsts, we need to know where is our sdcard in the linux filesystem.
To find the device, open a terminal and type in `sudo fdisk -l`.
In the output, there will be a section looking like this:
```
Disk /dev/mmcblk0: 58.29 GiB, 62587404288 bytes, 122241024 sectors
There is a very high probability that the device name we are looking for starts with `mmcblk`. To make sure this is the device we are looking for, use the size displayed (in this case, it is a 64GB sdcard).
We are now going to make sure the device is not mounted on your system (some OSes mount inserted sdcards automatically).
Simply type `sudo umount /dev/mmcblk0p1` and `sudo umount /dev/mmcblk0p2` to unmount the disk.
If the devices were not mounted, you may see an error message that you can ignore. The message looks like this:
```
umount: /dev/mmcblk0p2: not mounted.
```
## Copy the sdcard to your disk
Choose and navigate to an appropriate directory on your computer.
We are going to use `dd` to copy the sdcard. The command to type is the following:
If you want to distribute the image you created, you should use the flag `-p` with PiShrink to remove logs, apt archives, ssh hosts keys and similar things.
You now have a compressed image that should be between 10 and 100 times smaller than the one you started with. You can distribute it (don't forget to do the steps above first), archive it, do whatever you please with it!