added a description for no storage pool found

This commit is contained in:
gurkenhabicht 2023-11-18 19:41:39 +01:00
parent a3e5859f60
commit 8a12374c52
1 changed files with 21 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# LXC # LXC
## Privilege Escalation ## Privilege Escalation
@ -8,17 +8,23 @@
* User has to be in `lxd` group, not necessarily `sudo`. * User has to be in `lxd` group, not necessarily `sudo`.
#### Usage #### Usage
* Clone and build
* Clone and build
```sh ```sh
git clone https://github.com/saghul/lxd-alpine-builder.git git clone https://github.com/saghul/lxd-alpine-builder.git
cd lxd-alpine-builde && sudo && ./build alpine cd lxd-alpine-builde && sudo && ./build alpine
``` ```
* Upload to target * Upload to target
* Import alpine image * Import alpine image
```sh ```sh
lxc image import ./alpine-v3.14-x86_64-20210920_2132.tar.gz --alias myimage lxc image import ./alpine-v3.14-x86_64-20210920_2132.tar.gz --alias myimage
``` ```
* Prepare image * Prepare image
```sh ```sh
lxc image list lxc image list
lxc init myimage ignite -c security.privileged=true lxc init myimage ignite -c security.privileged=true
@ -26,7 +32,20 @@ lxc config device add ignite mydevice disk source=/ path=/mnt/root recursive=tru
lxc start ignite lxc start ignite
lxc exec ignite /bin/sh lxc exec ignite /bin/sh
``` ```
* Host `/` is mounted at `/mnt/root` inside the container * Host `/` is mounted at `/mnt/root` inside the container
* `root` directory is at `/mnt/root/root` * `root` directory is at `/mnt/root/root`
## Errors
If you see errors like this
```sh
Error: No storage pool found. Please create a new storage pool
```
Remember to initialize the lxd via
```sh
lxd init
```