diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2016-07-07 08:49:49 -0300 | 
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2016-07-07 08:49:49 -0300 | 
| commit | ab8048b50e568a6414327baf4b9fa2279a18b9b4 (patch) | |
| tree | ae141791ac6e976df550ca65694c7807715dd186 | |
| parent | 322d6a50fcc5e9e208072ffdc8fb79d7eb4cecb3 (diff) | |
| download | bootless-ab8048b50e568a6414327baf4b9fa2279a18b9b4.tar.gz bootless-ab8048b50e568a6414327baf4b9fa2279a18b9b4.tar.bz2 | |
Fixes tutorial
| -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 | 
