= LinuxFromScratch =

 * https://www.linuxfromscratch.org/

Linux From Scratch (LFS) is a project that provides you with step-by-step instructions for building your own custom Linux system, entirely from source code. 

 * https://www.linuxfromscratch.org/lfs/downloads/stable/LFS-BOOK-11.3-NOCHUNKS.html
 * https://www.linuxfromscratch.org/hints/downloads/files/boot-cd_easy.txt
 * https://www.linuxfromscratch.org/lfs/downloads/stable/wget-list
List of the required downloads for LFS 11.3

{{{#!highlight sh
cd ~
mkdir lfs
cd lfs
wget https://www.linuxfromscratch.org/lfs/downloads/stable/wget-list
xargs -l wget < wget-list

# wget --input-file=wget-list --continue --directory-prefix=$LFS/sources
mkdir sources
mv *patch  *xz *gz   *bz2  sources/

}}}