1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 11:42:08 +02:00
tldr/pages/linux/gdebi.md
2021-01-30 16:28:36 -03:00

24 lines
546 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}}`
- Display the program version:
`gdebi --version`
- 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}}`