Skip to content

Commit

Permalink
Добавлено: Boxes
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegShchavelev committed Sep 23, 2023
1 parent 1519838 commit a939267
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
1 change: 1 addition & 0 deletions .vitepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ export default defineConfig({
text: 'Установка и обновление программ',
items: [
{ text: 'Blender', link: '/blender' },
{ text: 'Boxes', link: '/boxes'},
{ text: 'Chromium', link: '/chromium' },
{ text: 'Codium', link: '/codium' },
{ text: 'Console', link: '/console' },
Expand Down
46 changes: 46 additions & 0 deletions docs/boxes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Boxes

Выберите операционную систему и позвольте Boxes загрузить и установить ее для вас на виртуальной машине. Создавайте виртуальные машины из образов операционной системы несколькими щелчками мыши.

## Установка из репозитория

**Boxes** можно установить любым привычным и удобным способом:

::: code-group

```shell[apt-get]
su -
apt-get update
apt-get install gnone-boxes
```
```shell[epm]
epm -i gnome-boxes
```

:::

## Подготовка к использованию Boxes

Для запуска необходим установить и запустить набор виртуализации

::: code-group

```shell[apt-get]
su -
apt-get update
apt-get install libvirt libvirt-kvm
```
```shell[epm]
epm -i libvirt libvirt-kvm
```

:::

```shell
su -
gpasswd -a xxxx vmusers
systemctl enable libvirtd
systemctl start libvirtd
```

`xxxx` — имя вашего пользователя.

0 comments on commit a939267

Please sign in to comment.