32 lines
645 B
Markdown
32 lines
645 B
Markdown
|
|
# Fedora incus
|
|
|
|
## Create
|
|
```bash
|
|
incus launch images:fedora/44 fc-test -d eth0,hwaddr=00:16:3e:00:09:XX -d eth0,host_name=vethXX
|
|
# incus config device set fc-test eth0 hwaddr 00:16:3e:00:09:XX
|
|
```
|
|
|
|
## Enter
|
|
```bash
|
|
incus shell cont-name
|
|
```
|
|
|
|
## Add fedora-cmp167.repo
|
|
```bash
|
|
curl -s http://repo.cmp/repo/fedora/$(rpm -E %fedora)/fedora-cmp167.tar.xz | ( cd / && tar Jxvf - )
|
|
dnf install cmp-repo
|
|
```
|
|
|
|
## Install packages
|
|
```bash
|
|
dnf install bc git jq mc openssh-server tmux net-tools ncurses-term cmp-profile
|
|
systemctl disable --now sshd.socket && systemctl enable --now sshd
|
|
|
|
```
|
|
|
|
## Setup
|
|
```bash
|
|
timedatectl set-timezone Europe/Moscow
|
|
```
|