Forrest logo
back to context overview

btrfs-restore

List of commands for btrfs-restore:

  • btrfs-restore:tldr:37794 btrfs-restore: Restore files from a btrfs filesystem using a specific root tree `bytenr` (see `btrfs-find-root`).
    $ sudo btrfs restore -t ${bytenr} ${path-to-btrfs_device} ${path-to-target_directory}
    try on your machine
    explain this command
  • btrfs-restore:tldr:55b79 btrfs-restore: Restore all files from a btrfs filesystem to a given directory.
    $ sudo btrfs restore ${path-to-btrfs_device} ${path-to-target_directory}
    try on your machine
    explain this command
  • btrfs-restore:tldr:d863c btrfs-restore: Restore files matching a given regex ([c]ase-insensitive) files to be restored from a btrfs filesystem (all parent directories of target file(s) must match as well).
    $ sudo btrfs restore --path-regex ${regex} -c ${path-to-btrfs_device} ${path-to-target_directory}
    try on your machine
    explain this command
  • btrfs-restore:tldr:f5170 btrfs-restore: List (don't write) files to be restored from a btrfs filesystem.
    $ sudo btrfs restore --dry-run ${path-to-btrfs_device} ${path-to-target_directory}
    try on your machine
    explain this command
  • btrfs-restore:tldr:fb98b btrfs-restore: Restore files from a btrfs filesystem (along with metadata, extended attributes, and Symlinks), overwriting files in the target.
    $ sudo btrfs restore --metadata --xattr --symlinks --overwrite ${path-to-btrfs_device} ${path-to-target_directory}
    try on your machine
    explain this command
back to context overview