Skip to main content
Antal István

Creating an encrypted Time Machine disk on ExFAT

A blue external hard drive topped by a fanned stack of colorful screenshot cards, encircled by a green-to-red looping arrow, with a cable plugging into its side.
hdiutil create -stdinpass -encryption "AES-256" -size 500g -type SPARSEBUNDLE -fs "HFS+J" YourImage.sparsebundle

Where YourImage is the name you want to give your backup image and 500g is the maximum size of your disk image.

open YourImage.sparsebundle
diskutil list

Find your mounted image in the list and get its path, in my case it was: /dev/disk3s2

sudo diskutil enableOwnership /dev/disk3s2
sudo tmutil setdestination /Volumes/YourImage

References:

Related