LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 02-07-2009, 11:34 PM   #1
AlanL
Member
 
Registered: Dec 2002
Location: New Westminster, B.C.,CANADA
Distribution: Slax. Tinycore. Puppy.
Posts: 109

Rep: Reputation: 15
cdrecord won`t burn dvd


I have Slack 12.2 installed. I used the same command that I
use for CD`s with correct number for dvd burner(1001,1,0).
Cdrecord recognises the dvd burner and it says:
Total size 3753 MB = 1921708 sectors
Current Secsize: 2048
cdrecord: Data will not fit on any disc.
cdrecord: Cannot write more than remaining DVD/BD capacity.
It`s a new dvd+r disk. There`s nothing on it. Do I need
something else in the command?
 
Old 02-08-2009, 01:18 AM   #2
guanx
Senior Member
 
Registered: Dec 2008
Posts: 1,176

Rep: Reputation: 233Reputation: 233Reputation: 233
Though not probable, this link may help:
http://bugs.gentoo.org/106747
 
Old 02-08-2009, 10:12 PM   #3
AlanL
Member
 
Registered: Dec 2002
Location: New Westminster, B.C.,CANADA
Distribution: Slax. Tinycore. Puppy.
Posts: 109

Original Poster
Rep: Reputation: 15
Thanks guanx but I don`t see anything there to help me.
I`ve used cdrecord to burn cd`s with no problems.
 
Old 02-09-2009, 12:53 PM   #4
w1k0
Senior Member
 
Registered: May 2008
Location: Poland
Distribution: Slackware (personalized Window Maker), Mint (customized MATE)
Posts: 1,309

Rep: Reputation: 234Reputation: 234Reputation: 234
Instead of cdrecord try growisofs:

* writing first track (current directory)

growisofs -Z /dev/sr7 -R -J .

* writing next track (current directory)

growisofs -M /dev/sr7 -R -J .

* writing ISO image

growisofs -Z /dev/sr7=image.iso

* erasing disc

growisofs -Z /dev/sr7=/dev/zero

* formatting disc (restricted overwrite mode)

dvd+rw-format -force /dev/sr7

* blanking disc (sequential mode)

dvd+rw-format -blank /dev/sr7

* media info

dvd+rw-mediainfo /dev/sr7
 
Old 02-09-2009, 02:01 PM   #5
justwantin
Member
 
Registered: Aug 2003
Location: Melbourne, Australia
Distribution: Slackware, Slackwarearm
Posts: 878

Rep: Reputation: 120Reputation: 120
Ditto, I just use growisofs it works every time for CLI burns
 
Old 02-10-2009, 11:11 PM   #6
AlanL
Member
 
Registered: Dec 2002
Location: New Westminster, B.C.,CANADA
Distribution: Slax. Tinycore. Puppy.
Posts: 109

Original Poster
Rep: Reputation: 15
I already have the iso. Cdrecord seems to be seeing the directory
only(secsize=2048) and not the DVD disk. Today I used the DVD burner
to blank a cdrw and burn geexbox. It worked OK. I have two windows
programs running on wine and they can`t see the DVD burner. I ran
winecfg and set the path(E.
 
Old 02-11-2009, 01:59 AM   #7
justwantin
Member
 
Registered: Aug 2003
Location: Melbourne, Australia
Distribution: Slackware, Slackwarearm
Posts: 878

Rep: Reputation: 120Reputation: 120
Quote:
I already have the iso.
The command growisofs referred to by w1k0 above is used to burn an iso that you have to a dvd.

Quote:
NAME
growisofs - combined mkisofs frontend/DVD recording program.
 
Old 02-11-2009, 03:28 AM   #8
gegechris99
Senior Member
 
Registered: Oct 2005
Location: France
Distribution: Slackware 15.0 64bit
Posts: 1,160
Blog Entries: 5

Rep: Reputation: 392Reputation: 392Reputation: 392Reputation: 392
Hello AlanL,

A new version of cdtools is available. From 12.2 changelog:

Quote:
Mon Feb 9 16:04:06 CST 2009
patches/packages/cdrtools-2.01.01a57-i486-1_slack12.2.tgz:
Upgraded to cdrtools-2.01.01a57.
Also, fixed a build script error so that the utilities look for locale files
in the correct directory. Thanks to Krasimir Kazakov for the bug report.
Anyone who had problems with k3b previously should upgrade this package.
I suggest that you upgrade this package and see if your problem still persists.
 
Old 02-11-2009, 05:36 AM   #9
rkelsen
Senior Member
 
Registered: Sep 2004
Distribution: slackware
Posts: 4,448
Blog Entries: 7

Rep: Reputation: 2553Reputation: 2553Reputation: 2553Reputation: 2553Reputation: 2553Reputation: 2553Reputation: 2553Reputation: 2553Reputation: 2553Reputation: 2553Reputation: 2553
Quote:
Originally Posted by AlanL View Post
I already have the iso.
As mentioned above, use the 'growisofs' command to burn the iso file.
 
Old 02-12-2009, 10:27 PM   #10
AlanL
Member
 
Registered: Dec 2002
Location: New Westminster, B.C.,CANADA
Distribution: Slax. Tinycore. Puppy.
Posts: 109

Original Poster
Rep: Reputation: 15
I upgraded cdrtools but that didn`t change anything.
Thank you for the growisofs info w1k0. I made a nice
coaster! I forgot the = and got the iso on the dvd.
Got it right the second time and it worked perfect.
I still wonder why cdrecord can`t see the dvd disk?
Thanks to all.....Alan.
 
Old 02-12-2009, 11:45 PM   #11
acummings
Member
 
Registered: Jul 2004
Distribution: Slackware
Posts: 615

Rep: Reputation: 50
cdrecord need to be run with root privileges ie either as root or setup a sudo entry or as some do, change perm on it so a user can run it.

Whereas, growisofs must be run as a user.

Next, I cat a script I use to burn DVD

Run it like so:

al@P5Q:~$ dvdb ./my_dvd_iso_2_burn.iso

root@P5Q:~# cat /home/al/bin/dvdb
#!/bin/sh
# file to dvd command
# growisofs -dvd-compat -Z /dev/dvd -r -J /path/to/files
# this script burn a .iso to dvd
# growisofs -dvd-compat -Z /dev/dvd=$1;
growisofs -dvd-compat -Z /dev/sr0=$1;
root@P5Q:~# cd /dev
root@P5Q:/dev# lsag dvd
lrwxrwxrwx 1 root root 3 2009-02-12 08:02 dvd -> sr0
lrwxrwxrwx 1 root root 3 2009-02-12 08:02 dvd0 -> sr0
lrwxrwxrwx 1 root root 3 2009-02-12 08:02 dvdrw -> sr0
lrwxrwxrwx 1 root root 3 2009-02-12 08:02 dvdrw0 -> sr0
lrwxrwxrwx 1 root root 3 2009-02-12 08:02 dvdwriter -> sr0
lrwxrwxrwx 1 root root 3 2009-02-12 08:02 dvdwriter0 -> sr0
root@P5Q:/dev# lsag sr0
lrwxrwxrwx 1 root root 3 2009-02-12 08:02 cdr -> sr0
lrwxrwxrwx 1 root root 3 2009-02-12 08:02 cdr0 -> sr0
lrwxrwxrwx 1 root root 3 2009-02-12 08:02 cdrom -> sr0
lrwxrwxrwx 1 root root 3 2009-02-12 08:02 cdrom0 -> sr0
lrwxrwxrwx 1 root root 3 2009-02-12 08:02 cdrw -> sr0
lrwxrwxrwx 1 root root 3 2009-02-12 08:02 cdrw0 -> sr0
lrwxrwxrwx 1 root root 3 2009-02-12 08:02 cdwriter -> sr0
lrwxrwxrwx 1 root root 3 2009-02-12 08:02 cdwriter0 -> sr0
lrwxrwxrwx 1 root root 3 2009-02-12 08:02 dvd -> sr0
lrwxrwxrwx 1 root root 3 2009-02-12 08:02 dvd0 -> sr0
lrwxrwxrwx 1 root root 3 2009-02-12 08:02 dvdrw -> sr0
lrwxrwxrwx 1 root root 3 2009-02-12 08:02 dvdrw0 -> sr0
lrwxrwxrwx 1 root root 3 2009-02-12 08:02 dvdwriter -> sr0
lrwxrwxrwx 1 root root 3 2009-02-12 08:02 dvdwriter0 -> sr0
lrwxrwxrwx 1 root root 3 2009-02-12 08:02 scd0 -> sr0
brw-rw---- 1 root cdrom 11, 0 2009-02-12 08:02 sr0
lrwxrwxrwx 1 root root 3 2009-02-12 08:02 writer -> sr0
root@P5Q:/dev#

--
Alan.
 
Old 02-13-2009, 07:24 AM   #12
H_TeXMeX_H
LQ Guru
 
Registered: Oct 2005
Location: $RANDOM
Distribution: slackware64
Posts: 12,928
Blog Entries: 2

Rep: Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301
Quote:
Originally Posted by acummings View Post
cdrecord need to be run with root privileges ie either as root or setup a sudo entry or as some do, change perm on it so a user can run it.

Whereas, growisofs must be run as a user.
Really ? I usually run both as root just to make sure I won't end up with a coaster.
 
Old 02-13-2009, 08:51 AM   #13
w1k0
Senior Member
 
Registered: May 2008
Location: Poland
Distribution: Slackware (personalized Window Maker), Mint (customized MATE)
Posts: 1,309

Rep: Reputation: 234Reputation: 234Reputation: 234
The nice feature of growisofs is that you don't need to blank rewritable disks before you burn new set of data on them. You just have to use growisofs -Z /dev/sr0 -R -J . or growisofs -Z /dev/sr0=image.iso command. So practically you can stay with three first commands mentioned above. You can also use growisofs -M /dev/sr0=/dev/zero command to finalize multisession disks but be careful and don't use by mistake -Z switch instead of -M one.
 
Old 02-13-2009, 07:59 PM   #14
acummings
Member
 
Registered: Jul 2004
Distribution: Slackware
Posts: 615

Rep: Reputation: 50
Quote:
Whereas, growisofs must be run as a user.
Really ? I usually run both as root just to make sure I won't end up with a coaster.
For years I've had a sudo entry for cd burning.

(a few) year(s) [so many months, actually -- perhaps approx 20 months ago give or take a bit] ago was the first time I ever ran growisofs. I ran it as root and it informed me cannot be run as root, need to run it as a user. It has always worked fine for me run as a user. I've never looked back, nor have I ever tried again to run growisofs as root.

cd burning (not using growisofs) I still make use of my sudo entry.

--
Alan.
 
  


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
How to burn DVD iso using cdrecord slacknewbie2 Slackware 5 05-21-2009 04:12 PM
[K3B] Cant burn CD-R but works fine with DVD... cdrecord? lonecrow Linux - Software 5 11-05-2006 10:16 AM
using cdrecord to burn dir to dvd cjae Linux - Newbie 2 01-26-2006 11:09 AM
How do I burn a cd with cdrecord? Joey.Dale Linux - General 9 03-22-2004 05:57 PM
cdrecord, ? burn DVD Data arkopolo Linux - Software 0 07-03-2003 02:39 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 09:45 AM.

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