출처 : http://blog.kweint.com/65
2틀 동안 마운트 하고 복사하고 iso 파일만 죽어라 만들었다 ;;;
처음에는 스크립트 생각은 하지않고 . kldp 에 있는 문서를 보고 만들었었다.
근데 그게 dvd로 만들어지긴하는데 . 부팅까지도 되는데 . 설치가 안되더라 . 그래서 하우투 문서를 중심으로 여기저기 찾아봤는데 . 되는게 없는건지 내가 잘못한건지 안되더라 . 젠장.
여튼 이레저레 해서 . 찾은게 dvd제작 스크립트 . google 상단에 검색되는데 왜 첨부터 못본걸까 !
젠장 ;.;;;;;
처음 참조한 URL http://kldp.org/node/62513
스크립트 URL http://www.brandonhutchinson.com/Creating_a_RHEL_bootable_DVD_ISO.html
실행 방법
# ./mkdvdiso.sh [CD iso 이미지 경로] [DVD iso 만들어질 경로]
%% 참고 %%
cd iso 이미지를 마운트하고 복사를 할때 ~/mkrhdvd 라는 경로로 저장이 된다. 혹시 / 디렉토리에 저장이 공간이 없으면 위 스크립트 내용을 수정하여야 한다.
mkdvdiso.sh의 소스는 아래와 같다.
#!/bin/bash
# by Chris Kloiber <ckloiber@redhat.com>
# A quick hack that will create a bootable DVD iso of a Red Hat Linux
# Distribution. Feed it either a directory containing the downloaded
# iso files of a distribution, or point it at a directory containing
# the "RedHat", "isolinux", and "images" directories.
# This version only works with "isolinux" based Red Hat Linux versions.
# Lots of disk space required to work, 3X the distribution size at least.
# GPL version 2 applies. No warranties, yadda, yadda. Have fun.
if [ $# -lt 2 ]; then
echo "Usage: `basename $0` source /destination/DVD.iso"
echo ""
echo " The 'source' can be either a directory containing a single"
echo " set of isos, or an exploded tree like an ftp site."
exit 1
fi
cleanup() {
[ ${LOOP:=/tmp/loop} = "/" ] && echo "LOOP mount point = \/, dying!" && exit
[ -d $LOOP ] && rm -rf $LOOP
[ ${DVD:=~/mkrhdvd} = "/" ] && echo "DVD data location is \/, dying!" && exit
[ -d $DVD ] && rm -rf $DVD
}
cleanup
mkdir -p $LOOP
mkdir -p $DVD
if [ !`ls $1/*.iso 2>&1>/dev/null ; echo $?` ]; then
echo "Found ISO CD images…"
CDS=`expr 0`
DISKS="1"
for f in `ls $1/*.iso`; do
mount -o loop $f $LOOP
cp -av $LOOP/* $DVD
if [ -f $LOOP/.discinfo ]; then
cp -av $LOOP/.discinfo $DVD
CDS=`expr $CDS + 1`
if [ $CDS != 1 ] ; then
DISKS=`echo ${DISKS},${CDS}`
fi
fi
umount $LOOP
done
if [ -e $DVD/.discinfo ]; then
awk '{ if ( NR == 4 ) { print disks } else { print ; } }' disks="$DISKS" $DVD/.discinfo > $DVD/.discinfo.new
mv $DVD/.discinfo.new $DVD/.discinfo
fi
else
echo "Found FTP-like tree…"
cp -av $1/* $DVD
[ -e $1/.discinfo ] && cp -av $1/.discinfo $DVD
fi
rm -rf $DVD/isolinux/boot.cat
find $DVD -name TRANS.TBL | xargs rm -f
cd $DVD
mkisofs -J -R -v -T -o $2 -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table .
/usr/lib/anaconda-runtime/implantisomd5 --force $2
cleanup
echo ""
echo "Process Complete!"
echo ""