/ft_linux

Primary LanguageShell

This project will create a custom linux distribution, we will use Virtualbox.

Create a virtual machine and install ubuntu on it, allocate 35 gigabytes. Allocate a second storage disk with 40 gigabytes and add it to the virtual machine. This storage will contains ur custom linux image.

Virtualbox storage

Once your VM is correctly setup, start the ubuntu VM and execute this script :

sudo apt update
sudo apt install -y curl
curl -o ~/start.sh https://raw.githubusercontent.com/jb-perrier/ft_linux/main/start.sh
sudo chmod +x ~/start.sh
bash ~/start.sh

Useful commands :

# show available disks
sudo fdisk -l