distrobox-*: update pages

This commit is contained in:
K.B.Dharun Krishna
2023-03-02 21:50:46 +05:30
parent 67757373a1
commit 9a549b6c86
9 changed files with 34 additions and 34 deletions

View File

@@ -1,25 +1,25 @@
# distrobox-export
> Export app/service/binary from container to host OS.
> Subcommand of `distrobox`. More about distrobox: `tldr distrobox`.
> More information: <https://github.com/89luca89/distrobox/blob/main/docs/usage/distrobox-export.md>.
> Subcommand of `distrobox`. See also: `tldr distrobox`.
> More information: <https://distrobox.privatedns.org/usage/distrobox-export.html>.
- Export an app (eg: gedit) from the container to the host (will show up in your host system's application list):
- Export an app from the container to the host (the desktop entry/icon will show up in your host system's application list):
`distrobox-export --app {{gedit}} --extra-flags "--foreground"`
`distrobox-export --app {{package_name}} --extra-flags "--foreground"`
- Export a binary from the container to the host:
`distrobox-export --bin {{path/to/binary}} --export-path {{path/to/binary_on_host}}`
- Export a binary (eg: ranger) from the container to the host:
- Export a binary from the container to the host (i.e `$HOME/.local/bin`) :
`distrobox-export --bin {{/usr/bin/ranger}} --export-path {{$HOME/.local/bin}}`
`distrobox-export --bin {{path/to/binary}} --export-path {{path/to/export}}`
- Export a service (eg: syncthing) from container to the host (`--sudo` will run the service as root inside the container):
- Export a service from container to the host (`--sudo` will run the service as root inside the container):
`distrobox-export --service {{syncthing}} --extra-flags "--allow-newer-config" --sudo`
`distrobox-export --service {{package}} --extra-flags "--allow-newer-config" --sudo`
- Unexport/delete an exported app (eg: gedit):
- Unexport/delete an exported application:
`distrobox-export --app {{gedit}} --delete`
`distrobox-export --app {{package}} --delete`