Page 1 of 2 12 LastLast
Results 1 to 10 of 17

Thread: How to copy burned CDs?

  1. #1
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    Long Island, NY, USA
    Posts
    1,256

    How to copy burned CDs?

    I have a really fast burner at the office. I used to download ISOs there and burn KNOPPIX CDs all the time. Now my office has blocked a ton of sites so I can't download most ISOs anymore.

    Can I burn one CD at home and make my own ISO at work? Can I use 'cat' or 'dd' for this?

    For example, how about:

    Code:
    dd if=/dev/cdrom of=/dev/hda2/home/misterG/my.iso
    Any other ideas out there?

    TIA,
    AJG[/code]

  2. #2
    Senior Member registered user
    Join Date
    Mar 2004
    Posts
    1,516
    yes iirc both those would work, or burn the iso on a CD or even better DVD.

  3. #3
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    USA, IL
    Posts
    1,041

    Re: How to copy burned CDs?

    --Your syntax is a bit off, but you have the general idea. I use ' cat ' for this; it's less resource-intensive than dd.

    ' time cat /dev/cdrom >/mnt/blah/dir/blah.iso '

    Quote Originally Posted by A. Jorge Garcia
    I have a really fast burner at the office. I used to download ISOs there and burn KNOPPIX CDs all the time. Now my office has blocked a ton of sites so I can't download most ISOs anymore.

    Can I burn one CD at home and make my own ISO at work? Can I use 'cat' or 'dd' for this?

    For example, how about:

    dd if=/dev/cdrom of=/dev/hda2/home/dad/my.iso

    Any other ideas out there?

    TIA,
    AJG

  4. #4
    Senior Member registered user
    Join Date
    Mar 2004
    Posts
    1,516
    no the syntax is right for dd.

  5. #5
    Administrator Site Admin-
    Join Date
    Apr 2003
    Location
    USA
    Posts
    5,441

    Re: How to copy burned CDs?

    Quote Originally Posted by A. Jorge Garcia
    I have a really fast burner at the office......
    I have a really fast burner at home.

    But I always burn my CDs at 4x. I've found that at higher speeds things are just not as reliable. One would certainly expect a burn on a drive by a good name drive manufacturer who advertises speeds like 52x to actually work, but the sad truth is they don't. There is an awful lot of error recovery information in a typical CD (so much so that you can store 800 megs of data on a 700 meg CD if you write in mode 2 and bypass the error recovery information!), and this error recovery often hides the problems of writing at high speeds, but there are real and serious problems.

    I didn't want to believe this myself. But I became a convert when I burned several SVCD videos in mode 2. There were just way to many noticable and serious video problems. And I found that the problems "went away" if I burned the CDs at a 4x. Further, we have seen a lot of booting problem with Knoppix that have been determined to be the result of burning the CD too fast. Why? I dodn't know! One would expect the drive's error correction to kick in (the Knoppix disk is burnt with error correction data, not in mode 2), but either it doesn't or the errors are so extreme that there are too many to be corrected. Whatever ther reason, the fix is simple: burn at a slow speed. Here are just a couple of threads where high speed burn problems have been confirmed, but there are many more: http://www.knoppix.net/forum/viewtopic.php?t=17788 and
    http://www.knoppix.net/forum/viewtop...?p=78925#78925 .

    I burn a lot of CDs. But I've learned the hard way that the ones I burnt at high speed are just not reliable. And I expect they will be even less reliable as they age. My advice is to burn at a slow speed. Yea, this is bad news if you want to crank out hundreds of CDs (but many pressing services will accept orders for as few as 100 and give you a better quality CD), but for one or two it only makes sense to burn slowly. And this also says a lot about what to expect if you buy a burnt CD from someone cranking them out to sell on e-bay; do you think they are taking the time to burn them slowly to get the best results for the user, or quickly so they can make money in the shortest amount of time?

  6. #6
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    Long Island, NY, USA
    Posts
    1,256
    Wow, thanx for all the input on this question already!

    OK, so:

    Code:
    dd if=/dev/cdrom of=/dev/hda2/home/misterG/my.iso
    or

    Code:
    cat /dev/cdrom > /mnt/hda2/home/misterG/my.iso
    should both work, but cat is quicker?

    Also, would I get an exact copy of the original ISO that I can check with the original md5sum?

    BTW, Dave, I remember when you taught me about cat many moons ago.... Thank you!

    Oh, and Harry, I don't ever burn at the max speed. At home I burn at 8x and at work I burn at 32x. The home burner is a 16x and the work one is much faster than 32x (sorry I forget exactly what the exact speed is at the moment).

    TIA,
    AJG

    PS: I burn a lot of CDs for my students and for ebay and I always burn slow and test my CDs before distributing them to anyone.

  7. #7
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    USA, IL
    Posts
    1,041
    --No, it's not.

    --Look at it closely:

    of=/dev/hda2/home/misterG/my.iso

    --If he types that in verbatim, it will give him an error - " dd: opening `/dev/blah/blah': No such file or directory " -- because /dev/hda2/home... does not exist.

    --Devices don't have subdirectories, filesystems do.

    Quote Originally Posted by OErjan
    no the syntax is right for dd.

  8. #8
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    USA, IL
    Posts
    1,041

    Re: How to copy burned CDs?

    --Slightly OT, but when a loaner audio CD from the library ** EXPLODED ** in a hand-me-down 52X burner, I junked it. I refuse to buy anything 52x - or even 48x - anymore. 32x is as high as I'm willing to go. Even went out of my way to find a "slower" DVD burner; and my cdrecord sessions are limited to 24x.

    --No problems so far. But good media definitely helps (Taiyo Yuden highly recommended.)

    Quote Originally Posted by Harry Kuhman
    Quote Originally Posted by A. Jorge Garcia
    I have a really fast burner at the office......
    I have a really fast burner at home.

    But I always burn my CDs at 4x. I've found that at higher speeds things are just not as reliable. One would certainly expect a burn on a drive by a good name drive manufacturer who advertises speeds like 52x to actually work, but the sad truth is they don't. There is an awful lot of error recovery information in a typical CD (so much so that you can store 800 megs of data on a 700 meg CD if you write in mode 2 and bypass the error recovery information!), and this error recovery often hides the problems of writing at high speeds, but there are real and serious problems.

    I didn't want to believe this myself. But I became a convert when I burned several SVCD videos in mode 2. There were just way to many noticable and serious video problems. And I found that the problems "went away" if I burned the CDs at a 4x. Further, we have seen a lot of booting problem with Knoppix that have been determined to be the result of burning the CD too fast. Why? I dodn't know! One would expect the drive's error correction to kick in (the Knoppix disk is burnt with error correction data, not in mode 2), but either it doesn't or the errors are so extreme that there are too many to be corrected. Whatever ther reason, the fix is simple: burn at a slow speed. Here are just a couple of threads where high speed burn problems have been confirmed, but there are many more: http://www.knoppix.net/forum/viewtopic.php?t=17788 and
    http://www.knoppix.net/forum/viewtop...?p=78925#78925 .

    I burn a lot of CDs. But I've learned the hard way that the ones I burnt at high speed are just not reliable. And I expect they will be even less reliable as they age. My advice is to burn at a slow speed. Yea, this is bad news if you want to crank out hundreds of CDs (but many pressing services will accept orders for as few as 100 and give you a better quality CD), but for one or two it only makes sense to burn slowly. And this also says a lot about what to expect if you buy a burnt CD from someone cranking them out to sell on e-bay; do you think they are taking the time to burn them slowly to get the best results for the user, or quickly so they can make money in the shortest amount of time?

  9. #9
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    USA, IL
    Posts
    1,041
    --IIRC, yes the md5sum should match (at least after cat, which is my own experience.)

    Note: Jorge, I corrected your dd syntax in the quote below.

    Quote Originally Posted by A. Jorge Garcia
    Wow, thanx for all the input on this question already!

    OK, so:

    Code:
    dd if=/dev/cdrom of=/mnt/hda2/home/misterG/my.iso bs=1M
    or

    Code:
    cat /dev/cdrom > /mnt/hda2/home/misterG/my.iso
    should both work, but cat is quicker?

    Also, would I get an exact copy of the original ISO that I can check with the original md5sum?

    BTW, Dave, I remember when you taught me about cat many moons ago.... Thank you!

    Oh, and Harry, I don't ever burn at the max speed. At home I burn at 8x and at work I burn at 32x. The home burner is a 16x and the work one is much faster than 32x (sorry I forget exactly what the exact speed is at the moment).

    TIA,
    AJG

    PS: I burn a lot of CDs for my students and for ebay and I always burn slow and test my CDs before distributing them to anyone.

  10. #10
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    Long Island, NY, USA
    Posts
    1,256
    Dave, I figured you were referring to the "/mnt...."

    BTW, what is bs=1M?

    Thanx,
    AJG

Page 1 of 2 12 LastLast

Similar Threads

  1. I burned the ISO to CD,when boot from the CD ,but failed?
    By normalnotebook in forum Customising & Remastering
    Replies: 1
    Last Post: 07-30-2005, 12:45 AM
  2. Having trouble using Knoppix from my burned bootable CD.
    By pulsating_walleye in forum General Support
    Replies: 11
    Last Post: 12-11-2004, 12:13 AM
  3. Replies: 11
    Last Post: 06-20-2004, 09:13 PM
  4. HELP PLEASE..BURNED KNOPPIX A FEW TIMES..WASTED A FEW CDS
    By behnood in forum General Support
    Replies: 5
    Last Post: 03-18-2004, 05:17 AM
  5. I don't believe it burned onto the cd right but
    By bootme54 in forum General Support
    Replies: 1
    Last Post: 10-14-2003, 11:57 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


1U Open Source Router Firewall X10SLH-N6-ST031 E3-1240 V3 6x 10GB Ethernet 16GB picture

1U Open Source Router Firewall X10SLH-N6-ST031 E3-1240 V3 6x 10GB Ethernet 16GB

$350.00



Sun Enterprise e450 400mhz cpu(x4), 4gb ram, 9gb HD w/spud most complete on ebay picture

Sun Enterprise e450 400mhz cpu(x4), 4gb ram, 9gb HD w/spud most complete on ebay

$600.00



NVIDIA DGX Spark 4 128GB DDR5X Unified 20-Core Arm Server picture

NVIDIA DGX Spark 4 128GB DDR5X Unified 20-Core Arm Server

$4250.00



Ubuntu 26.04 LTS – 3 DVD Set Desktop - Server - Studio Edition - Grade AAA+ picture

Ubuntu 26.04 LTS – 3 DVD Set Desktop - Server - Studio Edition - Grade AAA+

$13.99



Toshiba Magnia SG20 VPN Linux server Web server (No HDD, *Read*) - picture

Toshiba Magnia SG20 VPN Linux server Web server (No HDD, *Read*) -

$60.00



1U Open Source Router Firewall 6x 10GB Ethernet X10SLH-N6-ST031 E3-1240 V3 32GB picture

1U Open Source Router Firewall 6x 10GB Ethernet X10SLH-N6-ST031 E3-1240 V3 32GB

$429.00



All New Ubuntu 26.04 LTS Linux Bootable USB Flash Drive picture

All New Ubuntu 26.04 LTS Linux Bootable USB Flash Drive

$15.95



Start9 Server Pure 32GB 4TB Intel i7 Node StartOS — Box + PSU picture

Start9 Server Pure 32GB 4TB Intel i7 Node StartOS — Box + PSU

$699.00



Microsoft SQL Server 2025 Standard 32 Core Unlimited User CALs CoA Authentic picture

Microsoft SQL Server 2025 Standard 32 Core Unlimited User CALs CoA Authentic

$388.00



Rackmount Server Intel Atom D525 1.8GHz 2GB RAM 500GB HDD CentOS Linux picture

Rackmount Server Intel Atom D525 1.8GHz 2GB RAM 500GB HDD CentOS Linux

$99.00