mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-21 22:02:09 +02:00

* batch1 * batch2 * batch3 * batch4 * Update matchpathcon.md * Update pages/linux/arecord.md Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * Update pages/linux/arecord.md Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * Update pages/linux/arecord.md Co-authored-by: Wiktor Perskawiec <git@spageektti.cc> --------- Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
24 lines
1 KiB
Markdown
24 lines
1 KiB
Markdown
# distrobox-export
|
|
|
|
> Export app/service/binary from container to host OS. See also: `tldr distrobox`.
|
|
> More information: <https://distrobox.it/usage/distrobox-export>.
|
|
|
|
- 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 {{[-a|--app]}} {{package}} {{[-ef|--extra-flags]}} "--foreground"`
|
|
|
|
- Export a binary from the container to the host:
|
|
|
|
`distrobox-export {{[-b|--bin]}} {{path/to/binary}} {{[-ep|--export-path]}} {{path/to/binary_on_host}}`
|
|
|
|
- Export a binary from the container to the host (i.e.`$HOME/.local/bin`) :
|
|
|
|
`distrobox-export {{[-b|--bin]}} {{path/to/binary}} {{[-ep|--export-path]}} {{path/to/export}}`
|
|
|
|
- Export a service from the container to the host (`--sudo` will run the service as root inside the container):
|
|
|
|
`distrobox-export --service {{package}} {{[-ef|--extra-flags]}} "--allow-newer-config" {{[-S|--sudo]}}`
|
|
|
|
- Unexport/delete an exported application:
|
|
|
|
`distrobox-export {{[-a|--app]}} {{package}} {{[-d|--delete]}}`
|