mirror of
https://github.com/retspen/webvirtcloud
synced 2024-10-31 19:44:16 +00:00
Added info from #18 to README
This commit is contained in:
parent
3d0493537f
commit
e4e79d3d4b
1 changed files with 19 additions and 0 deletions
19
README.md
19
README.md
|
@ -273,6 +273,25 @@ You need to put cloud public key into authorized keys on the compute node. Simpl
|
||||||
sudo -u www-data ssh-copy-id root@compute1
|
sudo -u www-data ssh-copy-id root@compute1
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Host SMBIOS information is not available
|
||||||
|
|
||||||
|
If you see warning
|
||||||
|
```
|
||||||
|
Unsupported configuration: Host SMBIOS information is not available
|
||||||
|
```
|
||||||
|
Then you need to install `dmidecode` package on your host using your package manager and restart libvirt daemon.
|
||||||
|
|
||||||
|
Debian/Ubuntu like:
|
||||||
|
```
|
||||||
|
$ sudo apt-get install dmidecode
|
||||||
|
$ sudo service libvirt-bin restart
|
||||||
|
```
|
||||||
|
Arch Linux
|
||||||
|
```
|
||||||
|
$ sudo pacman -S dmidecode
|
||||||
|
$ systemctl restart libvirtd
|
||||||
|
```
|
||||||
|
|
||||||
### Cloud-init
|
### Cloud-init
|
||||||
Currently supports only root ssh authorized keys and hostname. Example configuration of the cloud-init client follows.
|
Currently supports only root ssh authorized keys and hostname. Example configuration of the cloud-init client follows.
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue