# Duplicating the original SD card I received with the PicoCalc

**URL:** https://forum.clockworkpi.com/t/duplicating-the-original-sd-card-i-received-with-the-picocalc/19450
**Category:** PicoCalc
**Created:** [August 27, 2025, 2:45pm UTC](https://forum.clockworkpi.com/t/duplicating-the-original-sd-card-i-received-with-the-picocalc/19450 "2025-08-27T14:45:53Z")
**Posts on this page:** 15
**Page:** 1

<div class="post-metadata">

### Author: ![ArielPalazzesi](https://yyz1.discourse-cdn.com/flex029/user_avatar/forum.clockworkpi.com/arielpalazzesi/32/16836_2.png) [@ArielPalazzesi](https://forum.clockworkpi.com/u/ArielPalazzesi)
#### Post date: [August 27, 2025, 2:45pm UTC](https://forum.clockworkpi.com/t/duplicating-the-original-sd-card-i-received-with-the-picocalc/19450/1 "2025-08-27T14:45:53Z")

</div>

A few hours ago, I received my PicoCalc. After assembling it and confirming that it worked perfectly, I decided to make a copy of the SD card.

The process took me a while (I had to research how to do it), but I finally managed to solve the problem: **I now have a cloned card from the original in use** , and I’ve kept the original one safely stored in case something happens to the copy.

This process motivated me to document the steps I followed, in case I need to do it again in the future or if someone else wants to make their own copy.

I’ve **started writing a PicoCalc FAQ** , in both Spanish and English. Here’s the link to the repository, in case it’s useful for you or (hopefully!) if you’d like to contribute with more guides for the FAQ:

> **[GitHub - VintaBytes/picocalc\_faq: FAQ (en construcción) sobre el uso y...](https://github.com/VintaBytes/picocalc_faq)**
>
> FAQ (en construcción) sobre el uso y características del dispositivo PicoCalc de ClockWorksPi

Best regards,  
Ariel.

---

<div class="post-metadata">

### Author: ![beapig](https://yyz1.discourse-cdn.com/flex029/user_avatar/forum.clockworkpi.com/beapig/32/11901_2.png) [@beapig](https://forum.clockworkpi.com/u/beapig)
#### Post date: [August 27, 2025, 3:56pm UTC](https://forum.clockworkpi.com/t/duplicating-the-original-sd-card-i-received-with-the-picocalc/19450/2 "2025-08-27T15:56:04Z")

</div>

you can make a official SD card with this turtorial：

> <https://github.com/clockworkpi/PicoCalc/blob/master/wiki/How-to-Create-an-Official-PicoCalc-SD-Card.md>

---

<div class="post-metadata">

### Author: ![ArielPalazzesi](https://yyz1.discourse-cdn.com/flex029/user_avatar/forum.clockworkpi.com/arielpalazzesi/32/16836_2.png) [@ArielPalazzesi](https://forum.clockworkpi.com/u/ArielPalazzesi)
#### Post date: [August 27, 2025, 4:04pm UTC](https://forum.clockworkpi.com/t/duplicating-the-original-sd-card-i-received-with-the-picocalc/19450/3 "2025-08-27T16:04:07Z")

</div>

Thanks! I didn’t know about that tutorial!

Bookmarked : )

---

<div class="post-metadata">

### Author: ![dieppon](https://yyz1.discourse-cdn.com/flex029/user_avatar/forum.clockworkpi.com/dieppon/32/13392_2.png) [@dieppon](https://forum.clockworkpi.com/u/dieppon)
#### Post date: [August 28, 2025, 1:39pm UTC](https://forum.clockworkpi.com/t/duplicating-the-original-sd-card-i-received-with-the-picocalc/19450/4 "2025-08-28T13:39:09Z")

</div>

I have tried too, but the script does not work on mac, does anyone know how to adapt the script for mac?

---

<div class="post-metadata">

### Author: ![Martin69](https://yyz1.discourse-cdn.com/flex029/user_avatar/forum.clockworkpi.com/martin69/32/14207_2.png) [@Martin69](https://forum.clockworkpi.com/u/Martin69)
#### Post date: [August 28, 2025, 2:11pm UTC](https://forum.clockworkpi.com/t/duplicating-the-original-sd-card-i-received-with-the-picocalc/19450/5 "2025-08-28T14:11:15Z")

</div>

verify this code below first:

Here are the key changes for macOS:

**Main differences:**

- Uses `diskutil` instead of `parted` and `fdisk` (the standard tools on macOS)

- Checks root privileges with `sudo`

- Disk identification uses `disk2`, `disk3` etc. (macOS format)

- Uses `diskutil list` to display available disks

- Automatic unmounting before partitioning

**Usage:**

bash

```auto
# First display available disks
diskutil list

# Run script (requires sudo)
sudo ./partition_disk.sh disk2

```

**Important notes:**

- The script must be run with `sudo`

- Use the disk number without `/dev/` (e.g. `disk2` instead of `/dev/disk2`)

- The second partition is created as “Free Space” - you can format it later as needed

- macOS displays disks differently than Linux, hence the adapted size calculation

The script maintains the same functionality: Creates a FAT32 partition with the desired size and leaves 32MB for a second partition.

#!/bin/bash

# Check if running as root

if [“$EUID” -ne 0]; then  
echo “This script must be run as root (use sudo)”  
exit 1  
fi

DEVICE=“/dev/$1”  
if [-z “$1”]; then  
echo “Usage: $0 ”  
echo “Example: $0 disk2”  
echo “”  
echo “Available disks:”  
diskutil list  
exit 1  
fi

# Convert to full disk identifier if needed

if [[“$1” =~ ^disk[0-9]+$ ]]; then  
DEVICE=“/dev/$1”  
DISK\_ID=“$1”  
else  
echo “Invalid disk format. Use format like: disk2”  
exit 1  
fi

# Check if disk exists

if ! diskutil info “$DISK\_ID” \>/dev/null 2\>&1; then  
echo “Disk $DISK\_ID does not exist”  
echo “”  
echo “Available disks:”  
diskutil list  
exit 1  
fi

# Show disk info

echo “Disk information:”  
diskutil info “$DISK\_ID”  
echo “”

echo “WARNING: $DEVICE ($DISK\_ID) will be completely erased and all data will be lost!”  
echo “This action cannot be undone.”  
read -p "Do you want to continue? (y/n): " confirm  
if [“$confirm” != “y”]; then  
echo “Operation canceled”  
exit 1  
fi

echo “Beginning partitioning process…”

# Unmount all partitions on the disk

echo “Unmounting disk…”  
diskutil unmountDisk “$DISK\_ID”

# Get disk size in bytes

TOTAL\_SIZE=$(diskutil info “$DISK\_ID” | grep “Disk Size” | awk ‘{print $5}’ | tr -d ‘()’)  
if [-z “$TOTAL\_SIZE”]; then

# Alternative method to get size

TOTAL\_SIZE=$(diskutil info “$DISK\_ID” | grep “Total Size” | awk ‘{print $5}’ | tr -d ‘()’)  
fi

SIZE\_MB=$(( TOTAL\_SIZE / 1024 / 1024 ))  
PART1\_SIZE=$(( SIZE\_MB - 32 ))

echo “Total disk size: ${SIZE\_MB}MB”  
echo “First partition size: ${PART1\_SIZE}MB”

# Create partition scheme and partitions

echo “Creating MBR partition scheme…”  
diskutil partitionDisk “$DISK\_ID” MBR  
“MS-DOS FAT32” “PART1” “${PART1\_SIZE}MB”  
“Free Space” “PART2” “32MB”

if [$? -eq 0]; then  
echo “”  
echo “Partitioning completed successfully!”  
echo “”  
echo “Final disk layout:”  
diskutil list “$DISK\_ID”  
else  
echo “Error: Partitioning failed”  
exit 1  
fi

echo “”  
echo “Done. The disk has been partitioned with:”  
echo “- Partition 1: FAT32, ${PART1\_SIZE}MB”  
echo “- Partition 2: Free space, 32MB”

---

<div class="post-metadata">

### Author: ![DigitalDreams](https://yyz1.discourse-cdn.com/flex029/user_avatar/forum.clockworkpi.com/digitaldreams/32/16007_2.png) [@DigitalDreams](https://forum.clockworkpi.com/u/DigitalDreams)
#### Post date: [August 28, 2025, 2:11pm UTC](https://forum.clockworkpi.com/t/duplicating-the-original-sd-card-i-received-with-the-picocalc/19450/6 "2025-08-28T14:11:29Z")

</div>

Just format fat32 and copy the contents over !. The original SD card can cause issues as has an odd partition structure for use with Fuzix…

> **[PicoCalc/Bin/PicoCalc SD at master · clockworkpi/PicoCalc](https://github.com/clockworkpi/PicoCalc/tree/master/Bin/PicoCalc%20SD)**
>
> A calculator like nothing you've ever seen before, right? - clockworkpi/PicoCalc

---

<div class="post-metadata">

### Author: ![ArielPalazzesi](https://yyz1.discourse-cdn.com/flex029/user_avatar/forum.clockworkpi.com/arielpalazzesi/32/16836_2.png) [@ArielPalazzesi](https://forum.clockworkpi.com/u/ArielPalazzesi)
#### Post date: [August 28, 2025, 3:58pm UTC](https://forum.clockworkpi.com/t/duplicating-the-original-sd-card-i-received-with-the-picocalc/19450/7 "2025-08-28T15:58:18Z")

</div>

This is the bootloader included in the PicoCalc I just received.  
It works very well.

Is it possible to add another UF2 image to the SD card so that its name appears in this menu during startup?  
If so, in which folder on the SD should I copy it?

 ![image](https://canada1.discourse-cdn.com/flex029/uploads/clockworkpi/original/2X/d/de8a56aeec5c1a0afbbfa977c5497c68998c281f.jpeg)

P.S.: There’s a ghost in the picture… it looks like the spirit of a programmer from the last century : )

---

<div class="post-metadata">

### Author: ![BlairLeduc](https://yyz1.discourse-cdn.com/flex029/user_avatar/forum.clockworkpi.com/blairleduc/32/11808_2.png) [@BlairLeduc](https://forum.clockworkpi.com/u/BlairLeduc)
#### Post date: [August 28, 2025, 4:26pm UTC](https://forum.clockworkpi.com/t/duplicating-the-original-sd-card-i-received-with-the-picocalc/19450/8 "2025-08-28T16:26:18Z")

</div>

I would highly recommend you switch to uf2loader. It loads uf2 files instead of bootloader loading bin files.

> **[Releases · pelrun/uf2loader](https://github.com/pelrun/uf2loader/releases)**
>
> Bootloader that loads firmware from PicoCalc's SD card Slot. - pelrun/uf2loader

---

<div class="post-metadata">

### Author: ![ArielPalazzesi](https://yyz1.discourse-cdn.com/flex029/user_avatar/forum.clockworkpi.com/arielpalazzesi/32/16836_2.png) [@ArielPalazzesi](https://forum.clockworkpi.com/u/ArielPalazzesi)
#### Post date: [August 28, 2025, 4:34pm UTC](https://forum.clockworkpi.com/t/duplicating-the-original-sd-card-i-received-with-the-picocalc/19450/9 "2025-08-28T16:34:44Z")

</div>

Thanks @BlairLeduc!

Yes, it’s a project I had been looking into before receiving the PicoCalc.  
It really does seem like a better option.

But I’m a bit hesitant: I don’t know enough about the hardware/software involved, and I’m afraid of making a mistake I wouldn’t be able to fix. Still, I’ll probably give it a try using another Pico (an RP2350W), keeping the original safe so I can go back to the stock setup if something goes wrong.

As you know, English isn’t my native language, and sometimes I’m worried I might miss something in translation. Just to be sure I understand correctly: is it enough to flash `bootloader_pico2.uf2` onto the new RP2350W, create the folder for the uf2 images, and… nothing else?

---

<div class="post-metadata">

### Author: ![BlairLeduc](https://yyz1.discourse-cdn.com/flex029/user_avatar/forum.clockworkpi.com/blairleduc/32/11808_2.png) [@BlairLeduc](https://forum.clockworkpi.com/u/BlairLeduc)
#### Post date: [August 28, 2025, 5:30pm UTC](https://forum.clockworkpi.com/t/duplicating-the-original-sd-card-i-received-with-the-picocalc/19450/10 "2025-08-28T17:30:23Z")

</div>

You also need to copy the BOOT2350.uf2 file to the root of the SD card. The folder for the uf2 files needs to be called “pico2-apps”

---

<div class="post-metadata">

### Author: ![ArielPalazzesi](https://yyz1.discourse-cdn.com/flex029/user_avatar/forum.clockworkpi.com/arielpalazzesi/32/16836_2.png) [@ArielPalazzesi](https://forum.clockworkpi.com/u/ArielPalazzesi)
#### Post date: [August 28, 2025, 5:57pm UTC](https://forum.clockworkpi.com/t/duplicating-the-original-sd-card-i-received-with-the-picocalc/19450/11 "2025-08-28T17:57:47Z")

</div>

I just did it!  
I flashed the microcontroller, created the folders on the SD card, copied the uf2 images, etc.  
And it worked!

On the first boot, it showed the menu with the available images for Pico2W.

I selected the Picomite image ( **WebMite\_PICO2W\_V6.00.03\_PicoCalc.uf2** ), the message appeared saying the file was being flashed… and it never recovered from the black screen.

After that, I rebooted a couple of times, without even seeing the menu.

Finally, I tried repeating the process (flashing the micro again, etc., but without removing it from the PicoCalc) and… the boot menu no longer shows up.

I switched back to the original microcontroller and SD card and everything works fine.

Most likely the **WebMite\_PICO2W\_V6.00.03\_PicoCalc.uf2** image wasn’t compatible, or something else happened.  
It’s strange that reflashing the micro didn’t work either.

Thank you very much for your patience and support!  
Maybe I should just stick with the current version and avoid risking breaking something, right?

---

<div class="post-metadata">

### Author: ![BlairLeduc](https://yyz1.discourse-cdn.com/flex029/user_avatar/forum.clockworkpi.com/blairleduc/32/11808_2.png) [@BlairLeduc](https://forum.clockworkpi.com/u/BlairLeduc)
#### Post date: [August 28, 2025, 6:03pm UTC](https://forum.clockworkpi.com/t/duplicating-the-original-sd-card-i-received-with-the-picocalc/19450/12 "2025-08-28T18:03:49Z")

</div>

Right now, PicoMite/WebMite does not work with uf2loader, but the creator of uf2loader, @pelrun, is working to fix that.

---

<div class="post-metadata">

### Author: ![dieppon](https://yyz1.discourse-cdn.com/flex029/user_avatar/forum.clockworkpi.com/dieppon/32/13392_2.png) [@dieppon](https://forum.clockworkpi.com/u/dieppon)
#### Post date: [August 29, 2025, 1:11pm UTC](https://forum.clockworkpi.com/t/duplicating-the-original-sd-card-i-received-with-the-picocalc/19450/13 "2025-08-29T13:11:32Z")

</div>

This is fantastic, ill try it later.

---

<div class="post-metadata">

### Author: ![FBustamante](https://yyz1.discourse-cdn.com/flex029/user_avatar/forum.clockworkpi.com/fbustamante/32/12533_2.png) [@FBustamante](https://forum.clockworkpi.com/u/FBustamante)
#### Post date: [September 3, 2025, 7:11pm UTC](https://forum.clockworkpi.com/t/duplicating-the-original-sd-card-i-received-with-the-picocalc/19450/14 "2025-09-03T19:11:35Z")

</div>

```auto
I'm from Malaga, Spain.

It's very nice to find some information in Spanish.

Thank you very much!

```

---

<div class="post-metadata">

### Author: ![dieppon](https://yyz1.discourse-cdn.com/flex029/user_avatar/forum.clockworkpi.com/dieppon/32/13392_2.png) [@dieppon](https://forum.clockworkpi.com/u/dieppon)
#### Post date: [September 4, 2025, 8:11am UTC](https://forum.clockworkpi.com/t/duplicating-the-original-sd-card-i-received-with-the-picocalc/19450/15 "2025-09-04T08:11:56Z")

</div>

Si tienes dudas, pregunta y te intento responder.
