mirror of
https://github.com/IanDarwin/OpenLookCDROM.git
synced 2026-01-13 07:20:21 +00:00
15 lines
233 B
Bash
Executable File
15 lines
233 B
Bash
Executable File
#!/bin/ksh -ue
|
|
|
|
[ -w / ] || { echo "Must run $0 as root" >&2
|
|
exit 1
|
|
}
|
|
|
|
DISK_IMAGE=~ian/olcd_image.fs
|
|
CD_BURNER="/dev/rcd1c:1,5,0"
|
|
|
|
set -x
|
|
|
|
# SIZE=`isosize $DISK_IAMGE`
|
|
|
|
cdrecord -v speed=1 dev=${CD_BURNER} -isosize ${DISK_IMAGE}
|