mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-15 15:35:26 +02:00

* pages*: use generic word for help * git: add newline to the end Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * pages*: make help and version commands comply with the style guide * java: fix Java name --------- Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
24 lines
534 B
Markdown
24 lines
534 B
Markdown
# gdebi
|
|
|
|
> Simple tool to install `.deb` files.
|
|
> More information: <https://www.commandlinux.com/man-page/man1/gdebi.1.html>.
|
|
|
|
- Install local `.deb` packages resolving and installing its dependencies:
|
|
|
|
`gdebi {{path/to/package.deb}}`
|
|
|
|
- Do not show progress information:
|
|
|
|
`gdebi {{path/to/package.deb}} --quiet`
|
|
|
|
- Set an APT configuration option:
|
|
|
|
`gdebi {{path/to/package.deb}} --option={{APT_OPTS}}`
|
|
|
|
- Use alternative root dir:
|
|
|
|
`gdebi {{path/to/package.deb}} --root={{path/to/root_dir}}`
|
|
|
|
- Display version:
|
|
|
|
`gdebi --version`
|