This commit is contained in:
parent
af6dc2e3d5
commit
963cf34ddc
@ -38,9 +38,9 @@ then connect remotely with : *ssh*
|
|||||||
# update zsys-setup
|
# update zsys-setup
|
||||||
to enable zfs encryption and create a swap partition right sized for hibernation.
|
to enable zfs encryption and create a swap partition right sized for hibernation.
|
||||||
|
|
||||||
SWAPSIZE=$(cat /proc/meminfo | grep MemTotal | awk -F' ' '{print $2}')
|
## enable zfs encyption on rpool
|
||||||
|
|
||||||
## enable zfs encyption
|
bpool remain unencrypt.
|
||||||
|
|
||||||
~~~
|
~~~
|
||||||
Boot the Ubuntu 20.04 Desktop installer/live CD.
|
Boot the Ubuntu 20.04 Desktop installer/live CD.
|
||||||
@ -61,17 +61,20 @@ Run ubiquity to start the installer and install as normal, selecting “Use enti
|
|||||||
## create swap partition to permit Hibernate
|
## create swap partition to permit Hibernate
|
||||||
|
|
||||||
~~~
|
~~~
|
||||||
# Convert to MiB to align the size on the size of a block
|
# Convert to MiB to align the size on the size of a block
|
||||||
SWAPVOLSIZE=$(( SWAPSIZE / 1024 / 1024 ))
|
SWAPVOLSIZE=$(( SWAPSIZE / 1024 / 1024 ))
|
||||||
|
|
||||||
prepare_target "${TARGET}"
|
MEMSIZE=$(cat /proc/meminfo | grep MemTotal | awk -F' ' '{print $2}')
|
||||||
SWAPVOLSIZE=$(( 32768 ))
|
SWAPVOLSIZE=$(( MEMSIZE / 1024 ))
|
||||||
format_disk "${DISK}" "${PARTBASE}" "${PARTESP}" "${PARTBPOOL}" "${PARTRPOOL}" "${SWAPVOLSIZE}"
|
|
||||||
init_zfs "${TARGET}" "${DISK}${PARTBASE}${PARTBPOOL}" "${DISK}${PARTBASE}${PARTRPOOL}"
|
|
||||||
init_system_partitions "${TARGET}" "${DISK}${PARTBASE}1" "${DISK}${PARTBASE}${PARTESP}"
|
|
||||||
|
|
||||||
|
prepare_target "${TARGET}"
|
||||||
|
format_disk "${DISK}" "${PARTBASE}" "${PARTESP}" "${PARTBPOOL}" "${PARTRPOOL}" "${SWAPVOLSIZE}"
|
||||||
|
init_zfs "${TARGET}" "${DISK}${PARTBASE}${PARTBPOOL}" "${DISK}${PARTBASE}${PARTRPOOL}"
|
||||||
|
init_system_partitions "${TARGET}" "${DISK}${PARTBASE}1" "${DISK}${PARTBASE}${PARTESP}"
|
||||||
~~~
|
~~~
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
source : [Linsomniac's Articles - Encrypting ZFS on Ubuntu 20.04](https://linsomniac.gitlab.io/post/2020-04-09-ubuntu-2004-encrypted-zfs/)
|
source : [Linsomniac's Articles - Encrypting ZFS on Ubuntu 20.04](https://linsomniac.gitlab.io/post/2020-04-09-ubuntu-2004-encrypted-zfs/)
|
||||||
|
|
||||||
boot after press esc then F12
|
boot after press esc then F12
|
||||||
|
Loading…
Reference in New Issue
Block a user