1.4: Setting up RootFS
For the Init script we did in 1.2 actually work,
we must make empty folders (dev,proc,sys,tmp)
mkdir -p ~/lfz/rootfs/{proc,sys,tmp,dev,bin}
But before we can move onto the next page, we still dont have our shell
(For the sake of this guide, we'll be using busybox, as it is preconfigured in the Init)
cd ~/lfz/rootfs/bin
git clone https://github.com/EXALAB/Busybox-static
cd Busybox-static
mv ./* ..
cd .. && ls
echo "Remove the versions you dont need"
Next page...