> I made an Linux Distribution from Scratch following the Linux from Scratch Guide
.
The Problems i faced were dependency problems and Compiler Issues and also weird version mismatch issues, took a really lot time to sort it out and then there was Time, It took really alot of time to compile heavy packages such as GCC, LLVM, Kernel.
.
I also made an Custom Package Manager called RXPKG it has an version like symlink structure of installing packages planning to expand it more with version switches and fallbacks and also Online Package Resolving. I had also built rxbuild to build .rx packages for it as well
.
The Most Challenging part was SystemD Installation it took a really longer time to debug and think what to do along with initramfs booting into SquashFS and assinging OverlayFS to add RW in liveCD
.
I've posted the ISO Link AT : https://github.com/kwe26/ramix-lfs/releases/download/0.1-lfs.3/Ramix-20260719.iso
.
*Compatible Command to Run the ISO file Properly on a QEMU VM*
.
```bash
qemu-system-x86_64 \
-enable-kvm \
-cpu host \
-smp 2 \
-m 2G \
-cdrom Ramix-20260719.iso \
\
-display gtk,gl=on \
-device virtio-vga-gl \
\
-device qemu-xhci \
\
-netdev user,id=net0 \
-device virtio-net-pci,netdev=net0
```
.
Feel free to try it on qemu and drop some feedbacks
- 5 devlogs
- 19h