Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CD-Burning Question 1

Status
Not open for further replies.

iSeriesCodePoet

Programmer
Jan 11, 2001
1,373
US
I have a question for you guys. I am looking a the possiblity of creating a server that I can transfer an ISO image to and then have the system automatically burn the file(s). Is there such directions around right now? I don't care if the system doesn't automatically loads the CD, I don't mind that. I just want to drag and drop the file, and have it burn the CD for me.

If you can provide any direction that would be greatly appreciated.

Thanks...

iSeriesCodePoet
iSeries Programmer/Lawson Software Administrator
[pc2]
See my progress to converting to linux.
 
What dont u program a php script to do that using linux console burning tool?

Im sure freshmeat has some interesting software from you.

Dan Grant
Lead programmer
dan at abusinesshosting dot com
 
you could try it with mkisofs and cdrecord.

If you got "cdrecord" first run: "cdrecord -scanbus" to verify the lun and bus number of the burner

bash-2.05b$ cdrecord -scanbus
Cdrecord-Clone 2.01a18 (i686-pc-linux-gnu) Copyright (C) 1995-2003 Jörg Schilling
Linux sg driver version: 3.1.25
Using libscg version 'schily-0.7'
scsibus0:
0,0,0 0) 'SONY ' 'CD-RW CRX810E ' '1.5a' Removable CD-ROM
0,1,0 1) *
0,2,0 2) *
0,3,0 3) *
0,4,0 4) *
0,5,0 5) *
0,6,0 6) *
0,7,0 7) *
bash-2.05b$

Now if you know the bus and lun number from the burner you can go on with creating images (Iso's) with "mkisofs"

You can create an iso and send it directly to the burner.

mkisofs -R <path-you-like> | cdrecord -v dev=0,0,0 -speed=4 -

The -R option stands for Rockridgeformat
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top