summaryrefslogtreecommitdiffstats
path: root/docs/gnulinux
diff options
context:
space:
mode:
Diffstat (limited to 'docs/gnulinux')
-rw-r--r--docs/gnulinux/configuring_parabola.html6
-rw-r--r--docs/gnulinux/encrypted_trisquel.html2
-rw-r--r--docs/gnulinux/grub_cbfs.html14
3 files changed, 11 insertions, 11 deletions
diff --git a/docs/gnulinux/configuring_parabola.html b/docs/gnulinux/configuring_parabola.html
index 270d2bb..e3c9239 100644
--- a/docs/gnulinux/configuring_parabola.html
+++ b/docs/gnulinux/configuring_parabola.html
@@ -176,7 +176,7 @@
and more maintenance work.
</p>
<p>
- The Arch forum can also be useful, if others have the same issue as you (if you encounter issues, that is). Parabola's
+ The Arch forum can also be useful, if others have the same issue as you (if you encounter issues, that is). The <i>Parabola</i>
IRC channel (#parabola on freenode) can also help you.
</p>
<p>
@@ -400,7 +400,7 @@
</i>
</p>
<p>
- You'll note that I set both lines; the 2nd line is for IPv6. More and more ISP's are providing this now (mine does)
+ You'll note that I set both lines; the 2nd line is for IPv6. More and more ISPs are providing this now (mine does)
so it's good to be forward-thinking here.
</p>
<p>
@@ -475,7 +475,7 @@
<b>This is important, so make sure to read them!</b>
</p>
<p>
- Install smartmontools (can be used to check smart data - note: HDD's use non-free firmware inside, it's transparent to you
+ Install smartmontools (it can be used to check smart data. HDDs use non-free firmware inside, but it's transparent to you
but the smart data comes from it. Therefore, don't rely on it too much):<br/>
# <b>pacman -S smartmontools</b><br/>
Read <a href="https://wiki.archlinux.org/index.php/S.M.A.R.T.">https://wiki.archlinux.org/index.php/S.M.A.R.T.</a> to learn how to use it.
diff --git a/docs/gnulinux/encrypted_trisquel.html b/docs/gnulinux/encrypted_trisquel.html
index 1cca4f0..7f80272 100644
--- a/docs/gnulinux/encrypted_trisquel.html
+++ b/docs/gnulinux/encrypted_trisquel.html
@@ -21,7 +21,7 @@
Libreboot uses the GRUB <a href="http://www.coreboot.org/Payloads#GRUB_2">payload</a>
by default, which means that the GRUB configuration file
(where your GRUB menu comes from) is stored directly alongside libreboot
- and it's GRUB payload executable, inside
+ and its GRUB payload executable, inside
the flash chip. In context, this means that installing distributions and managing them
is handled slightly differently compared to traditional BIOS systems.
</p>
diff --git a/docs/gnulinux/grub_cbfs.html b/docs/gnulinux/grub_cbfs.html
index 8b5a8a6..5fb46dc 100644
--- a/docs/gnulinux/grub_cbfs.html
+++ b/docs/gnulinux/grub_cbfs.html
@@ -31,7 +31,7 @@
filesystem inside called CBFS (coreboot filesystem). A utility called 'cbfstool'
allows you to change the contents of the ROM image. In this case, libreboot is configured
such that the 'grub.cfg' and 'grubtest.cfg' files exists directly inside CBFS instead of
- inside the GRUB payload's 'memdisk' (which is itself stored in CBFS).
+ inside the GRUB payload 'memdisk' (which is itself stored in CBFS).
</p>
<p>
@@ -102,7 +102,7 @@
<h2 id="which_rom">Which ROM image should I use?</h2>
<p>
- You can work directly with one of the ROM's already included in the libreboot ROM archives. For the purpose of
+ You can work directly with one of the ROM images already included in the libreboot ROM archives. For the purpose of
this tutorial it is assumed that your ROM is named <i>libreboot.rom</i> so please make sure to adapt.
</p>
@@ -120,7 +120,7 @@
<p>
If you currently have flashed a ROM image from an older version, it is recommended to update first:
- basically, modify one of the latest ROM's and then flash it.
+ basically, modify one of the latest ROM images and then flash it.
</p>
<p>
@@ -191,8 +191,8 @@
Yours might be different. In GRUB terms, sda means ahci0. 1 means msdos1, or gpt1, depending
on whether I am using MBR or GPT partitioning. Thus, /dev/sda1 is GRUB is (ahci0,msdos1) or
(ahci0,gpt1). In my case, I use MBR partitioning so it's (ahci0,msdos1).
- 'msdos' is GRUB's name simply because this partitioning type is traditionally used by MS-DOS.
- It doesn't mean you have a proprietary OS.
+ 'msdos' is a GRUB name simply because this partitioning type is traditionally used by MS-DOS.
+ It doesn't mean that you have a proprietary OS.
</p>
<p>
@@ -209,14 +209,14 @@
</p>
<p>
- For the GRUB payload's grubtest.cfg (in the 'Load Operating System' menu entry), we therefore have (in this example):<br/>
+ For the GRUB payload grubtest.cfg (in the 'Load Operating System' menu entry), we therefore have (in this example):<br/>
<b>set root='ahci0,msdos1'</b><br/>
<b>linux /vmlinuz root=UUID=3a008e14-4871-497b-95e5-fb180f277951</b><br/>
<b>initrd /initrd.img</b>
</p>
<p>
- Optionally, you can convert the UUID to it's real device name, for example /dev/sda1 in this case.
+ Optionally, you can convert the UUID to its real device name, for example /dev/sda1 in this case.
sdX naming isn't very reliable, though, which is why UUID is used for most distributions.
</p>