diff --git a/pages/linux/gdebi.md b/pages/linux/gdebi.md new file mode 100644 index 000000000..8288b2c1c --- /dev/null +++ b/pages/linux/gdebi.md @@ -0,0 +1,24 @@ +# gdebi + +> Simple tool to install `.deb` files. +> More information: . + +- 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}}`