Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions book.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,6 @@ exclude = [
'libressl\.org',
'gnu\.org',
'kde\.org',
'eduroam\.org',
]
user-agent = "Mozilla/5.0"
3 changes: 1 addition & 2 deletions src/config/containers-and-vms/lxc.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,7 @@ started. To avoid default configuration initialize Incus for yourself with
> on boot.

To migrate existing LXD setups to Incus, use the `lxd-to-incus` tool from the
`incus-tools` package as described
[here](https://linuxcontainers.org/incus/docs/main/howto/server_migrate_lxd/).
`incus-tools` package.

To migrate existing LXC containers to Incus, use the `lxc-to-incus` script from
the `incus-tools` package as described
Expand Down
8 changes: 4 additions & 4 deletions src/installation/guides/fde.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ Keep in mind the encrypted volume will be `/dev/sda2` on EFI systems, since
`/dev/sda1` is taken up by the EFI partition.

```
# cryptsetup luksFormat --type luks1 /dev/sda1
# cryptsetup luksFormat --type luks1 /dev/sda2

WARNING!
========
This will overwrite data on /dev/sda1 irrevocably.
This will overwrite data on /dev/sda2 irrevocably.

Are you sure? (Type uppercase yes): YES
Enter passphrase:
Expand All @@ -75,8 +75,8 @@ Once the volume is created, it needs to be opened. Replace `voidvm` with an
appropriate name. Again, this will be `/dev/sda2` on EFI systems.

```
# cryptsetup luksOpen /dev/sda1 voidvm
Enter passphrase for /dev/sda1:
# cryptsetup luksOpen /dev/sda2 voidvm
Enter passphrase for /dev/sda2:
```

Once the LUKS container is opened, create the LVM volume group using that
Expand Down