Update install.md
This commit is contained in:
parent
d571d63141
commit
5b17866297
17
install.md
17
install.md
|
@ -12,19 +12,19 @@ $ lsblk
|
|||
$ gdisk /dev/sda
|
||||
|
||||
**Create GPT and EFI-partion.**
|
||||
_# Creates new GPT-partition table._
|
||||
_Creates new GPT-partition table._
|
||||
$ o
|
||||
_# Accept._
|
||||
_Accept._
|
||||
$ y
|
||||
_# Create a new partition, accept default partition number 1 and first sector._
|
||||
_Create a new partition, accept default partition number 1 and first sector._
|
||||
$ n
|
||||
$ y
|
||||
$ y
|
||||
_# Enter partition size (second sector), 512 MB should be plenty for /boot and accept._
|
||||
_Enter partition size (second sector), 512 MB should be plenty for /boot and accept._
|
||||
$ +512M
|
||||
_# Mark as EFI._
|
||||
_Mark as EFI._
|
||||
$ ef00
|
||||
_# New main partition, accept all the following using "y"._
|
||||
_New main partition, accept all the following using "y"._
|
||||
$ n
|
||||
|
||||
**Print and check your partitions. There should be a 512 MiB EFI system partition and a Linux filesystem filling up the rest of the space**
|
||||
|
@ -32,11 +32,12 @@ $ p
|
|||
|
||||
**Write partitions to device.**
|
||||
$ w
|
||||
_# Accept._
|
||||
_Accept._
|
||||
$ y
|
||||
|
||||
**Encrypt primary partition.**
|
||||
$ cryptsetup -c aes-xts-plain -y -s 512 luksFormat /dev/sda2
|
||||
|
||||
**Confirm by tryping "YES".**
|
||||
$ YES
|
||||
|
||||
|
@ -101,6 +102,8 @@ _Uncomment your language, e.g. de_DE.UTF-8 UTF-8 (and en_US.UTF-8)._
|
|||
$ locale-gen
|
||||
_The uncommented languages should appear followed by "done"._
|
||||
|
||||
echo KEYMAP=de-latin1 > /etc/vconsole.conf
|
||||
|
||||
**Add necessary HOOKS and MODULES.**
|
||||
$ nano /etc/mkinitcpio.conf
|
||||
|
||||
|
|
Loading…
Reference in New Issue