distrobox: update pages and Tamil translation
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
# distrobox-create
|
||||
|
||||
> Create a distrobox container. See also: `tldr distrobox`.
|
||||
> The created container will be tightly integrated with the host, allowing sharing of the HOME directory of the user, external storage, external usb devices and graphical apps (X11/Wayland), and audio.
|
||||
> The container created will be tightly integrated with the host, allowing sharing of the user's HOME directory, external storage, external USB devices, graphical apps (X11/Wayland), and audio.
|
||||
> More information: <https://distrobox.privatedns.org/usage/distrobox-create.html>.
|
||||
|
||||
- Create a distrobox using the Ubuntu Linux image:
|
||||
- Create a distrobox container using the Ubuntu image:
|
||||
|
||||
`distrobox-create {{container_name}} --image {{ubuntu:latest}}`
|
||||
|
||||
|
@@ -1,17 +1,17 @@
|
||||
# distrobox-enter
|
||||
|
||||
> Enter a distrobox container. See also: `tldr distrobox`.
|
||||
> Default command executed is your SHELL, but you can specify different shells or entire commands to execute. If used inside a script, an application, or a service, you can specify the --headless mode to disable tty and interactivity.
|
||||
> Default command executed is your SHELL, but you can specify different shells or entire commands to execute. If used inside a script, an application, or a service, you can use the `--headless` mode to disable the tty and interactivity.
|
||||
> More information: <https://distrobox.privatedns.org/usage/distrobox-enter.html>.
|
||||
|
||||
- Enter a distrobox container:
|
||||
|
||||
`distrobox-enter {{container-name}}`
|
||||
`distrobox-enter {{container_name}}`
|
||||
|
||||
- Enter a distrobox container and run `sh -l`:
|
||||
- Enter a distrobox container and run a command at login:
|
||||
|
||||
`distrobox-enter container-name -- sh -l`
|
||||
`distrobox-enter {{container_name}} -- {{sh -l}}`
|
||||
|
||||
- Enter a distrobox without instantiating a tty:
|
||||
- Enter a distrobox container without instantiating a tty:
|
||||
|
||||
`distrobox-enter -H container-name -- uptime -p`
|
||||
`distrobox-enter --name {{container_name}} -- {{uptime -p}}`
|
||||
|
@@ -12,11 +12,11 @@
|
||||
|
||||
`distrobox-export --bin {{path/to/binary}} --export-path {{path/to/binary_on_host}}`
|
||||
|
||||
- Export a binary from the container to the host (i.e `$HOME/.local/bin`) :
|
||||
- Export a binary from the container to the host (i.e.`$HOME/.local/bin`) :
|
||||
|
||||
`distrobox-export --bin {{path/to/binary}} --export-path {{path/to/export}}`
|
||||
|
||||
- Export a service from container to the host (`--sudo` will run the service as root inside the container):
|
||||
- Export a service from the container to the host (`--sudo` will run the service as root inside the container):
|
||||
|
||||
`distrobox-export --service {{package}} --extra-flags "--allow-newer-config" --sudo`
|
||||
|
||||
|
@@ -1,10 +1,10 @@
|
||||
# distrobox-host-exec
|
||||
|
||||
> Execute a command on host while inside a distrobox container.
|
||||
> Execute a command on the host from inside a distrobox container.
|
||||
> Subcommand of `distrobox`. See also: `tldr distrobox`.
|
||||
> More information: <https://distrobox.privatedns.org/usage/distrobox-host-exec.html>.
|
||||
|
||||
- Execute command on the host system from inside the container:
|
||||
- Execute command on the host system from inside the distrobox container:
|
||||
|
||||
`distrobox-host-exec "{{command}}"`
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
# distrobox-list
|
||||
|
||||
> List all distrobox containers. See also: `tldr distrobox`.
|
||||
> It detects them and lists them separately from the rest of normal podman or Docker containers.
|
||||
> Distrobox containers are listed separately from the rest of normal podman or Docker containers.
|
||||
> More information: <https://distrobox.privatedns.org/usage/distrobox-list.html>.
|
||||
|
||||
- List all distrobox containers:
|
||||
|
@@ -2,12 +2,12 @@
|
||||
|
||||
> Remove a distrobox container.
|
||||
> Subcommand of `distrobox`. See also: `tldr distrobox`.
|
||||
> More information: <https://github.com/89luca89/distrobox/blob/main/docs/usage/distrobox-rm.md>.
|
||||
> More information: <https://distrobox.privatedns.org/usage/distrobox-rm.html>.
|
||||
|
||||
- Remove a distrobox (Tip: Stop the container before removing it):
|
||||
- Remove a distrobox container (Tip: Stop the container before removing it):
|
||||
|
||||
`distrobox-rm {{container_name}}`
|
||||
|
||||
- Remove a distrobox forcefully:
|
||||
- Remove a distrobox container forcefully:
|
||||
|
||||
`distrobox-rm {{container_name}} --force`
|
||||
|
@@ -6,4 +6,8 @@
|
||||
|
||||
- Stop a distrobox container:
|
||||
|
||||
`distrobox-stop {{container-name}}`
|
||||
`distrobox-stop {{container_name}}`
|
||||
|
||||
- Stop a distrobox container non-interactively (without confirmation):
|
||||
|
||||
`distrobox-stop --name {{container_name}} --yes`
|
||||
|
@@ -2,7 +2,7 @@
|
||||
|
||||
> Upgrade one or multiple distrobox containers.
|
||||
> Subcommand of `distrobox`. See also: `tldr distrobox`.
|
||||
> More information: <https://github.com/89luca89/distrobox/blob/main/docs/usage/distrobox-upgrade.md>.
|
||||
> More information: <https://distrobox.privatedns.org/usage/distrobox-upgrade.html>.
|
||||
|
||||
- Upgrade a container using the container's native package manager:
|
||||
|
||||
@@ -12,6 +12,6 @@
|
||||
|
||||
`distrobox-upgrade --all`
|
||||
|
||||
- Upgrade specific containers via container's native package managers:
|
||||
- Upgrade specific containers via the container's native package manager:
|
||||
|
||||
`distrobox-upgrade {{container1 container2 ...}}`
|
||||
|
@@ -1,37 +1,37 @@
|
||||
# distrobox
|
||||
|
||||
> Use any Linux distribution inside your terminal by running it as a container. Install & use packages inside it while tightly integrating with the host OS, sharing storage, and `home` directory with GUI & audio capabilities.
|
||||
> You can install any software inside it. Eg: installing a `.deb` package inside an ubuntu container running on an Arch Linux host system. Packages inside the container can access the host's files.
|
||||
> Use any Linux distribution inside your terminal in a container. Install & use packages inside it while tightly integrating with the host OS, sharing storage (`home` directory) and hardware.
|
||||
> It uses Podman or Docker to create your containers.
|
||||
> More information: <https://github.com/89luca89/distrobox>.
|
||||
|
||||
- Show tldr page for distrobox-create (creating containers):
|
||||
- View documentation for creating containers:
|
||||
|
||||
`tldr distrobox-create`
|
||||
|
||||
- Show tldr page for distrobox-list (list container info):
|
||||
- View documentation for listing container's information:
|
||||
|
||||
`tldr distrobox-list`
|
||||
|
||||
- Show tldr page for distrobox-enter (enter inside containers):
|
||||
- View documentation for entering the container:
|
||||
|
||||
`tldr distrobox-enter`
|
||||
|
||||
- Show tldr page for distrobox-host-exec (Execute command on the host while inside a container):
|
||||
- View documentation for executing a command on the host from inside a container:
|
||||
|
||||
`tldr distrobox-host-exec`
|
||||
|
||||
- Show tldr page for distrobox-export (Export app/service/binary from container to host):
|
||||
- View documentation for exporting app/service/binary from the container to the host:
|
||||
|
||||
`tldr distrobox-export`
|
||||
|
||||
- Show tldr page for distrobox-upgrade (upgrade containers):
|
||||
- View documentation for upgrading containers:
|
||||
|
||||
`tldr distrobox-upgrade`
|
||||
|
||||
- Show tldr page for distrobox-stop (stop containers):
|
||||
- View documentation for stopping the containers:
|
||||
|
||||
`tldr distrobox-stop`
|
||||
|
||||
- Show tldr page for distrobox-rm (remove containers):
|
||||
- View documentation for removing the containers:
|
||||
|
||||
`tldr distrobox-rm`
|
||||
|
Reference in New Issue
Block a user