* Re: a simple way to burn DVDs
2005-05-11 19:46 a simple way to burn DVDs William Stanard
@ 2005-05-11 20:06 ` Ray Olszewski
2005-05-11 21:02 ` Hal MacArgle
` (2 subsequent siblings)
3 siblings, 0 replies; 8+ messages in thread
From: Ray Olszewski @ 2005-05-11 20:06 UTC (permalink / raw)
To: linux-newbie
William Stanard wrote:
> I've purchased and correctly installed (it reads data CDs just fine,
> mounted with "mount /dev/cdrom /mnt/cdrom" ) a HI-VAL DVD_RW/_R rewritable
> drive in my Compaq Proliant 800 server running Red Hat 8.0 (ver 2.4.18-14
> ) in preparation to setting up the drive to do my backup chores. There
> doesn't, however, seem to be a simple application as part of this
> particular Red Hat build that writes to DVDs. Am I missing something, or
> do I have to purchase, for instance, NeroLINUX or some other utility for
> writing data to DVDs?
I don't know Red Hat 8.0 specifically, but the usual way to burn a CD
under Linux involves two steps:
1. Create an image of the CD using (typically) mkisofs .
2. Burn theimage to a CD using (typically) cdrecord .
Although I wrote "CD" above, since that I what I actually burn here, my
understanding is that under Linux, a data (iso9660) DVD is just a "big"
CD, and modern versions (possibly more modern than RH 8.0, though) of
mkisofs and cdrecord can handle DVD-size burns just fine.
Besides that ... older kernels require you to use scsi emulation to
access CD ... and, I imagine, DVD ... drives to burn discs. I think that
was still true of 2.4.18 (I know it was backwhen I used it). You
probably need either to run a newer kernel or use scsi emulation with
this one ... your "reads data CDs just fine" doesn't really tell us, or
you, if the drive is "correctly installed" for its role as a burner.
-
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] 8+ messages in thread* Re: a simple way to burn DVDs
2005-05-11 19:46 a simple way to burn DVDs William Stanard
2005-05-11 20:06 ` Ray Olszewski
@ 2005-05-11 21:02 ` Hal MacArgle
2005-05-12 6:26 ` Yawar Amin
2005-07-19 20:53 ` Mr Mike
3 siblings, 0 replies; 8+ messages in thread
From: Hal MacArgle @ 2005-05-11 21:02 UTC (permalink / raw)
To: linux-newbie
Greetings: "Simple" - hmmmmmm. <grin>
Google; sth like "dvdrtools", and--well far from simple.. FWIW..
On 05-11, William Stanard wrote:
> I've purchased and correctly installed (it reads data CDs just fine,
> mounted with "mount /dev/cdrom /mnt/cdrom" ) a HI-VAL DVD_RW/_R rewritable
> drive in my Compaq Proliant 800 server running Red Hat 8.0 (ver 2.4.18-14
> ) in preparation to setting up the drive to do my backup chores. There
> doesn't, however, seem to be a simple application as part of this
> particular Red Hat build that writes to DVDs. Am I missing something, or
> do I have to purchase, for instance, NeroLINUX or some other utility for
> writing data to DVDs?
>
> Bill Stanard
--
Hal - in Terra Alta, WV - Slackware GNU/Linux 9.0 (2.4.20-1)
.
-
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] 8+ messages in thread* Re: a simple way to burn DVDs
2005-05-11 19:46 a simple way to burn DVDs William Stanard
2005-05-11 20:06 ` Ray Olszewski
2005-05-11 21:02 ` Hal MacArgle
@ 2005-05-12 6:26 ` Yawar Amin
2005-07-19 20:53 ` Mr Mike
3 siblings, 0 replies; 8+ messages in thread
From: Yawar Amin @ 2005-05-12 6:26 UTC (permalink / raw)
To: linux-newbie
On 5/12/05, William Stanard <wstanard@palmertrinity.org> wrote:
> I've purchased and correctly installed (it reads data CDs just fine,
> mounted with "mount /dev/cdrom /mnt/cdrom" ) a HI-VAL DVD_RW/_R rewritable
> drive in my Compaq Proliant 800 server running Red Hat 8.0 (ver 2.4.18-14
> ) in preparation to setting up the drive to do my backup chores. There
> doesn't, however, seem to be a simple application as part of this
> particular Red Hat build that writes to DVDs. Am I missing something, or
> do I have to purchase, for instance, NeroLINUX or some other utility for
> writing data to DVDs?
As root, run the command
cdrecord -scanbus
I'm running Fedora Core 3, and this is what the above command outputs
for me (might be a bit mangled because of word wrapping):
# cdrecord -scanbus
Cdrecord-Clone 2.01-dvd (i686-pc-linux-gnu) Copyright (C) 1995-2004
Jörg Schilling
Note: This version is an unofficial (modified) version with DVD support
Note: and therefore may have bugs that are not present in the original.
Note: Please send bug reports or support requests to
http://bugzilla.redhat.com/bugzilla
Note: The author of cdrecord should not be bothered with problems in
this version.
scsidev: 'ATA'
devname: 'ATA'
scsibus: -2 target: -2 lun: -2
Linux sg driver version: 3.5.27
Using libscg version 'schily-0.8'.
cdrecord: Warning: using inofficial libscg transport code version
(schily - Red Hat-scsi-linux-sg.c-1.83-RH '@(#)scsi-linux-sg.c
1.83 04/05/20 Copyright 1997 J. Schilling').
scsibus1:
1,0,0 100) 'QSI ' 'CDRW/DVD SBW242C' 'UQ81' Removable CD-ROM
1,1,0 101) *
1,2,0 102) *
1,3,0 103) *
1,4,0 104) *
1,5,0 105) *
1,6,0 106) *
1,7,0 107) *
It has detected my CD-RW DVD-ROM drive correctly, so I can burn ISO
files with the command
cdrecord dev=1,0,0 file.iso
See the cdrecord(1) man page for details.
Also, the output shows that at least from FC3 onwards the (modified)
version of cdrecord can write DVDs. If the RH8 version can't, you may
want to upgrade it to the latest version from Red Hat. But that may
turn out to be quite another problem (what with possibly changing
kernel and other package dependencies, etc.).
You may prefer a simple GUI tool to do the job. Nero is an option,
like you said, but you probably want to explore the free software
avenue first. The best-known (and with good reason) tool is K3B, but
it requires KDE libraries to be installed (which I'm mentioning since
RH8 installs GNOME by default). And it uses cdrecord to do the actual
writing, so cdrecord needs to be set up first.
--
Yawar
-
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] 8+ messages in thread* Re: a simple way to burn DVDs
2005-05-11 19:46 a simple way to burn DVDs William Stanard
` (2 preceding siblings ...)
2005-05-12 6:26 ` Yawar Amin
@ 2005-07-19 20:53 ` Mr Mike
[not found] ` <efc7f7d0050719183755503fb1@mail.gmail.com>
3 siblings, 1 reply; 8+ messages in thread
From: Mr Mike @ 2005-07-19 20:53 UTC (permalink / raw)
To: linux-newbie
On Wed, 11 May 2005 15:46:06 -0400, William Stanard wrote:
> I've purchased and correctly installed (it reads data CDs just fine,
> mounted with "mount /dev/cdrom /mnt/cdrom" ) a HI-VAL DVD_RW/_R rewritable
> drive in my Compaq Proliant 800 server running Red Hat 8.0 (ver 2.4.18-14
> ) in preparation to setting up the drive to do my backup chores. There
> doesn't, however, seem to be a simple application as part of this
> particular Red Hat build that writes to DVDs. Am I missing something, or
> do I have to purchase, for instance, NeroLINUX or some other utility for
> writing data to DVDs?
>
> Bill Stanard
I haven't seen ANYONE answer you. Your question is direct and to the
point and I absolutely hate it when users answer questions with vague and
inadaquate replies that dont' even come close to what information your
looking for.
The answer to your question, as I see it, is YES... If you want to use KDE or
GNOME then you can use (k3b in KDE) or (Gnomebaker in GNOME). Both do a very
good job of working with DVD's of all types. (ie DVD-R DVD+R DVD+-RW etc..)
as well as all the CD types.
XCDroast is another generic non/gui specific app but it requires a 'nonfree' plugin
type thingie 'pro-cdrecord ??' so I don't use it. Besides, the version I installed
only looked for SCSI device and I have IDE optical drives.. They offered help on
how to impliment ide-scsi emulation but I didn't want to do that and didn't think I
should have to. If I have to make concessions just to use it, then I'll go somewhere
else.. :-)
Hope this helps..
mr mike..
>
>
> -
> 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] 8+ messages in thread