mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 11:06:00 +02:00
tlmgr-remove: add page (#6560)
This commit is contained in:
parent
64135424ae
commit
4340c9a64b
1 changed files with 25 additions and 0 deletions
25
pages/common/tlmgr-remove.md
Normal file
25
pages/common/tlmgr-remove.md
Normal file
|
@ -0,0 +1,25 @@
|
|||
# tlmgr remove
|
||||
|
||||
> Uninstall TeX Live packages.
|
||||
> By default, removed packages will be backed up to `./tlpkg/backups` under the TL installation directory.
|
||||
> More information: <https://www.tug.org/texlive/tlmgr.html>.
|
||||
|
||||
- Uninstall a TeX Live package:
|
||||
|
||||
`sudo tlmgr remove {{package}}`
|
||||
|
||||
- Simulate uninstalling a package without making any changes:
|
||||
|
||||
`tlmgr remove --dry-run {{package}}`
|
||||
|
||||
- Uninstall a package without its dependencies:
|
||||
|
||||
`sudo tlmgr remove --no-depends {{package}}`
|
||||
|
||||
- Uninstall a package and back it up to a specific directory:
|
||||
|
||||
`sudo tlmgr remove --backupdir {{path/to/directory}} {{package}}`
|
||||
|
||||
- Uninstall all of TeX Live, asking for confirmation:
|
||||
|
||||
`sudo tlmgr remove --all`
|
Loading…
Add table
Reference in a new issue