Diff for "ManualFullSystemEncryption/DetailedProcessPrepareInstall"


Differences between revisions 3 and 5 (spanning 2 versions)
Revision 3 as of 2018-08-12 17:29:28
Size: 2871
Editor: paddy-landau
Comment:
Revision 5 as of 2018-08-21 16:26:26
Size: 1906
Editor: paddy-landau
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
## page was renamed from ManualFullSystemEncryption/DetailedProcessSetUpLVM
Line 3: Line 4:
#title Manual Full System Encryption (with Extras): Detailed Process: Set up LVM #title Manual Full System Encryption (with Extras): Detailed Process: Prepare for the Installer
Line 13: Line 14:
The system partition and, if you have one, the data partition have been encrypted and unlocked. They appear to the system to be clear space, so they still need (logical) partitions and file systems.

You will use the LVM (logical volume manager) to do this, and then you will create the relevant file systems (i.e. format them).
You will download and run the script (application) that will:
 * Prepare your partitions for the installer
 * Run the installer
 * Fix problems created by the installer
Line 18: Line 20:
= Set up partitions for LVM = = Download the application =
Line 21: Line 23:
Enter the following commands to prepare the unlocked system partition for LVM.
{{{
sudo pvcreate /dev/mapper/system
sudo vgcreate system /dev/mapper/system
 * Open the terminal (`Ctrl`+`T`, or use the menu).

 * Copy-and-paste the following command to download the application. Warning: This looks like two lines because of the documentation formatting, but it's in fact just one line. Copy the entire thing and paste it into your terminal.
 {{{
sudo wget --no-verbose --output-document=/usr/local/sbin/encryptinstallation https://www.dropbox.com/s/dmqnzqs1bbp6dm9/encryptinstallation?dl=1
Line 27: Line 30:
Only if you have a separate data partition, enter the following commands to prepare the unlocked data partition for LVM.
{{{
sudo pvcreate /dev/mapper/data
sudo vgcreate data /dev/mapper/data
 * Copy-and-paste the following command to enable the application to run.
 {{{
sudo chmod +x /usr/local/sbin/encryptinstallation
Line 34: Line 36:
= Partition the partition = = Run the application =
Line 37: Line 39:
At this point, LVM is controlling the encrypted partitions, and it will therefore control the virtual partitioning (known as logical volumes). Here, we finally create the logical volumes (pseudo-partitions) for the system. In a moment, you will start the application. When you do so:
 * It will ask you some questions.
 * It will prepare your system for the Installer.
 * It will start the Installer.
 * When it starts the Installer, you will need to [[../DetailedProcessInstallUbuntu|open the instructions]] (I'll remind you).
Line 39: Line 45:
In this section, you can ignore anything about swap if you will '''never''' use hibernation. So…
Line 41: Line 47:
Enter the following commands, but take note of the following change.
 * In this example, the size of the swap is 4096MB (note that it's just "M" in the command, not "MB"). However, you must change 4096 to whatever size you calculated in the [[../OverviewPartitionPreparation|Partition Overview]].
Still in the terminal, enter this command:
Line 44: Line 49:
sudo lvcreate --size=512M --name=boot system
sudo lvcreate --size=4096M --name=swap system
sudo lvcreate --extents=100%FREE --name=root system
encryptinstallation
Line 49: Line 52:
Only if you have a separate data partition, enter the following command.
{{{
sudo lvcreate --extents=100%FREE --name=home data
}}}
Answer the questions, and when the Installer starts, [[../DetailedProcessInstallUbuntu|open the instructions]].
Line 54: Line 54:

= Format the partitions =


 format::
 :: Create a file system on a partition

It is time to create the file systems on your logical volumes (virtual partitions).

Open a terminal and enter these commands. If you aren't using swap, skip the first line.

{{{
sudo mkswap --label=swap /dev/mapper/system-swap
sudo mkfs.ext4 -L boot /dev/mapper/system-boot
sudo mkfs.ext4 -L root /dev/mapper/system-root
sudo mkfs.ext4 -L home /dev/mapper/data-home # Only if you have a separate data partition
}}}


= Summary =


The system is ready for the Ubuntu Installer.

 * Close the terminal.
 * Return to the [[../DetailedProcess#The_stages|detailed process]] and continue from there.

This document belongs to Manual Full System Encryption (with Extras): Detailed Process.

1. Explanation

You will download and run the script (application) that will:

  • Prepare your partitions for the installer
  • Run the installer
  • Fix problems created by the installer

2. Download the application

  • Open the terminal (Ctrl+T, or use the menu).

  • Copy-and-paste the following command to download the application. Warning: This looks like two lines because of the documentation formatting, but it's in fact just one line. Copy the entire thing and paste it into your terminal.
    sudo wget --no-verbose --output-document=/usr/local/sbin/encryptinstallation https://www.dropbox.com/s/dmqnzqs1bbp6dm9/encryptinstallation?dl=1
  • Copy-and-paste the following command to enable the application to run.
    sudo chmod +x /usr/local/sbin/encryptinstallation

3. Run the application

In a moment, you will start the application. When you do so:

  • It will ask you some questions.
  • It will prepare your system for the Installer.
  • It will start the Installer.
  • When it starts the Installer, you will need to open the instructions (I'll remind you).

So…

Still in the terminal, enter this command:

encryptinstallation

Answer the questions, and when the Installer starts, open the instructions.


ManualFullSystemEncryption/DetailedProcessPrepareInstall (last edited 2020-10-13 12:27:15 by paddy-landau)