Last active
April 25, 2021 10:37
-
-
Save fballiano/357810cf7eb70f09d87e to your computer and use it in GitHub Desktop.
Ubuntu Mini Remix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# user: ubuntu pass: just hit ENTER | |
apt-get install vim ubuntu-defaults-builder live-build uck syslinux-utils coreutils | |
# open /usr/share/livecd-rootfs/live-build/auto/config and add PROJECT=base where there are all the variables | |
ubuntu-defaults-template ubuntu-defaults-umr | |
ubuntu-defaults-image --package ubuntu-defaults-umr_0.1_all.deb | |
mv binary.hybrid.iso ubuntu-mini-remix-15.10-amd64.iso | |
md5sum ubuntu-mini-remix-15.10-amd64.iso>ubuntu-mini-remix-15.10-amd64.iso.md5 | |
mv ubuntu-mini-remix-15.10-amd64.iso* 15.10/ | |
lb clean; rm -rf auto cache local | |
ubuntu-defaults-image --package ubuntu-defaults-umr_0.1_all.deb --arch i386 | |
mv binary.hybrid.iso ubuntu-mini-remix-15.10-i386.iso | |
md5sum ubuntu-mini-remix-15.10-i386.iso>ubuntu-mini-remix-15.10-i386.iso.md5 | |
mv ubuntu-mini-remix-15.10-i386.iso* 15.10/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'll take a look at those page and check if livecd-rootfs has been updated in the meanwhile but for sure I wouldn't fork them, I wouldn't never have time to maintain it, plus I don't want to work on something which is released without any kind of documentation and prone to undocumented extreme changes between every release.