Created
October 18, 2014 19:08
-
-
Save bave/c5c218db8b54fa9b90fe to your computer and use it in GitHub Desktop.
customize-freebsd-live-cd
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/sh | |
#fetch freebsd-live.iso | |
mkdir hoge | |
bsdtar -C hoge -pxvf freebsd-live.iso | |
cd hoge | |
# -------- | |
# 書き換え | |
# -------- | |
mkisofs -v -b boot/cdboot -no-emul-boot -r -J -V "FREEBSD_INSTALL" -o ../freebsd_customize.iso ./ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment