Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
01-10-2005, 12:59 AM
|
#1
|
LQ Newbie
Registered: Dec 2004
Location: China
Distribution: debian
Posts: 24
Rep:
|
Could anybody recommend a good CD/DVD burning GPL software?
Feature:
must have commandline support
must have multisession support
|
|
|
01-10-2005, 01:12 AM
|
#2
|
Member
Registered: Jul 2003
Location: Seattle, WA
Distribution: Kubuntu 14.04 LTS
Posts: 915
Rep:
|
Re: Could anybody recommend a good CD/DVD burning GPL software?
Quote:
Originally posted by keyboard
Feature:
must have commandline support
must have multisession support
|
I use mkisofs to create an ISO image, and then growisofs to burn it onto DVD. growisofs supports multisession, I believe.
|
|
|
01-10-2005, 01:45 AM
|
#3
|
LQ Newbie
Registered: Dec 2004
Location: China
Distribution: debian
Posts: 24
Original Poster
Rep:
|
Thanks
I will try it.
|
|
|
01-10-2005, 02:17 AM
|
#4
|
Senior Member
Registered: Dec 2002
Location: Mosquitoville
Distribution: RH 6.2, Gen2, Knoppix,arch, bodhi, studio, suse, mint
Posts: 3,306
Rep:
|
your three options are growisofs, and this is built into k3b. dvdrecord, which is a hacked version of cdrecord with dvd support which made schily, the author of cdrecord very angry, and the best one is cdrecord prodvd from schily's cdrecord site. searching for cdrecord home on google will find it for you.
you must have a recent version of mkisofs so that you have support for iso images bigger than 2 gig's.
|
|
|
01-10-2005, 02:35 AM
|
#5
|
Member
Registered: Jul 2003
Location: Seattle, WA
Distribution: Kubuntu 14.04 LTS
Posts: 915
Rep:
|
Quote:
Originally posted by whansard
u must have a recent version of mkisofs so that you have support for iso images bigger than 2 gig's.
|
Good point... do you happen to know which version mkisofs started supporting ISO images larger than 2GB? Mine's 2.0 and it does.
|
|
|
01-10-2005, 06:52 AM
|
#6
|
Senior Member
Registered: Dec 2002
Location: Mosquitoville
Distribution: RH 6.2, Gen2, Knoppix,arch, bodhi, studio, suse, mint
Posts: 3,306
Rep:
|
this is in the changelog for cdrtools 2.01:
Try to support files >= 2 GB.
Note that mkisofs is not yet written cleanly so there may be problems
if files >= are used. In such a case, please report.
I tried digging through changlogs at ftp://ftp.berlios.de/pub/cdrecord/
They all start with AN-<version number>.
I think the above is for files in the iso image itself. And i guess an iso image would need to be bigger than 2 gigs to have a file bigger than 2 gigs in it. But, i saw a reference to a mkisofs feature that would split the iso image for you.
I've also used split up images from an old windows dvdshrink that had split the iso up into 1 gig chunks. i was able to feed the files to cdrecord-ProDVD with something like: cdrecord-wrapper.sh dev=0,0,0 speed=4 -v image.*
|
|
|
01-10-2005, 02:56 PM
|
#7
|
LQ Newbie
Registered: Jul 2004
Posts: 24
Rep:
|
Quote:
Originally posted by whansard
this is in the changelog for cdrtools 2.01:
Try to support files >= 2 GB.
Note that mkisofs is not yet written cleanly so there may be problems
if files >= are used. In such a case, please report.
I tried digging through changlogs at ftp://ftp.berlios.de/pub/cdrecord/
They all start with AN-<version number>.
I think the above is for files in the iso image itself. And i guess an iso image would need to be bigger than 2 gigs to have a file bigger than 2 gigs in it. But, i saw a reference to a mkisofs feature that would split the iso image for you.
I've also used split up images from an old windows dvdshrink that had split the iso up into 1 gig chunks. i was able to feed the files to cdrecord-ProDVD with something like: cdrecord-wrapper.sh dev=0,0,0 speed=4 -v image.*
|
Hi,
Can you elaborate on how you created the split output and test mounted it.
I tried it with
mkisofs -r -split-output -o image.iso user/
It did create 3 iso files but the Trans.TBL file size was zero according to i, which meant that there was problem with the iso creation.
*********************** output************************************
mkisofs -r -split-output -o image.iso user/
.
.
99.98% done, estimate finish Mon Jan 10 14:33:57 2005
Total translation table size: 0
Total rockridge attributes bytes: 248
Total directory bytes: 0
Path table size(bytes): 10
Max brk space used 5384
1335315 extents written (2608 MB)
********************************************************************
I am using version 2.01 of cdrtools.
also how does one test mount the series of iso images to check whether the iso creation was fine??
Can you explain me in a bit detail how you did it?.
Thanks a lot,
haoscar
|
|
|
01-10-2005, 04:50 PM
|
#8
|
Senior Member
Registered: Dec 2002
Location: Mosquitoville
Distribution: RH 6.2, Gen2, Knoppix,arch, bodhi, studio, suse, mint
Posts: 3,306
Rep:
|
I didn't create them on purpose, and i didn't use mkisofs. the program dvdshrink did it. at first i was using cat and dd to put the pieces back together, like cat image*.* |dd of=all.iso. then i tried once without putting them together and it worked. i never did test an image to see if it worked first.
edit: I just made a normal iso image, and it said translation table size 0. So i take it to be normal.
Last edited by whansard; 01-10-2005 at 04:55 PM.
|
|
|
01-11-2005, 10:00 PM
|
#9
|
LQ Newbie
Registered: Dec 2004
Location: China
Distribution: debian
Posts: 24
Original Poster
Rep:
|
Hi, All:
Thanks a lot.
I got a cygwin version of cdrecord-prodvd. It works fine for CD, but for DVD-RW, I have no result:
the last 2 lines printed are:
Starting to write CD/DVD at speed 1 in real TAO mode for single session.
Last chance to quit, starting real write 8 secondsAlarm clock
How do you do it, Highhands?
|
|
|
01-11-2005, 11:00 PM
|
#10
|
Senior Member
Registered: Dec 2002
Location: Mosquitoville
Distribution: RH 6.2, Gen2, Knoppix,arch, bodhi, studio, suse, mint
Posts: 3,306
Rep:
|
from schily's site.
If you get an "Alarm clock" abort from cdrecord-ProDVD, then you
are experiencing license problems. Possible reasons are:
- Your time and date is set to a value before the link
time of cdrecord.
- You are using a Alpha binary that is more than a year old.
Note that cdrecord-ProDVD binaries that contain the letter 'a'
in the version string will stop working one year after
the day of the creation of the binary.
********
WARNING: If you fetch an alpha binary (the name is something
like 1.11a11 and the "a" inside the version string denotes
the alpha state) please keep in mind that the binary is limited
to work about one year. So please fetch a new binary from time
to time if you are running an alpha version.
********
The time limitation os the binary is independant of the time
limit of a key.
- You are using an expired key.
Check for a new one to verify if the key has expired.
- Your binary has been otherwise broken.
Fetch a new binary and make sure that you select binary
mode (via "set bin") for FTP.
|
|
|
01-12-2005, 12:04 AM
|
#11
|
LQ Newbie
Registered: Dec 2004
Location: China
Distribution: debian
Posts: 24
Original Poster
Rep:
|
Thanks, Guru.
I get a newer one - Cdrecord-ProDVD-Clone 2.01.01a01 (i686-pc-cygwin)
it says that
cdrecord-prodvd: Drive does not support RAW/TAO recording.
cdrecord-prodvd: Illegal write mode for this drive.
Do I need a key? How could I find out the supported recording mode?
Last edited by keyboard; 01-12-2005 at 12:05 AM.
|
|
|
01-12-2005, 02:46 AM
|
#12
|
LQ Newbie
Registered: Dec 2004
Location: China
Distribution: debian
Posts: 24
Original Poster
Rep:
|
OK! It works now.
Could you recommend a verification tool? I could not make the sformat thing, too many errors under my cygwin-gcc.
Thanks.
|
|
|
All times are GMT -5. The time now is 05:16 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|