1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 17:02:09 +02:00
tldr/pages/linux/snapper.md

27 lines
477 B
Markdown

# snapper
> Filesystem snapshot management tool.
- List snapshot configs:
`snapper list-configs`
- Create snapper config:
`snapper -c {{config}} create-config {{path/to/directory}}`
- List snapshots for a config:
`snapper -c {{config}} list`
- Create a new snapshot:
`snapper -c {{config}} snapshot`
- Delete a snapshot:
`snapper -c {{config}} delete {{snapshot_number}}`
- Delete a range of snapshots:
`snapper -c {{config}} delete {{snapshot_X}}-{{snapshot_Y}}`