diff --git a/docs/lesson/boot-process-bootloader.html b/docs/lesson/boot-process-bootloader.html index 4f9b5b03b..035d9027c 100644 --- a/docs/lesson/boot-process-bootloader.html +++ b/docs/lesson/boot-process-bootloader.html @@ -76,13 +76,13 @@

Boot Process: Bootloader

The most common bootloader for Linux is GRUB, you are most likely using it on your system. There are many other bootloaders that you can use such as LILO, efilinux, coreboot, SYSLINUX and more. However, we will just be working with GRUB as our bootloader.

So we know that the bootloader's main goal is to load up the kernel, but where does it find the kernel? To find it, we will need to look at our kernel parameters. The parameters can be found by going into the GRUB menu on startup using the 'e' key. If you don't have GRUB no worries, we'll go through the boot parameters that you will see:

+ diff --git a/docs/lesson/copy-cp-command.html b/docs/lesson/copy-cp-command.html index 5b173225f..42b35b5d5 100644 --- a/docs/lesson/copy-cp-command.html +++ b/docs/lesson/copy-cp-command.html @@ -140,7 +140,8 @@

cp (Copy)

Let’s start making some copies of these files. Much like copy and pasting files in other operating systems, the shell gives us an even simpler way of doing that.

$ cp mycoolfile /home/pete/Documents/cooldocs

mycoolfile is the file you want to copy and /home/pete/Documents/cooldocs is where you are copying the file to.

-

You can copy multiple files and directories as well as use wildcards. A wildcard is a character that can be substituted for a pattern based selection, giving you more flexibility with searches. You can use wildcards in every command for more flexibility.

+

You can copy multiple files and directories as well as use wildcards. A wildcard is a character that can be substituted for a pattern based selection, giving you more flexibility with searches.

+

Wildcards are not a feature of cp, they are a feature of the shell. Before cp ever runs, the shell replaces the pattern with the list of matching filenames, so cp only ever sees ordinary filenames. That means wildcards work the same way with almost any command, and it also means the shell expands them against the files that exist right now.