Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mr-bossman/f1c100s_debian
a demonstration of getting Debian working on 32Mb of ram
https://github.com/mr-bossman/f1c100s_debian
Last synced: 4 days ago
JSON representation
a demonstration of getting Debian working on 32Mb of ram
- Host: GitHub
- URL: https://github.com/mr-bossman/f1c100s_debian
- Owner: Mr-Bossman
- Created: 2020-08-25T18:09:40.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-01-16T20:15:47.000Z (almost 3 years ago)
- Last Synced: 2024-10-30T12:12:14.781Z (about 2 months ago)
- Language: Shell
- Homepage:
- Size: 62.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
A thing i made to build the image without build root so you can add other root file systems like Debian
```
./download.sh./make.sh
mkdir output
mkdir output/p1
mkdir output/p2sudo debootstrap --foreign --variant=minbase --components=main,non-free --include=systemd-sysv,cryptsetup,console-setup --arch armel buster output/rootfs http://deb.debian.org/debian/
sudo cp *.deb output/rootfs/
./pack_sd.sh
#wait till the pause and then do the following
#to chroot into rootfssudo cp /usr/bin/qemu-arm-static output/rootfs/usr/bin/
sudo chroot output/rootfs/ /usr/bin/qemu-arm-static /bin/bash -i
/debootstrap/debootstrap --second-stage
apt install -y dialog makedev nano tasksel
echo "0.0 0 0.0
0
LOCAL" > /etc/adjtime
export LANGUAGE=en_US.UTF-8
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
locale-gen en_US.UTF-8apt install -y locales
tasksel install standard
dpkg -i /*.deb
passwd
exit#continue
sudo dd if=output/sdcard.img of=/dev/sdX bs=4M status=progress conv=fsync oflag=sync; sudo sync
```