https://github.com/pkgforge-dev/util-linux-static
Fork: https://github.com/VHSgunzo/util-linux-static
https://github.com/pkgforge-dev/util-linux-static
Last synced: about 1 month ago
JSON representation
Fork: https://github.com/VHSgunzo/util-linux-static
- Host: GitHub
- URL: https://github.com/pkgforge-dev/util-linux-static
- Owner: pkgforge-dev
- License: mit
- Created: 2023-11-05T10:10:33.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-12-01T22:45:27.000Z (4 months ago)
- Last Synced: 2025-12-04T13:14:18.082Z (4 months ago)
- Language: Shell
- Size: 20.5 KB
- Stars: 5
- Watchers: 0
- Forks: 4
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [util-linux-static](https://github.com/VHSgunzo/util-linux-static/releases/latest)
* Statically compiled [util-linux](https://www.kernel.org/pub/linux/utils/util-linux/), A set of system utilities for Linux for use in [runimage](https://github.com/VHSgunzo/runimage)
* Check [Releases](https://github.com/VHSgunzo/util-linux-static/releases/latest) for `x86_64-Linux` & `aarch64-Linux` PreCompiled Binaries: https://github.com/VHSgunzo/util-linux-static/releases/latest
- #### To Build it on your Own:
```bash
!#The script assumes Ubuntu with sudo installed (preferably configured as passwordless sudo)
git clone --filter="blob:none" "https://github.com/VHSgunzo/util-linux-static.git"
cd "./util-linux-static" && chmod +x "./build_on_nix.sh" && "./build_on_nix.sh"
!# If you don't have Ubuntu, It is also possible to build this on a Ubuntu-Chroot or Docker
!# But you may run into: error: unable to load seccomp BPF program: Invalid argument
!# To fix this:
sed 's/bash -s -- install linux --init none --no-confirm/bash -s -- install linux --init none --extra-conf "filter-syscalls = false" --no-confirm/g' -i "./build_on_nix.sh"
!# And then re-run the script
!# More Details: https://github.com/DeterminateSystems/nix-installer/issues/324
```