No, they’re not trying to recover data, they’re trying to copy data to the disk, to store backups, which they should absolutely not do, that disk is not fit as backup storage.
No, they’re not trying to recover data, they’re trying to copy data to the disk, to store backups, which they should absolutely not do, that disk is not fit as backup storage.
That’s correct for dd but not for clonezilla.
Clonezilla uses partclone, which reads the file system and copies only the data, for any filesystem sorted by partclone.
The easiest way to solve this kind of issue on Nixos is to add
environment.systemPackages = with pkgs; [ steam-run ];
to your configuration.nix, rebuild your system and then run the binary with steam-run, like steam-run linuxrulzgame
Seems interesting, thanks!