SCIENTIFIC-LINUX-USERS Archives

October 2006

SCIENTIFIC-LINUX-USERS@LISTSERV.FNAL.GOV

Options: Use Monospaced Font
Show Text Part by Default
Show All Mail Headers

Message: [<< First] [< Prev] [Next >] [Last >>]
Topic: [<< First] [< Prev] [Next >] [Last >>]
Author: [<< First] [< Prev] [Next >] [Last >>]

Print Reply
Subject:
From:
Art Wildman <[log in to unmask]>
Reply To:
Date:
Sun, 15 Oct 2006 05:11:08 -0400
Content-Type:
multipart/mixed
Parts/Attachments:
text/plain (925 bytes) , dvd_isoburn.sh (1664 bytes)
Troy Dawson wrote:
> Hi,
> I just made a how-to from the info in the mailling list
>
> https://www.scientificlinux.org/documentation/howto/build.dvd.image
>
> Please let me know if it looks ok, or needs any changes.
>
>

Thanks & Looks good Troy. Very simple & straight forward. One gotcha to 
watch for... Some of the other scripts and references in the links talk 
of (problems) generating proper checksums for the 'linux mediacheck' 
process during pre-install. The fedora wiki has a good detail of the 
steps needed to download, check sha1sums & burn disks...
http://fedoraproject.org/wiki/Distribution/Download

I'd would be nice if the script was in SVN (could be updated) and 
possibly combined the DVD burn process too, but that is simple enough. 
Attached is a simple script I used last to save time, but mainly to help 
me remember the dvd device numbers and syntax for dvdrecord or growisofs 
(I don't burn disks very often).

-HTH Art@JAX




#!/bin/bash # dvd_isoburn.sh - burn dvd from .iso #https://www.scientificlinux.org/download/ #https://www.scientificlinux.org/documentation/howto/build.dvd.image #http://fedoraproject.org/wiki/Distribution/Download #http://yolinux.com/TUTORIALS/LinuxTutorialCDBurn.html #http://www.redhat.com/docs/manuals/enterprise/RHEL-4-Manual/step-guide/s1-disks-cdrom.html #http://www.troubleshooters.com/linux/coasterless_dvd.htm #http://crashrecovery.org/oss-dvd/HOWTO-ossdvd.html # # How to burn DVD iso-Installation-Linux Forums #http://www.linuxforums.org/forum/installation/35772-how-burn-dvd-iso.html # Under Fedora Core 3, this works nicely for me: # #growisofs -dvd-compat -Z /dev/hdc=FC4-i386-DVD.iso #where FC4-i386-DVD.iso is your ISO image, #and /dev/hdc is your DVD-burner device. #(try dmesg | grep -i dvd to identify your device) # #You might also try dvdrecord: #dvdrecord -dao dev=ATA:1,0,0 FC4-i386-DVD.iso #where you need to replace 1,0,0 with the appropriate numbers for your burner #(do a dvdrecord --scanbus to see what you should use.) # #---------------------------------------------------------------------- # dvdrecord -scanbus #INFO: dvdrecord's functionality is now replaced by cdrecord #scsibus1: # 1,0,0 100) 'LITE-ON ' 'DVDRW SOHW-1673S' 'JS02' Removable CD-ROM #... # # dmesg | grep -i dvd #hdc: LITE-ON DVDRW SOHW-1673S, ATAPI CD/DVD-ROM drive #hdc: ATAPI 48X DVD-ROM DVD-R CD-R/RW drive, 2048kB Cache, UDMA(33) # # ls -l /dev/dvd #lrwxrwxrwx 1 root root 3 Jun 18 02:38 /dev/dvd -> hdc #---------------------------------------------------------------------- ISOPATH="/opt/exports/Downloads/SLinux/SL43" growisofs -dvd-compat -Z /dev/dvd=$ISOPATH/SL.43.050806.i386.dvd.iso

ATOM RSS1 RSS2