diff options
-rw-r--r-- | tutorial.mdwn | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/tutorial.mdwn b/tutorial.mdwn index a47efef..89a49b3 100644 --- a/tutorial.mdwn +++ b/tutorial.mdwn @@ -5,10 +5,9 @@ This tutorial helps you to build a Grub USB stick to boot your operating systems Create basic folder structure ----------------------------- - mkdir -p /tmp/bootless/{grub,custom} - ln -s . /tmp/bootless/boot - wget https://git.fluxo.info/bootless/plain/templates/grub.cfg -O /tmp/bootless/grub/grub.cfg - wget https://git.fluxo.info/bootless/plain/templates/custom.cfg -O /tmp/bootless/grub/custom.cfg + 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 Edit the config files --------------------- @@ -70,7 +69,7 @@ The supplied configuration provides two functions, `bootfde` and `bootimg` that Create a bootable image ----------------------- - grub-mkrescue -o output.img /tmp/bootless + grub-mkrescue -o bootless.iso bootless Record the image into the USB stick ----------------------------------- @@ -80,4 +79,4 @@ Record the image into the 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=output.img of=/dev/sdb + sudo dd if=bootless.iso of=/dev/sdb |