From 98c0b4952cc19ea284d06f0def2d0fced31fbc3f Mon Sep 17 00:00:00 2001 From: Ivan Davidov Date: Sat, 11 Jun 2016 20:54:05 +0300 Subject: [PATCH] Update README.md --- README.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 29d2f7ef8..187ba3b32 100644 --- a/README.md +++ b/README.md @@ -3,14 +3,11 @@ One script which generates fully functional live Linux ISO image with minimal ef The script below uses **Linux kernel 3.15.6** and **BusyBox 1.22.1**. If you are using [Ubuntu](http://ubuntu.com) or [Linux Mint](http://linuxmint.com), you should be able to resolve all build dependencies by executing the following command: -``` -sudo apt-get install wget bc build-essential gawk syslinux genisoimage -``` +```sudo apt-get install wget bc build-essential gawk syslinux genisoimage``` After that simply run the below script. In the end you should have a bootable ISO image named `minimal_linux_live.iso` in the same directory where you executed the script. -``` -rm -rf work +```rm -rf work mkdir work cd work rm -f linux-3.15.6.tar.xz @@ -63,7 +60,6 @@ rm -f ../../minimal_linux_live.iso cd ../kernel/linux-3.15.6 make isoimage FDINITRD=../../rootfs.cpio.gz cp arch/x86/boot/image.iso ../../../minimal_linux_live.iso -cd ../../.. -``` +cd ../../..``` Note that this produces very small live Linux OS with almost no useful functionality (apart from working shell) and no proper network support. The network support has been handled properly in the [Minimal Linux Live](http://github.com/ivandavidov/minimal) project which is extensively documented and more feature rich, yet still produces very small live Linux ISO image.