From bc9753a54e7456ea1f7be3418e39d7e79fdf529c Mon Sep 17 00:00:00 2001 From: mayfrost Date: Tue, 13 Mar 2018 17:32:26 +0000 Subject: [PATCH] Update INITIATION.md --- INITIATION.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/INITIATION.md b/INITIATION.md index bbf3f5f..0b7c8b9 100644 --- a/INITIATION.md +++ b/INITIATION.md @@ -14,6 +14,7 @@ __NOTE__: 1. [START](#start) 2. [PARTITIONING](#partitioning) 3. [FILESYSTEM](#filesystem) +4. [CREATING (AND MOUNTING) MAIN DIRECTORIES](#creating-and-mounting-main-directories) 4. [SETUP](#setup) 4.1. [CHROOT](#chroot) 4.2. [CHANGE NETWORK INTERFACES](#change-network-interfaces) @@ -63,7 +64,8 @@ Look into each one and decide for your use case. Next are the commands used for * Make boot filesystem according to supported bootloader or just "_mkfs.vfat_" if on UEFI. `mkfs. /dev/sda1` -## SETUP +## CREATING (AND MOUNTING) MAIN DIRECTORIES +The two most important are the root directory ("_/_") and the boot directory ("_/boot_"), both of which need at the end of this step to be mounted. However, if you are an experienced user you may have created other partitions for other directories like "_/home_" or "_var_", those need to be mounted too by the end of this step. * Make a directory for the new root directory. `mkdir /mnt/drive` * Mount the new root directory. @@ -76,6 +78,8 @@ Look into each one and decide for your use case. Next are the commands used for `mount /dev/sda1 /mnt/drive/boot/efi` * Create other directories under the new root directory. `mkdir -p /mnt/drive/{dev,sys,proc,tmp,usr/src,var}` + +## SETUP * On __CRUX__ run "_setup_", and if on UEFI during the setup select grub2-efi (if using GRUB 2), efibootmgr, and elfutils from opt (only select core, and say yes when you're asked if you want to select individual packages). And if you are not using LILO de-select it from core. `setup` * On __Source Mage GNU/Linux__ download and uncompress the tarball inside the new root directory.