LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 08-02-2004, 05:55 AM   #1
hq4ever
Member
 
Registered: May 2004
Location: Israel
Distribution: Debian
Posts: 98

Rep: Reputation: 15
Burn CUE/BIN using cdrecord


could someone please show me the correct syntax for cdrecord when burning CD images in cue/bin format

thank you.
 
Old 08-02-2004, 06:53 AM   #2
homey
Senior Member
 
Registered: Oct 2003
Posts: 3,057

Rep: Reputation: 61
You should be able to use cdrdao from the command line or the GUI tool k3b which is the front end for cdrdao.

For example...
cdrdao write --device 0,0,0 --speed 4 somefile.cue
 
Old 09-04-2004, 06:46 AM   #3
hq4ever
Member
 
Registered: May 2004
Location: Israel
Distribution: Debian
Posts: 98

Original Poster
Rep: Reputation: 15
thank you.
 
Old 01-18-2012, 02:35 AM   #4
MikZyth
LQ Newbie
 
Registered: Dec 2006
Location: Russia
Posts: 19

Rep: Reputation: 1
Hi.
Can this be done using just cdrecord (not using cdrdao)?
 
Old 01-19-2012, 07:33 PM   #5
MikZyth
LQ Newbie
 
Registered: Dec 2006
Location: Russia
Posts: 19

Rep: Reputation: 1
That's how it goes...
Anyone?..

Code:
[MikZyth@mzsrv Downloads]$ cdrecord -audio -dev=/dev/cdrw -dao --cuefile=Piece\ Of\ Mind.cue 
wodim: Operation not permitted. Warning: Cannot raise RLIMIT_MEMLOCK limits.
Device type    : Removable CD-ROM
Version        : 5
Response Format: 2
Capabilities   : 
Vendor_info    : 'Optiarc '
Identification : 'DVD RW AD-7240S '
Revision       : '1.03'
Device seems to be: Generic mmc2 DVD-R/DVD-RW.
Using generic SCSI-3/mmc   CD-R/CD-RW driver (mmc_cdr).
Driver flags   : MMC-3 SWABAUDIO BURNFREE 
Supported modes: TAO PACKET SAO SAO/R96R RAW/R16 RAW/R96P RAW/R96R
Speed set to 8467 KB/s
Starting to write CD/DVD at speed  48.0 in real SAO mode for single session.
Last chance to quit, starting real write in    0 seconds. Operation starts.
wodim: CUE sheet not accepted. Retrying with minimum pregapsize = 1.
Errno: 5 (Input/output error), send_cue_sheet scsi sendcmd: no error
CDB:  5D 00 00 00 00 00 00 00 A0 00
status: 0x2 (CHECK CONDITION)
Sense Bytes: 70 00 05 00 00 00 00 0A 00 00 00 00 26 00 00 00
Sense Key: 0x5 Illegal Request, Segment 0
Sense Code: 0x26 Qual 0x00 (invalid field in parameter list) Fru 0x0
Sense flags: Blk 0 (not valid) 
cmd finished after 0.009s timeout 200s
wodim: CUE sheet still not accepted. Please try to write in RAW (-raw96r) mode.
wodim: Cannot send CUE sheet.
wodim: Could not write Lead-in.
"CUE sheet still not accepted" ??? What does that mean?..
 
Old 01-19-2012, 09:14 PM   #6
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,982

Rep: Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626
From my old BeOS days, a .cue was the only way to make a BeOS disk. The .cue is a simple text file. It is a cookbook of sorts. You can read that and use linux tools to do what it is telling nero to do.
 
Old 01-20-2012, 07:43 PM   #7
MikZyth
LQ Newbie
 
Registered: Dec 2006
Location: Russia
Posts: 19

Rep: Reputation: 1
Thanks for reply)
I know what cue file is. Here's cue's contents:

Code:
REM GENRE "Heavy Metal"
REM DATE 1983
REM DISCID 6A0AC909
REM COMMENT "ExactAudioCopy v0.99pb5"
PERFORMER "Iron Maiden"
TITLE "Piece Of Mind (CDP 7 46363 2)"
FILE "Piece Of Mind.wav" WAVE
  TRACK 01 AUDIO
    TITLE "Where Eagles Dare"
    PERFORMER "Iron Maiden"
    INDEX 01 00:00:00
  TRACK 02 AUDIO
    TITLE "Revelations"
    PERFORMER "Iron Maiden"
    INDEX 01 06:12:45
  TRACK 03 AUDIO
    TITLE "Flight Of Icarus"
    PERFORMER "Iron Maiden"
    INDEX 01 13:01:40
  TRACK 04 AUDIO
    TITLE "Die With Your Boots On"
    PERFORMER "Iron Maiden"
    INDEX 01 16:51:60
  TRACK 05 AUDIO
    TITLE "The Trooper"
    PERFORMER "Iron Maiden"
    INDEX 01 22:18:15
  TRACK 06 AUDIO
    TITLE "Still Life"
    PERFORMER "Iron Maiden"
    INDEX 01 26:30:30
  TRACK 07 AUDIO
    TITLE "Quest For Fire"
    PERFORMER "Iron Maiden"
    INDEX 01 31:26:57
  TRACK 08 AUDIO
    TITLE "Sun And Steel"
    PERFORMER "Iron Maiden"
    INDEX 01 35:08:57
  TRACK 09 AUDIO
    TITLE "To Tame A Land"
    PERFORMER "Iron Maiden"
    INDEX 01 38:35:62
Everything is fine in cue. Piece Of Mind.wav lies in the same directory.

But, finnaly I found why cdrecord was refusing to burn.
I added a pregap in the first track (PREGAP 00:00:00) (just before "INDEX 01 00:00:00").
Now, the burning process goes as it should but... it is all silence! All 9 tracks of silence...
If I try to add Piece Of Mind.wav in the command line, it says:
Code:
 wodim: No tracks allowed with the cuefile= option
Can anyone help?..
 
Old 02-29-2012, 03:49 AM   #8
MikZyth
LQ Newbie
 
Registered: Dec 2006
Location: Russia
Posts: 19

Rep: Reputation: 1
My problem finally solved. Actually, it was wodim fork which caused the bug.
The original cdrecord works as it should.
 
Old 02-29-2012, 03:56 AM   #9
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
And in case anyone else wants to reply, this thread was EIGHT YEARS OLD. NO MORE REPLIES PLEASE.

In future, please don't drag up dead threads. Thanks.
 
  


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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
K3b install error, I just want to burn a .cue/.bin diverge Linux - Software 2 12-06-2006 12:33 AM
.bin without .cue, how to burn as boot disc rh9 tangy Linux - Newbie 1 08-01-2005 03:22 PM
k3b won't burn cue images compu73rg33k Linux - Software 9 06-25-2005 12:15 AM
How to burn a bin/cue file in redhat? newjuan Linux - Newbie 2 06-05-2004 07:59 PM
Burn cue/bin and Mail-Proxy RedWeasel Linux - Software 1 10-30-2003 12:27 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 06:25 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