Update cheatsheets

This commit is contained in:
ivuorinen
2024-10-02 00:17:10 +00:00
parent c03ad03251
commit 6db54f9410
23 changed files with 500 additions and 1 deletions

29
tldr/linux/apt-clone Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# apt-clone
> Clone/backup/restore the package state of a Debian-based system.
> More information: <https://github.com/mvo5/apt-clone>.
- Clone the package state of the current system into a specified directory:
`apt-clone clone {{path/to/directory}}`
- Create a clone file (`tar.gz`) for backup purposes:
`apt-clone clone --destination {{path/to/backup.tar.gz}}`
- Restore the package state from a clone file:
`apt-clone restore {{path/to/backup.tar.gz}}`
- Show information about a clone file (e.g., the release, architecture):
`apt-clone info {{path/to/backup.tar.gz}}`
- Check if the clone file can be restored on the current system:
`apt-clone restore {{path/to/backup.tar.gz}} --destination {{path/to/restore}}`