Forrest logo
back to context overview

btrfs-subvolume

List of commands for btrfs-subvolume:

  • btrfs-subvolume:tldr:688e9 btrfs-subvolume: Create a read-write snapshot of an existing subvolume.
    $ sudo btrfs subvolume snapshot ${path-to-source_subvolume} ${path-to-target}
    try on your machine
    explain this command
  • btrfs-subvolume:tldr:6f6de btrfs-subvolume: List all subvolumes and snapshots in the specified filesystem.
    $ sudo btrfs subvolume list ${path-to-btrfs_filesystem}
    try on your machine
    explain this command
  • btrfs-subvolume:tldr:9f578 btrfs-subvolume: Delete a subvolume.
    $ sudo btrfs subvolume delete ${path-to-subvolume}
    try on your machine
    explain this command
  • btrfs-subvolume:tldr:bfe4b btrfs-subvolume: Create a new empty subvolume.
    $ sudo btrfs subvolume create ${path-to-new_subvolume}
    try on your machine
    explain this command
  • btrfs-subvolume:tldr:d38c8 btrfs-subvolume: Show detailed information about a subvolume.
    $ sudo btrfs subvolume show ${path-to-subvolume}
    try on your machine
    explain this command
  • btrfs-subvolume:tldr:f68c6 btrfs-subvolume: Create a read-only snapshot of an existing subvolume.
    $ sudo btrfs subvolume snapshot -r ${path-to-source_subvolume} ${path-to-target}
    try on your machine
    explain this command
back to context overview