mirror of
https://github.com/YunoHost/ynh-dev.git
synced 2024-09-03 20:05:59 +02:00
Update doc when incus-admin group is not present
This commit is contained in:
parent
36542bd79a
commit
f45302e7bc
1 changed files with 14 additions and 1 deletions
15
README.md
15
README.md
|
@ -118,7 +118,7 @@ Incus can be installed on Debian 13 or Ubuntu 24.04 with the following command:
|
||||||
apt install incus
|
apt install incus
|
||||||
```
|
```
|
||||||
|
|
||||||
If you have an older distribution, you need to add the Zabbly repositry to your package manager.
|
If you have an older distribution, you need to add the Zabbly repository to your package manager.
|
||||||
To do so please follow the installation guide that you can find on <https://github.com/zabbly/incus>.
|
To do so please follow the installation guide that you can find on <https://github.com/zabbly/incus>.
|
||||||
|
|
||||||
You then need to add yourself in the incus-admin group, to run incus without sudo every time:
|
You then need to add yourself in the incus-admin group, to run incus without sudo every time:
|
||||||
|
@ -127,6 +127,19 @@ You then need to add yourself in the incus-admin group, to run incus without sud
|
||||||
sudo usermod -a -G incus-admin $(whoami)
|
sudo usermod -a -G incus-admin $(whoami)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Now the group incus-admin should be present when you type the command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
groups
|
||||||
|
```
|
||||||
|
|
||||||
|
If not you need to create the group first:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
newgrp incus-admin
|
||||||
|
sudo usermod -a -G incus-admin $(whoami)
|
||||||
|
```
|
||||||
|
|
||||||
Then you shall initialize Incus which will ask you a bunch of question. Usually
|
Then you shall initialize Incus which will ask you a bunch of question. Usually
|
||||||
answering the default (just pressing enter) to all questions is fine.
|
answering the default (just pressing enter) to all questions is fine.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue