diff options
author | Alyssa Rosenzweig <alyssa@rosenzweig.io> | 2017-04-03 10:32:34 -0700 |
---|---|---|
committer | Alyssa Rosenzweig <alyssa@rosenzweig.io> | 2017-04-03 10:32:34 -0700 |
commit | 26c4759b17383087f7eba9f765dc63327d905a02 (patch) | |
tree | 031c0024b35c735a9461b1456fda5d125e7fe901 /docs/gnulinux | |
parent | d35062f125dbd44dfa1613b4e5aab34ad6bca2fc (diff) | |
download | librebootfr-26c4759b17383087f7eba9f765dc63327d905a02.tar.gz librebootfr-26c4759b17383087f7eba9f765dc63327d905a02.zip |
Global grub prompt fixes
Diffstat (limited to 'docs/gnulinux')
-rw-r--r-- | docs/gnulinux/encrypted_debian.md | 6 | ||||
-rw-r--r-- | docs/gnulinux/encrypted_parabola.md | 6 | ||||
-rw-r--r-- | docs/gnulinux/grub_boot_installer.md | 12 |
3 files changed, 12 insertions, 12 deletions
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 |