mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-01 23:15:24 +02:00
krunvm: add page, add Spanish translation (#9575)
This commit is contained in:
parent
3a540d3b3f
commit
75e5d87936
2 changed files with 48 additions and 0 deletions
24
pages.es/common/krunvm.md
Normal file
24
pages.es/common/krunvm.md
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# krunvm
|
||||||
|
|
||||||
|
> Utilidad basada en CLI para crear micro máquinas virtuales utilizando imagenes OCI.
|
||||||
|
> Más información: <https://github.com/containers/krunvm>.
|
||||||
|
|
||||||
|
- Crea una micro máquina virtual basada en Fedora:
|
||||||
|
|
||||||
|
`krunvm create {{docker.io/fedora}} --cpus {{numero_de_vcpus}} --mem {{memoria_en_megabytes}} --name "{{nombre}}"`
|
||||||
|
|
||||||
|
- Inicia una imagen especifica:
|
||||||
|
|
||||||
|
`krunvm start "{{nombre}}"`
|
||||||
|
|
||||||
|
- Lista las imagenes existentes:
|
||||||
|
|
||||||
|
`krunvm list`
|
||||||
|
|
||||||
|
- Cambia una imagen especifica:
|
||||||
|
|
||||||
|
`krunvm changevm --cpus {{numero_de_vcpus}} --mem {{memoria_en_megabytes}} --name "{{nuevo_nombre}}" "{{nombre}}"`
|
||||||
|
|
||||||
|
- Borra una imagen especifica:
|
||||||
|
|
||||||
|
`krunvm delete "{{nombre}}"`
|
24
pages/common/krunvm.md
Normal file
24
pages/common/krunvm.md
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# krunvm
|
||||||
|
|
||||||
|
> CLI-based utility for creating MicroVMs from OCI images.
|
||||||
|
> More information: <https://github.com/containers/krunvm>.
|
||||||
|
|
||||||
|
- Create MicroVM based on Fedora:
|
||||||
|
|
||||||
|
`krunvm create {{docker.io/fedora}} --cpus {{number_of_vcpus}} --mem {{memory_in_megabytes}} --name "{{name}}"`
|
||||||
|
|
||||||
|
- Start a specific image:
|
||||||
|
|
||||||
|
`krunvm start "{{image_name}}"`
|
||||||
|
|
||||||
|
- List images:
|
||||||
|
|
||||||
|
`krunvm list`
|
||||||
|
|
||||||
|
- Change a specific image:
|
||||||
|
|
||||||
|
`krunvm changevm --cpus {{number_of_vcpus}} --mem {{memory_in_megabytes}} --name "{{new_vm_name}}" "{{current_vm_name}}"`
|
||||||
|
|
||||||
|
- Delete a specific image:
|
||||||
|
|
||||||
|
`krunvm delete "{{image_name}}"`
|
Loading…
Add table
Reference in a new issue