#!/bin/sh ##=====================================================================## ## Copyright (c) 2001-2002 Stephen Zarkos. All rights reserved. ## Obsid@Sentry.net ## ## Please see file: COPYRIGHT for further copyright information and ## disclaimer. Or online at http://www.SentryFirewall.com/files/COPYRIGHT ##=====================================================================## ## File: record-cd.sh ## Simple script to make CD from iso image. ## Please see file: http://www.SentryFirewall.com/files/COPYRIGHT for ## important copyright and disclaimer information. iso_image="sentrycd.iso" iso_location="/" dev_line="0,0,0" ## Gotten from the command 'cdrecord -scanbus' speed="8" ## Record the CD echo -n "Make sure there is a CD in the drive, press to continue... " read blar ## Record the CD cdrecord -v -eject speed=$speed dev=$dev_line -data $iso_location/$iso_image ## _EOF_ ##