MiniBox is an alternative for Busybox and Toybox. MiniBox yet does not support all the featues that are supported by Busybox and Toybox because this is still under development.
Note: It is assumed that you are using linux system which has gcc, g++, cmake, ccmake and make packages installed. It is also assumed that you already have previous knowledge of using terminal and basic linux commands.
-
Download the source code from github
git clone https://github.com/ayuzzh/MiniBox
. -
Change the directory into root of the repository
cd MiniBox
. -
Configure the project using cmake
cmake -S . -B build
. -
Change the directory to build directory
cd build
. -
Now its finale step of compiling MiniBox
make -j$(nproc --ignore=1)
. Now the executable is found in build. Execute it by typing./minibox
.