LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 12-05-2002, 05:53 AM   #16
whansard
Senior Member
 
Registered: Dec 2002
Location: Mosquitoville
Distribution: RH 6.2, Gen2, Knoppix,arch, bodhi, studio, suse, mint
Posts: 3,304

Rep: Reputation: 65

Let's have some fun with this.

cat /dev/cdrom | cdrecord -v speed=100 dev=0,0,0 -
or
dd if=/dev/cdrom | cdrecord -v speed=100 dev=0,0,0 -
or
dd if=/dev/cdrom bs=1M | cdrecord -v speed=100 dev=0,0,0 -
or for some fun cheap buffers
dd if=/dev/cdrom | dd bs=10M | dd bs=10M | dd bs=10M | cdrecord -v speed=100 dev=0,0,0 -
or if you have a big pile of ram
dd if=/dev/cdrom bs=800M | cdrecord speed=100 dev=0,0,0 -
 
Old 07-04-2003, 06:28 AM   #17
c0c0deuz
Member
 
Registered: Aug 2001
Location: Qc, Canada
Distribution: RedHat, Mandrake, FreeEOS
Posts: 336

Original Poster
Rep: Reputation: 30
when you say speed = 5000 how do i evaluate the speed if my burner is 8x?
 
Old 07-04-2003, 06:35 AM   #18
c0c0deuz
Member
 
Registered: Aug 2001
Location: Qc, Canada
Distribution: RedHat, Mandrake, FreeEOS
Posts: 336

Original Poster
Rep: Reputation: 30
man cdrecord obviously... speed=8
 
Old 07-08-2003, 09:09 AM   #19
c0c0deuz
Member
 
Registered: Aug 2001
Location: Qc, Canada
Distribution: RedHat, Mandrake, FreeEOS
Posts: 336

Original Poster
Rep: Reputation: 30
dd if=/dev/cdrom | cdrecord dev=0,0,0 speed=5000 -

it seems that then i update to my new computer, something in the previous command doesn't work...
dev=0,0,0
How can i check if those parameters are ok?
 
Old 07-08-2003, 11:11 AM   #20
c0c0deuz
Member
 
Registered: Aug 2001
Location: Qc, Canada
Distribution: RedHat, Mandrake, FreeEOS
Posts: 336

Original Poster
Rep: Reputation: 30
This is strange... i can use X-CD-Roast without any problem but cdrecord don't work.
 
Old 07-08-2003, 05:04 PM   #21
whansard
Senior Member
 
Registered: Dec 2002
Location: Mosquitoville
Distribution: RH 6.2, Gen2, Knoppix,arch, bodhi, studio, suse, mint
Posts: 3,304

Rep: Reputation: 65
xcdroast uses cdrecord or cdrdao

cdrecord --scanbus
lists the usable devices

/dev/cdrom must be your other cdrom device
 
Old 07-08-2003, 08:24 PM   #22
almostlucky
Member
 
Registered: Apr 2002
Posts: 32

Rep: Reputation: 15
Code:
cdrdao copy --device (cd-burner) --source-device (another cdrom) --on-the-fly
 
Old 07-09-2003, 12:31 PM   #23
c0c0deuz
Member
 
Registered: Aug 2001
Location: Qc, Canada
Distribution: RedHat, Mandrake, FreeEOS
Posts: 336

Original Poster
Rep: Reputation: 30
out of an image, if i try:
cdrecord dev=0,0,0 /usr/tmp/cdimage.iso
it gives me a no read access for cdimage.iso

even if i chmod 777 the file...
 
Old 07-09-2003, 03:32 PM   #24
shellcode
Member
 
Registered: May 2003
Location: Beverly Hills
Distribution: Slackware, Gentoo
Posts: 350

Rep: Reputation: 32
also because i didnt see it mentioned:
if you have ATAPI this worked for me:
cdrecord -dev=ATAPI --scanbus
and record with:
cdrecord -dev=ATAPI:0,0,0 image.iso
 
Old 07-09-2003, 03:58 PM   #25
c0c0deuz
Member
 
Registered: Aug 2001
Location: Qc, Canada
Distribution: RedHat, Mandrake, FreeEOS
Posts: 336

Original Poster
Rep: Reputation: 30
Yes,
cdrecord -dev=ATAPI --scanbus works, i have the fallowing:
0,0,0 0)HP CD-writer
cdrecord warning: controller returs wrong size for CD capability page.
0.1.0 1)E-IDE CD-ROM 50X

But for burning it doesn't work...
 
Old 07-09-2003, 04:22 PM   #26
c0c0deuz
Member
 
Registered: Aug 2001
Location: Qc, Canada
Distribution: RedHat, Mandrake, FreeEOS
Posts: 336

Original Poster
Rep: Reputation: 30
cdrecord -dev=ATAPI:0,0,0 image.iso
return:
no such file or directory. No read access for 'image.iso'
 
Old 07-09-2003, 09:32 PM   #27
shellcode
Member
 
Registered: May 2003
Location: Beverly Hills
Distribution: Slackware, Gentoo
Posts: 350

Rep: Reputation: 32
this may seem stupid but:
the image is name image.iso
try chmod 666 image.iso


and since you have atapi check out:
http://www.fokus.gmd.de/research/cc/...E/README.ATAPI


have fun!

Last edited by shellcode; 07-09-2003 at 09:34 PM.
 
Old 07-12-2003, 02:40 PM   #28
c0c0deuz
Member
 
Registered: Aug 2001
Location: Qc, Canada
Distribution: RedHat, Mandrake, FreeEOS
Posts: 336

Original Poster
Rep: Reputation: 30
After reinstalling RedHat,
dd if=/dev/cdrom | cdrecord dev=0,0,0 speed=8 -
it now works fine... :^(

However the second disk of redhat doesn't want to record correctly. It burns it until the disk is full that tell me that there in not enough place on the disk, fa;;owed by a lot of error messages.
 
Old 07-18-2003, 06:34 AM   #29
browny_amiga
Member
 
Registered: Dec 2001
Location: /mnt/UNV/Mlkway/Earth/USA/California/Silicon Valley
Distribution: Kubuntu, Debian Buster Stable, Windoze 7
Posts: 684

Rep: Reputation: 56
Lightbulb

Quote:
dd if=/dev/cdrom | cdrecord dev=0,0,0


I love that one!!! Great, this is so great! What simplicity and efficiency.

This is what surprises me more and more with linux and why I love it so much.

Are there more where that came from?
More pipe-magic? I am sure I never saw the best of them...
(I hear already somebody saying: "What? You like that? You'aint see nathing yet....this for example....."
 
Old 07-18-2003, 08:15 AM   #30
MasterC
LQ Guru
 
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613

Rep: Reputation: 69
I am sure if you plug through the "Tips and Tricks" thread that's floating around here you'll find some piping action that is amazing.

Cool
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
copying old HD to new? greenmeanie Debian 2 05-24-2005 12:44 PM
[Ubuntu GUI] Changing GUI from Gnome to wmaker MangaManiac Linux - Laptop and Netbook 8 05-08-2005 03:17 PM
KDE gui vs. Gnome GUI Curt6000 Linux - Newbie 11 11-10-2004 01:37 PM
cd copying Pedroski Fedora 10 10-16-2004 01:15 AM
Isn't Windows 95 or 98 a better GUI solution for old machines than an old Linux GUI lynchmob09 General 10 04-20-2004 01:24 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 10:02 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration