aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/bsd/freebsd.md4
-rw-r--r--docs/bsd/netbsd.md6
-rw-r--r--docs/bsd/openbsd.md6
-rw-r--r--docs/gnulinux/encrypted_debian.md6
-rw-r--r--docs/gnulinux/encrypted_parabola.md6
-rw-r--r--docs/gnulinux/grub_boot_installer.md12
6 files changed, 20 insertions, 20 deletions
diff --git a/docs/bsd/freebsd.md b/docs/bsd/freebsd.md
index f1e34619..4da37192 100644
--- a/docs/bsd/freebsd.md
+++ b/docs/bsd/freebsd.md
@@ -120,8 +120,8 @@ Installing FreeBSD without full disk encryption
Press C in GRUB to access the command line:
grub> kfreebsd (usb0,gpt3)/boot/kernel/kernel
-grub> **set FreeBSD.vfs.mountfrom=ufs:/dev/da1p3**\
-grub> **boot**
+ grub> set FreeBSD.vfs.mountfrom=ufs:/dev/da1p3\
+ grub> boot
It will start booting into the FreeBSD installer. Follow the normal
process for installing FreeBSD.
diff --git a/docs/bsd/netbsd.md b/docs/bsd/netbsd.md
index d3c44f46..cccd5263 100644
--- a/docs/bsd/netbsd.md
+++ b/docs/bsd/netbsd.md
@@ -117,7 +117,7 @@ You might have to use an external USB keyboard during the installation.
Press C to access the GRUB terminal.
grub> knetbsd -r sd0a (usb0,netbsd1)/netbsd
-grub> **boot**
+ grub> boot
It will start booting into the NetBSD installer. Follow the normal
process for installing NetBSD.
@@ -140,8 +140,8 @@ Booting
Press C in GRUB to access the command line:
-grub> **knetbsd -r wd0a (ahci0,netbsd1)/netbsd**\
-grub> **boot**
+ grub> knetbsd -r wd0a (ahci0,netbsd1)/netbsd
+ grub> boot
NetBSD will start booting. Yay!
diff --git a/docs/bsd/openbsd.md b/docs/bsd/openbsd.md
index 7169e86d..908e9a38 100644
--- a/docs/bsd/openbsd.md
+++ b/docs/bsd/openbsd.md
@@ -115,7 +115,7 @@ Installing OpenBSD without full disk encryption
Press C in GRUB to access the command line:
grub> kopenbsd (usb0,openbsd1)/6.0/amd64/bsd.rd
-grub> **boot**
+ grub> boot
It will start booting into the OpenBSD installer. Follow the normal
process for installing OpenBSD.
@@ -161,8 +161,8 @@ Booting
Press C in GRUB to access the command line:
-grub> **kopenbsd -r sd0a (ahci0,openbsd1)/bsd**\
-grub> **boot**
+ grub> kopenbsd -r sd0a (ahci0,openbsd1)/bsd
+ grub> boot
OpenBSD will start booting. Yay!
diff --git a/docs/gnulinux/encrypted_debian.md b/docs/gnulinux/encrypted_debian.md
index 763d8a08..6d964b9c 100644
--- a/docs/gnulinux/encrypted_debian.md
+++ b/docs/gnulinux/encrypted_debian.md
@@ -187,11 +187,11 @@ payload, press C to get to the command line.
Do that:\
grub> cryptomount -a
-grub> **set root='lvm/matrix-rootvol'**\
+ grub> set root='lvm/matrix-rootvol'\
grub> **linux /vmlinuz root=/dev/mapper/matrix-rootvol
cryptdevice=/dev/mapper/matrix-rootvol:root**\
-grub> **initrd /initrd.img**\
-grub> **boot**
+ grub> initrd /initrd.img
+ grub> boot
diff --git a/docs/gnulinux/encrypted_parabola.md b/docs/gnulinux/encrypted_parabola.md
index 79e41e5a..af42525b 100644
--- a/docs/gnulinux/encrypted_parabola.md
+++ b/docs/gnulinux/encrypted_parabola.md
@@ -523,11 +523,11 @@ command line. The underlined parts are optional (using those 2
underlines will boot lts kernel instead of normal).
grub> cryptomount -a
-grub> **set root='lvm/matrix-root'**\
+ grub> set root='lvm/matrix-root'\
grub> **linux /boot/vmlinuz-linux-libre-lts root=/dev/matrix/root
cryptdevice=/dev/sda1:root**\
-grub> **initrd /boot/initramfs-linux-libre-lts.img**\
-grub> **boot**\
+ grub> initrd /boot/initramfs-linux-libre-lts.img
+ grub> boot\
You could also make it load /boot/vmlinuz-linux-libre-grsec and
/boot/initramfs-linux-libre-grsec.img
diff --git a/docs/gnulinux/grub_boot_installer.md b/docs/gnulinux/grub_boot_installer.md
index c7cb7844..3275d5a4 100644
--- a/docs/gnulinux/grub_boot_installer.md
+++ b/docs/gnulinux/grub_boot_installer.md
@@ -157,11 +157,11 @@ If the ISOLINUX parser or *Search for GRUB configuration* options won't
work, then press C in GRUB to access the command line.\
grub> ls
Get the device from above output, eg (usb0). Example:\
-grub> **cat (usb0)/isolinux/isolinux.cfg**\
+ grub> cat (usb0)/isolinux/isolinux.cfg\
Either this will show the ISOLINUX menuentries for that ISO, or link to
other .cfg files, for example /isolinux/foo.cfg.\
If it did that, then you do:\
-grub> **cat (usb0)/isolinux/foo.cfg**\
+ grub> cat (usb0)/isolinux/foo.cfg
And so on, until you find the correct menuentries for ISOLINUX. **The
file */isolinux/foo.cfg* is a fictional example. Do not actually use
this example, unless you actually have that file, if it is
@@ -182,10 +182,10 @@ Now look at the ISOLINUX menuentry. It'll look like:\
append PARAMETERS initrd=/path/to/initrd MAYBE\_MORE\_PARAMETERS\
** GRUB works the same way, but in it's own way. Example GRUB
commands:\
-grub> **set root='usb0'**\
-grub> **linux /path/to/kernel PARAMETERS MAYBE\_MORE\_PARAMETERS**\
-grub> **initrd /path/to/initrd**\
-grub> **boot**\
+ grub> set root='usb0'\
+ grub> linux /path/to/kernel PARAMETERS MAYBE\_MORE\_PARAMETERS
+ grub> initrd /path/to/initrd
+ grub> boot
Note: *usb0* may be incorrect. Check the output of the *ls* command in
GRUB, to see a list of USB devices/partitions. Of course this will vary
from distro to distro. If you did all of that correctly, then it should