Skip to content

Instantly share code, notes, and snippets.

View frroossst's full-sized avatar
👨‍💻
SyntaxError

Adhyan H. Patel frroossst

👨‍💻
SyntaxError
View GitHub Profile
@bluedragon1221
bluedragon1221 / min-linux.md
Last active October 21, 2025 16:57
Create a minimal linux from scratch with initramfs and busybox.
@cfstras
cfstras / -Build static versions of binutils, for example ld, gprof, nm, strip, objdump, ar, strings; with mingw or on *nix
Last active July 29, 2025 05:58
Build static versions of binutils, for example ld, gprof, nm, strip, objdump, ar, strings; with mingw or on *nix
See the bash script below. :)
Tested on debian bookworm-slim (`docker pull debian:bookworm-slim`).
### Prerequisites
```bash
apt update
apt install -y build-essential wget bison
```