LinuxQuestions.org
Visit Jeremy's Blog.
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 07-04-2005, 06:55 PM   #1
justin_p
Member
 
Registered: Jan 2004
Location: Virginia, USA
Distribution: slack 13; I've used it all :)
Posts: 433

Rep: Reputation: 30
CD Burning Issues


I am running slack-current plus DLG, which has the lastest and greatest with kernel 2.6.11.11. I am trying to burn CDs but everytime I get errors.

When I try the built-in GNOME burner I get "Disc full" error. I have tried multiple brand new CDRs and the error remains the same. I have looked up the properties on the discs and they are empty.

When I use Graveman I get a "cannot access /usr/bin/mkisofs" error. mkisofs is there, in that same place.

Anyone else experiencing these issues? Ideas/advice?

Thanks.
 
Old 07-04-2005, 07:22 PM   #2
shilo
Senior Member
 
Registered: Nov 2002
Location: Stockton, CA
Distribution: Slackware 11 - kernel 2.6.19.1 - Dropline Gnome 2.16.2
Posts: 1,132

Rep: Reputation: 50
First thought, make sure that you aren't using ide-scsi emulation. I think you are supposed to be able to use it if you like. but I KNOW that you can get it to work without it.

Second thought, is you are getting an error about /usr/bin/mkisofs, have you checked permissions? I didn't see if this was a root+users or just a users issue.

Final thought, are your permissions for your burner set correctly? Is it recognized properly?
 
Old 07-04-2005, 07:23 PM   #3
rahmed
Member
 
Registered: Feb 2004
Location: somewhere over the rainbow...
Distribution: Slackware 10.1
Posts: 166

Rep: Reputation: 30
 
Old 07-06-2005, 10:33 AM   #4
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,940

Rep: Reputation: 129Reputation: 129
I don't know what DLG is, but are you open to burning CDs from command line?

This is one of the first things that intrigued me about *nix. It is more efficient than using a GUI, and you can get verbose output to see what is actually happening. You can even use the -dummy switch and just try it to see what would happen if you actually burned a disc.

This is the command I use to burn iso images to my CD-RW
Code:
cdrecord -v -eject  dev=/dev/hdc /path/to/file.iso
You'll need to replace hdc with the device name of your burner.

If you want to just try one, issue
Code:
cdrecord -v -dummy -eject  dev=/dev/hdc /path/to/file.iso
and see what it outputs.

Now, for the kernels after 2.6.8.1, you can burn as user or root. If you burn as user, you might have buffer underruns if you don't have enough free memory. That is because the silly author of cdrecord has it turn BURN-Free off. I would suggest you run it as root just to be sure.

Here's the details of a test run using -dummy
Code:
mingdao@james:~/iso/KNOPPIX_V3.9-2005-05-27-EN$ su -c "cdrecord -v -dummy -eject  dev=/dev/hdc KNOPPIX_V3.9-2005-05-27-EN.iso"
Password: 
cdrecord: No write mode specified.
cdrecord: Asuming -tao mode.
cdrecord: Future versions of cdrecord may have different drive dependent defaults.
cdrecord: Continuing in 5 seconds...
Cdrecord-Clone 2.01 (i686-pc-linux-gnu) Copyright (C) 1995-2004 Jörg Schilling
cdrecord: Warning: Running on Linux-2.6.12.2
cdrecord: There are unsettled issues with Linux-2.5 and newer.
cdrecord: If you have unexpected problems, please try Linux-2.4 or Solaris.
TOC Type: 1 = CD-ROM
scsidev: '/dev/hdc'
devname: '/dev/hdc'
scsibus: -2 target: -2 lun: -2
Warning: Open by 'devname' is unintentional and not supported.
Linux sg driver version: 3.5.27
Using libscg version 'schily-0.8'.
SCSI buffer size: 64512
atapi: 1
Device type    : Removable CD-ROM
Version        : 0
Response Format: 1
Vendor_info    : 'ASUS    '
Identifikation : 'CRW-5232A3      '
Revision       : '1.00'
Device seems to be: Generic mmc CD-RW.
Current: 0x0009
Profile: 0x000A 
Profile: 0x0009 (current)
Profile: 0x0008 
Profile: 0x0002 
Using generic SCSI-3/mmc   CD-R/CD-RW driver (mmc_cdr).
Driver flags   : MMC-3 SWABAUDIO BURNFREE 
Supported modes: TAO PACKET SAO SAO/R96P SAO/R96R RAW/R16 RAW/R96P RAW/R96R
Drive buf size : 1362944 = 1331 KB
FIFO size      : 4194304 = 4096 KB
Track 01: data   695 MB        
Total size:      799 MB (79:10.64) = 356298 sectors
Lout start:      799 MB (79:12/48) = 356298 sectors
Current Secsize: 2048
ATIP info from disk:
  Indicated writing power: 5
  Is not unrestricted
  Is not erasable
  Disk sub type: Medium Type B, low Beta category (B-) (4)
  ATIP start of lead in:  -11607 (97:27/18)
  ATIP start of lead out: 359849 (79:59/74)
Disk type:    Short strategy type (Phthalocyanine or similar)
Manuf. index: 18
Manufacturer: Plasmon Data systems Ltd.
Blocks total: 359849 Blocks current: 359849 Blocks remaining: 3551
Starting to write CD/DVD at speed 52 in dummy TAO mode for single session.
Last chance to quit, starting dummy write    0 seconds. Operation starts.
Waiting for reader process to fill input buffer ... input buffer ready.
BURN-Free is ON.
Turning BURN-Free off
Starting new track at sector: 0
Track 01:  695 of  695 MB written (fifo 100%) [buf 100%]  25.3x.
Track 01: Total bytes read/written: 729694208/729694208 (356296 sectors).
Writing  time:  168.394s
Average write speed  28.2x.
Min drive buffer fill was 99%
Fixating...
WARNING: Some drives don't like fixation in dummy mode.
Fixating time:    0.001s
cdrecord: fifo had 11494 puts and 11494 gets.
cdrecord: fifo was 0 times empty and 7028 times full, min fill was 87%.
So you can see that would make a successful burn, in less than 3 minutes.

If you use the CLI a little bit, I think you'll learn to like it.
 
Old 07-06-2005, 10:48 AM   #5
justin_p
Member
 
Registered: Jan 2004
Location: Virginia, USA
Distribution: slack 13; I've used it all :)
Posts: 433

Original Poster
Rep: Reputation: 30
I think that it is a permissions issue. I can burn CDs as root. But burning from the GUI (xcdroast) or the commandline both gave me errors regarding fixatinng the cd at the end. This is the first time I have had issues with this burner under kernel 2.4 and 2.6. DLG is dropline gnome. I have now removed it and restored KDE and slack-current. I had to run the dropline remove script. I then removed the left over 20 or so packages. I reinstalled the rest with slackpkg. Worked great. I will re-try burning with the new system.

Last edited by justin_p; 07-06-2005 at 10:51 AM.
 
Old 07-06-2005, 10:54 AM   #6
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,940

Rep: Reputation: 129Reputation: 129
Try a -dummy burn with the command I suggested. I don't like to run
as root, so I use the su -c "command" option. It works fine, because
cdrecord is in users $PATH. Other than that, I don't know what you
think could be the permissions problem.
 
  


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
DVD burning issues xushi Slackware 4 04-27-2005 05:34 AM
Issues mounting a CD after burning it.. phaserx Linux - Hardware 2 03-03-2005 03:39 PM
K3B Burning issues under Fedora Core 3 chenu Linux - Software 0 01-12-2005 06:05 PM
Burning DVD's in K3B - space issues [42]Sanf0rd Linux - Software 2 07-07-2004 02:06 AM
K3b DVDr burning issues... Timeturtle Linux - Software 13 07-01-2004 09:01 AM

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

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