Nov 4, 2022 6 min read

How to backup and clone your Steam Deck

Here are two different ways (rsync and Clonezilla) to backup the data on your Steam Deck.

Backing up a Steam Deck to an external drive

Here are two different ways (rsync and Clonezilla) to backup the data on your Steam Deck.

If you spend as much time trying out things and tinkering with your Steam Deck as we do, you might run into the occasional problem and sooner or later find yourself needing to restore your whole system. While the Linux-powered SteamOS proposes several ways to repair your system, some will lose your data. Or maybe you installed a new SSD into your Steam Deck and want to move files over from your old one.

For these cases, and generally, for proper usage, you want to back up your Steam Deck. Since it's running Linux, backing it up is pretty easy, and several methods exist for different needs. We'll show you two ways today.

Before we start, grab a large external drive, like our go-to SSD (at the time of writing, the 1TB option is on sale). An obvious point to make, perhaps, but if you want to back up the whole system, it needs to be at least as big as the internal drive of your Steam Deck.

Two ways to backup your Steam Deck


Backing up your Steam Deck data using rsync


Using rysnc to back up your Steam Deck is probably the quickest way, but you will need to use the terminal. But don't worry; you only need to copy a few lines to make it run.

Screenshot showing rsync.

Before we start, we need to prepare an external hard drive for the process — we used the drive integrated in our JSAUX M.2 dock.

  1. On your Steam Deck, go to desktop mode. Click the Steam button, go down to Power, and then Switch to Desktop. Wait for the Deck to reboot.
  2. In the desktop mode, click on the menu button and open up KDE Partition Manager. Hook up your external drive, and find it in the sidebar.
  3. In our case, the drive was visible as /dev/sda. Here, click on the partition and delete it. If this doesn't seem to work, because the Mount Point has a lock, right-click and unmount the drive first.
  4. Next, click on New Partition Table, choose GPT and save.
  5. Click on the partition, then New and under File system, choose ext4 and give it a label, we called ours jsaux. Save, and then finally hit Apply.
  6. Now, click on the menu button again, and open up Konsole. Here, type sudo chown deck /run/media/deck/jsaux and hit enter. Replace jsaux with the name you gave your drive, of course.

Now, you should have prepared your drive and mounted it accordingly. We created a folder in the drive's location called backup. Time to back up!

  1. If you've closed the terminal, open up Konsole again. Next, we want to back up the home folder, as everything you need should live here.
  2. Now, type sudo rsync -aAXv /home/deck /run/media/deck/jsaux/backup. Replace jsaux/backup with the path to your drive and folder. Hit enter and let it run.

To restore your system, you  have to reverse the source and destination folders: sudo rsync -aAXv /run/media/deck/jsaux/backup/deck /home/deck.

(With the -aAXv option, files are transferred in archive mode to ensure that symbolic links, permissions, devices, ownerships, modification times, extended attributes, and ACLs are preserved.)

As rsync is an incremental file-copying tool, it will only check data that has not yet been copied. So, it's an excellent tool for synchronizing folders. You could, for example, use it to create a synchronized cloud backup with a cloud storage service like Backblaze B2, which is one of our favourite services.


Clone your Steam Deck using Clonezilla


Another option that does not use the Terminal is Clonezilla, though, for this method, you have to create a bootable drive running Clonezilla and boot into it. Again, not difficult but still reasonably involved. However, this is also the option we recommend when you can't even boot up SteamOS.

Also, for this method, you will need an external keyboard and a docking station.

balenaEtcher showing the flashing process.

Here are the steps:

  1. First, download the CloneZilla ISO File from here. Choose the stable image and, in the next step, the ISO file.
  2. Next, get Balena Etcher tool. Start it up. Choose the downloaded ISO file, choose the USB drive (remember, it will delete everything on the drive), and hit Flash!. Wait for it to finish.
  3. Shut down your Steam Deck. Click the Steam button, go down to Power, and then Shutdown. If it's frozen, hold the Power button until the Deck is off.
  4. Connect your newly created USB boot drive.
  5. With the Deck turned off, hold down the Volume Down button and click the Power button. When you hear the chime, let go of the Volume Down button. Be sure your
  6. You're now in the Boot manager. Here, choose the boot drive.

Now, we've booted into the CloneZilla live environment. To continue, you want to use the D-Pad and the ABXY buttons and, for a while, turn your Steam Deck sideways.

  1. On the Boot screen, press the A button to get started with the default settings.
  2. Next, pick your language.
  3. In the next window, called Configure Console-Data choose Don't touch keymap.
  4. Now you'll see the Start Clonezilla window, and usually, the Steam Deck screen should be in the correct orientation again. Pick the first option Start_CloneZilla Start CloneZilla.
  5. In the next screen, you will have several options to choose from. For this guide, we want to copy files to another drive, so we choose device-image and in the next step local_dev.

Now we will get to the actual cloning process.

  1. Plug in the destination drive. CloneZilla should be able to recognize newly connected drives. It has to be at least the same size or bigger than your source drive. Smaller ones won't work.
  2. In the next window, check if you see your drive. This is also the step where you need a keyboard to hit CTRL-C to skip the window.
  3. Now, choose the destination drive. For us, it was sda1.
  4. In the next step, you can check your filesystem. We'll skip this in this guide, but you can still choose to do so.
  5. Here, you can pick where you want to save the cloned image. If you want it in the root directory, pick Done.
  6. Pick Beginner in the following screen, and then savedisk for the backup option. In the following step, pick a name or keep the default one.
  7. Next, decide what disk you want to clone. Here you might see your microSD card so choose the correct one. In our case, it was nvme0n1.
  8. Pick the default option for the compression method.
  9. Now, you're asked to check your filesystem for the source drive. We skip this again, but you can still do so.
  10. For the next check, however, we chose yes. This step checks if the image is restorable.
  11. And one more step, we choose to ignore it as we don't want to encrypt the image.
  12. Next, pick if you want to reboot your device after clowning or turn it off. We chose reboot.
  13. CloneZilla will ask now ask for permission to clone the drive. Hit Y on your keyboard and then Enter.
  14. If all went according to plan, you should see the backup process running now. This will take a while. It took us around two hours to clone a 512 GB drive to an SSD connected via USB-C.
  15. When done, your device will either reboot or shut down, as chosen in step 12.

Restoring your device follows the same steps (steps 1-6 in the second part) when cloning the device, but instead of savedisk, you choose restoredisk when asked.


That's it. Two methods to back up your Steam Deck. No more excuses if you lose your files!

But if you are still unsure which one to choose: we recommend the rsync method to back up your files in general and restore if you can boot into SteamOS (after restoring, for example). We recommend the CloneZilla method if your SteamOS installation is completely borked.

If this was helpful, why not give us a follow on Twitter?

Great! You’ve successfully signed up.
Welcome back! You've successfully signed in.
You've successfully subscribed to overkill.wtf.
Your link has expired.
Success! Check your email for magic link to sign-in.
Success! Your billing info has been updated.
Your billing was not updated.