From 72166f5526eba33386abd20555238e39b7c98f9d Mon Sep 17 00:00:00 2001 From: ChuJiani <75904462+ChuJiani@users.noreply.github.com> Date: Sat, 30 Nov 2024 22:21:44 +0800 Subject: [PATCH] incus: add page (#14981) Co-authored-by: Wiktor Perskawiec --- pages/common/incus.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages/common/incus.md diff --git a/pages/common/incus.md b/pages/common/incus.md new file mode 100644 index 0000000000..d1de31ce55 --- /dev/null +++ b/pages/common/incus.md @@ -0,0 +1,36 @@ +# incus + +> Modern, secure and powerful system container and virtual machine manager. +> More information: . + +- 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:`