aboutsummaryrefslogtreecommitdiff
path: root/tutorial.mdwn
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2017-10-01 17:20:27 -0300
committerSilvio Rhatto <rhatto@riseup.net>2017-10-01 17:20:27 -0300
commit80071d0ed7ee04054ad244d89ec6fbe2bd3ca7ba (patch)
tree9250557d8db439de911578586f6152c44f8b3792 /tutorial.mdwn
parente39d8ff383a677635745f9ac025757718edbf397 (diff)
downloadbootless-80071d0ed7ee04054ad244d89ec6fbe2bd3ca7ba.tar.gz
bootless-80071d0ed7ee04054ad244d89ec6fbe2bd3ca7ba.tar.bz2
Change markdown extension to .md
Diffstat (limited to 'tutorial.mdwn')
-rw-r--r--tutorial.mdwn37
1 files changed, 0 insertions, 37 deletions
diff --git a/tutorial.mdwn b/tutorial.mdwn
deleted file mode 100644
index a504586..0000000
--- a/tutorial.mdwn
+++ /dev/null
@@ -1,37 +0,0 @@
-[[!meta title="Bootless: barebones tutorial"]]
-
-This tutorial helps you to build a Grub USB stick to boot your operating systems.
-
-Create basic folder structure
------------------------------
-
- mkdir -p bootless/boot/{grub,custom}
- wget https://git.fluxo.info/bootless/plain/templates/grub.cfg -O bootless/boot/grub/grub.cfg
- wget https://git.fluxo.info/bootless/plain/templates/custom.cfg -O bootless/boot/custom/custom.cfg
-
-Customize
----------
-
-Please check and customize the downloaded configuration above. The defaults:
-
-* Have examples to help customizations.
-* Allows you to load into Grub and boot your OS using the grub shell.
-* Provides two functions, `bootfde` and `bootimg` to simplify booting your encrypted system.
-
-You may also place custom images into the USB stick -- with the drawback to have to keep them up-to-date:
-
- cp -r /boot /tmp/bootless/custom/debian
-
-Create a bootable image
------------------------
-
- grub-mkrescue -o bootless.iso bootless
-
-Record the image into the USB stick
------------------------------------
-
-**WARNING!** This will irrevocably replace the contents of your USB stick. Pay
-attention to get the right device. If your USB stick is attached to your
-computer and reachable through `/dev/sdb`, you just have to run
-
- sudo dd if=bootless.iso of=/dev/sdb