Update documentation

This commit is contained in:
Marcos Vallim 2019-06-29 21:12:15 -03:00
parent 83a83c1bd2
commit 9e2ec8d71c
1 changed files with 7 additions and 0 deletions

View File

@ -552,3 +552,10 @@ sudo umount $HOME/live-ubuntu-from-scratch/chroot/run
/boot/grub/bios.img=isolinux/bios.img \
/EFI/efiboot.img=isolinux/efiboot.img
```
## Make a bootable USB image
It is simple and easy, using "dd"
```
dd if=ubuntu-from-scratch.iso of=<device> bs=4M ; sync
```