* Re: Burn Mulitple cd's at once?
2006-01-25 18:32 Todd Patton
@ 2006-01-25 21:02 ` Ray Olszewski
2006-01-25 21:12 ` Todd Patton
2006-01-30 13:58 ` chuck gelm
2006-02-01 13:20 ` chuck gelm
2 siblings, 1 reply; 7+ messages in thread
From: Ray Olszewski @ 2006-01-25 21:02 UTC (permalink / raw)
To: linux-newbie
Todd Patton wrote:
> Does anyone know if this is possible in Linux. I can do it in M$ Win
> with Nero but the NEroLinux left this feature off. Basically I want to
> burn 4 copies of a folder or image at the same time. Thank you for any
> responses.
Could I ask you to explain what you want to do it a bit more detail?
Do you mean you have 4 CD burners in your workstation and want to burn
the same image to all four of them simultaneously? If so, the only
obstacle to doing that is the speeds of everything ... if the hardware
can keep up, you can do it with cdrecord (and probably other apps too).
If you mean something else ... could you describe it more exactly?
I don't use Nero (on Windows) or NeroLinux ... on Linux, I burn my CDs
with cdrecord and mkisofs, and on Windows, I use whatever app comes
free with the drive (which, by the luck of the draw, has never been the
"lite" version of Nero) ... so perhaps your question will mean more to
someone who does. If you, you might just want to ignore this and wait
for someone else to respond.
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Burn Mulitple cd's at once?
2006-01-25 21:02 ` Ray Olszewski
@ 2006-01-25 21:12 ` Todd Patton
0 siblings, 0 replies; 7+ messages in thread
From: Todd Patton @ 2006-01-25 21:12 UTC (permalink / raw)
To: linux-newbie
I was unaware that it could be done using cd burn. I always have to
choose a recoder when using the gui front end and never see an option to
choose all recorders like in Nero.
I often have to make 20-30 copies of cd's for proposals, and was looking
to do four at a time. Speed wise, I might bring it down to 2 burners on
two machines as not to bog down the ide channels. But basically I just
want to create a basic bare bones disk duplicator. Thanks for the response!
Ray Olszewski wrote:
> Todd Patton wrote:
>
>> Does anyone know if this is possible in Linux. I can do it in M$ Win
>> with Nero but the NEroLinux left this feature off. Basically I want to
>> burn 4 copies of a folder or image at the same time. Thank you for any
>> responses.
>
>
> Could I ask you to explain what you want to do it a bit more detail?
>
> Do you mean you have 4 CD burners in your workstation and want to burn
> the same image to all four of them simultaneously? If so, the only
> obstacle to doing that is the speeds of everything ... if the hardware
> can keep up, you can do it with cdrecord (and probably other apps too).
>
> If you mean something else ... could you describe it more exactly?
>
> I don't use Nero (on Windows) or NeroLinux ... on Linux, I burn my CDs
> with cdrecord and mkisofs, and on Windows, I use whatever app comes
> free with the drive (which, by the luck of the draw, has never been the
> "lite" version of Nero) ... so perhaps your question will mean more to
> someone who does. If you, you might just want to ignore this and wait
> for someone else to respond.
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.linux-learn.org/faqs
>
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Burn Mulitple cd's at once?
2006-01-25 18:32 Todd Patton
2006-01-25 21:02 ` Ray Olszewski
@ 2006-01-30 13:58 ` chuck gelm
2006-01-31 2:49 ` chuck gelm
2006-02-01 13:20 ` chuck gelm
2 siblings, 1 reply; 7+ messages in thread
From: chuck gelm @ 2006-01-30 13:58 UTC (permalink / raw)
To: Todd Patton; +Cc: linux-newbie
Todd Patton wrote:
> Does anyone know if this is possible in Linux. I can do it in M$ Win
> with Nero but the NEroLinux left this feature off. Basically I want to
> burn 4 copies of a folder or image at the same time. Thank you for any
> responses.
Hi, Todd:
Assuming that your 4 cd burners are configured as SCSI or SCSI emulation
and are channel 0, id 0, lun 0,1,2,3:
#!/bin/bash
#
# /usr/local/bin/burncd.sh
#
eject
cat /usr/local/bin/burncd.sh
echo ""
echo " First argument is <$1>."
echo "Second argument is <$2>."
echo ""
if [ -n $1 ] ; then
if [ -n $2 ] ; then
cdrecord -v dev=0,0,0 fs=64M speed=$2 driveropts=burnproof gracetime=2
$1 &
cdrecord -v dev=0,0,1 fs=64M speed=$2 driveropts=burnproof gracetime=2
$1 &
cdrecord -v dev=0,0,2 fs=64M speed=$2 driveropts=burnproof gracetime=2
$1 &
cdrecord -v dev=0,0,3 fs=64M speed=$2 driveropts=burnproof gracetime=2 $1
else
echo "Second argument is burn speed [1 - 52] and must not be null."
fi
else
echo ""
echo "First argument is filename.ext and must not be null."
echo ""
fi
eject
mount /mnt/cdrom
ls -l /mnt/cdrom
umount /mnt/cdrom
echo $1
badblocks -vc 256 /dev/cdrom
eject
HTH, Chuck
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Burn Mulitple cd's at once?
2006-01-30 13:58 ` chuck gelm
@ 2006-01-31 2:49 ` chuck gelm
0 siblings, 0 replies; 7+ messages in thread
From: chuck gelm @ 2006-01-31 2:49 UTC (permalink / raw)
To: chuck gelm; +Cc: Todd Patton, linux-newbie
Chuck I keep getting an error on the last line syntax error: unexpected end
of file
I tried adding "exit" to the script but it didn't change the error. -Just
moved the line number down one.
The arguments print correctly,
First argument is filename
Second argument is speed
<Those are only echo statements. They do not indicate that anything happend.
It does indicate that you entered
"burncd.sh filename speed"
Whereas you should have entered something like
"burncd.sh badabing.iso 52"
:-| >
however there is no action on the cd drives.
I checked the numbers with cdrecord -scanbus and made the approriate
changes.
<Show the output of "cdrecord -scanbus".>
Any ideas? Fedora 4
/Todd
Hi, Todd:
You must be root or 'sudo root' :-|
Show the exact command.
What is the output of
cdrecord -version
cerecord -scanbus
There are some linefeeds in your post that should not be in the script.
They may have been generated by my email viewer. :-|
"cdrecord -v dev=0,0,0 fs=64M speed=$2 driveropts=burnproof gracetime=2 $1 &"
is one line.
What are you entering as the first argument?
What are you entering as the secord argument?
You can leave out the speed argument from the script as I think cdrecord
will attempt to burn at the maximum speed reported from the CDRW device.
You can leave out 'gracetime'. This will result in the default wait time
before burn.
If burncd.sh is in your path, your command should look something like this
burncd.sh yabadabadoo.iso 52
HTH, Chuck
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Burn Mulitple cd's at once?
2006-01-25 18:32 Todd Patton
2006-01-25 21:02 ` Ray Olszewski
2006-01-30 13:58 ` chuck gelm
@ 2006-02-01 13:20 ` chuck gelm
2 siblings, 0 replies; 7+ messages in thread
From: chuck gelm @ 2006-02-01 13:20 UTC (permalink / raw)
To: Todd Patton; +Cc: linux-newbie
Todd Patton wrote:
> Does anyone know if this is possible in Linux. I can do it in M$ Win
> with Nero but the NEroLinux left this feature off. Basically I want to
> burn 4 copies of a folder or image at the same time. Thank you for any
> responses.
>
George Ewing wrote:
>Is Linux able to utilize multiple CD or DVD drives to burn multiple copies of
>the same iso file at the same time?
>
>If so, how?
>
>Thanks
>
>George
>
>
Hi, Todd:
(Your query was very similar to a recent one on the linux-sig@dma.org
mail list.
Subject: [Linux-SIG] multiple CD burner)
Yes. I did it last night. Here is what I have and what I did.
Slackware v10.2, kernel 2.4.31, (cdrecord seems to be a soft link to
Cdrecord-Clone v2.01 by J. Schilling) Linux sg driver version 3.1.25.
I have a CD-RW(52x) in /dev/hdc and a DVD-RW(CD-40x) in /dev/hdd.
Both use SCSI emulation initiated in lilo.conf as
append="hdc=ide-scsi hdd=ide-scsi".
cdrecord -scanbus
0,0,0 CD-RW
0,1,0 DVD-RW
ln -s /dev/sr0 /mnt/cdrom
ln -s /dev/sr1 /mnt/dvd
/#!/bin/bash/
/#/
/# /usr/local/bin/burn2xcd.sh/
/#/
eject /dev/sr0
eject /dev/sr1
*cat* /usr/local/bin/burn2xcd.sh
**** *cdrecord* -eject dev=0,0,0 fs=64M driveropts=burnproof gracetime=2 $1 *>* /home/sr0.txt *&*
*cdrecord* -eject dev=0,1,0 fs=64M driveropts=burnproof gracetime=2 $1 *>* /home/sr1.txt
//
# end /usr/local/bin/burn2xcd.sh
First burn was from a 618MB file over my 100 MB network with 'speed=24'
specified on both commands. It took nearly 20 minutes with a reported
speed of 3.6x. :-|
Next, I removed the speed specification and copied the ISO file to a
local drive.
'burn2xcd.sh' then displayed burning the CD at 48x and the (CD in the)
DVD at 40x .
Although the CD burn was started in the first line and the DVD drive in
the second and
the CD speed was 48x and the DVD 40x, the DVD finished first. :-|
I did not find the exact time elapsed, but it seemed to be in the 5-10
minute range.
To decrease the elapsed time of the media burn, one might put each
media writer
on a separate controller (I have some Maxtor/Promise ATA-100 and ATA-133
IDE controllers) and put copies of the ISO images on separate drives on
separate
controllers. Best might be putting the ISO image(s) in a RAMDISK! ;-)
If you simply want to make as many copies as you have controllers at
one time
and come back hours later, just leave of the "&" and let the commands run
one at a time.
If you are to copy as fast as possible and stay with the computer to
exchange media,
then perhaps multiple consoles, one for each drive, with the ISO image
in RAMDISK,
and the writers on separate controllers.
HTH, Chuck
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 7+ messages in thread