21 lines
348 B
Markdown
21 lines
348 B
Markdown
|
|
# Fedora incus
|
|
|
|
## Create
|
|
```bash
|
|
incus launch images:fedora/44 fc-test -d eth0,hwaddr=00:16:3e:00:09:66 -d eth0,host_name=veth66
|
|
```
|
|
|
|
## Enter
|
|
```bash
|
|
incus shell cont-name
|
|
```
|
|
|
|
## Install packages
|
|
```bash
|
|
dnf install bc git jq mc openssh-server tmux net-tools cmp-profile
|
|
systemctl disable --now sshd.socket && systemctl enable --now sshd
|
|
|
|
```
|
|
|