1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-23 13:35:26 +02:00

incus: add page (#14981)

Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
This commit is contained in:
ChuJiani 2024-11-30 22:21:44 +08:00 committed by GitHub
parent d9d6f9899e
commit 72166f5526
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

36
pages/common/incus.md Normal file
View file

@ -0,0 +1,36 @@
# incus
> Modern, secure and powerful system container and virtual machine manager.
> More information: <https://linuxcontainers.org/incus/docs/main>.
- List all containers and virtual machines (both running and stopped):
`incus list`
- Create a container from an image, with a custom name:
`incus create {{image}} {{container_name}}`
- Start or stop an existing container:
`incus {{start|stop}} {{container_name}}`
- Open a shell inside an already running container:
`incus shell {{container_name}}`
- Remove a stopped container:
`incus delete {{container_name}}`
- Pull an image from an image repository (remote) to local:
`incus copy {{remote}}:{{image}} local:{{custom_image_name}}`
- List all available images in the official `images:` remote:
`incus image list images:`
- List all images already downloaded to the `local:` remote:
`incus image list local:`