mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-03 10:43:27 +00:00
30 lines
611 B
Plaintext
30 lines
611 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# gdebi
|
|
|
|
> Easily install `.deb` files.
|
|
> More information: <https://manned.org/gdebi>.
|
|
|
|
- Install local `.deb` packages resolving and installing its dependencies:
|
|
|
|
`gdebi {{path/to/package.deb}}`
|
|
|
|
- Do not show progress information:
|
|
|
|
`gdebi {{path/to/package.deb}} {{[-q|--quiet]}}`
|
|
|
|
- Set an APT configuration option:
|
|
|
|
`gdebi {{path/to/package.deb}} {{[-o|--option]}} {{APT_OPTS}}`
|
|
|
|
- Use alternative root dir:
|
|
|
|
`gdebi {{path/to/package.deb}} --root {{path/to/root_directory}}`
|
|
|
|
- Display version:
|
|
|
|
`gdebi --version`
|