Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
how do I burn iso's and other files from my hd?
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Multimedia
View previous topic :: View next topic  
Author Message
rajl
Apprentice
Apprentice


Joined: 25 Sep 2002
Posts: 287

PostPosted: Fri Jan 10, 2003 11:22 pm    Post subject: how do I burn iso's and other files from my hd? Reply with quote

ok, so I have xcdroast installed right now, and it copies cd's fine. But I can't cd of files from my hard disk (eg backing up my mp3's) or create a cd from an iso image (eg gentoo live-cd) with it. Is xcdroast capable of doing either of these? If so, how would I do it? If not, what other programs are out there that I could use that could do this for me?
_________________
-Rajl

-----------------------------------------------------------
It's easy to be brave once you consider the alternatives.
Back to top
View user's profile Send private message
Lovechild
Advocate
Advocate


Joined: 17 May 2002
Posts: 2858
Location: Århus, Denmark

PostPosted: Fri Jan 10, 2003 11:34 pm    Post subject: Reply with quote

uptill I discovered k3b I used :

cdrecord -scanbus
cdrecord -v dev=0,0,0 speed=40 driveropts=burnfree -data /root/data.iso

(or something like that if memory serves me right I got it of the CD-WRITING HOW-TO on tldp.org)
Back to top
View user's profile Send private message
compu-tom
Guru
Guru


Joined: 09 Jan 2003
Posts: 415
Location: Berlin, Germany

PostPosted: Fri Jan 10, 2003 11:47 pm    Post subject: Reply with quote

I have there 2 scripts, one for creating the ISO image and one for the actual burning task. This is all I need to burn my MP3s and backups and it works quite fine.

Here they are (and they are really simple):
#1: mkiso <iso-output> <files and dirs>+
Code:
#!/bin/sh

output=$1
shift

mkisofs -o $output -r -hide-rr-moved -J -hide-joliet-trans-tbl $*


#2: burn <iso-image>
Code:
#!/bin/sh

progname=`basename $0`
if [ "$progname" = "burndummy" ]; then
    dummy="-dummy"
else
    dummy=""
fi

generalOptions="-v $dummy -dao speed=8 driveropts=burnproof"

cdrecord $generalOptions dev=0,0,0 $*


I hope the scripts are useful.
Back to top
View user's profile Send private message
krusty_ar
Guru
Guru


Joined: 03 Oct 2002
Posts: 560
Location: Rosario, Argentina

PostPosted: Fri Jan 10, 2003 11:49 pm    Post subject: Reply with quote

if you search a little you will find a way of pipeing mkisofs (a tool for creating .iso files) to cdrecord and bur a cd "on the fly"

there are many apps that to me are a little more user-friendly than xcdroast (haven't tryed the latest versions): k3b gcombust.
_________________
I am Beta, don't expect correct behaviour from me.
Take part of the adopt an unaswered post initiative
Back to top
View user's profile Send private message
bud1979
Tux's lil' helper
Tux's lil' helper


Joined: 11 Nov 2002
Posts: 122
Location: St. Louis

PostPosted: Sat Jan 11, 2003 3:59 am    Post subject: Reply with quote

with xcdroat do you have the iso images in the image folder you set up when you first launched xcdroast. Look in your settings when you first start it up and you will be able to see what folder it was. Then put the iso in there and when you try to make a cd with xcdroast go to write tracks. click on layout tracks and then the iso should be on the right side. click it , then add button then click accept track layout. this will move you back to the first tab then click write tracks. this will burn the iso. IF you want to back up mp3's go to master track button on left, add tracks to the first tab, find the directories of the songs and add them then go the the last tab create session image and click on master to image file. Then you have to burn it like the iso image. It will be kept in the same directory. Hope this helps
Back to top
View user's profile Send private message
eNTi
Veteran
Veteran


Joined: 20 Oct 2002
Posts: 1011
Location: Salzburg, Austria

PostPosted: Sat Jan 11, 2003 1:32 pm    Post subject: Reply with quote

i use simplecdrx for iso burning.
_________________
If you fall off a cliff, you might as well try to fly. After all, you got nothing to lose.

-- John Sheridan - Babylon 5, Season 4
Back to top
View user's profile Send private message
rajl
Apprentice
Apprentice


Joined: 25 Sep 2002
Posts: 287

PostPosted: Mon Jan 13, 2003 9:40 pm    Post subject: Reply with quote

thanks for the help guys...i appreciate it
_________________
-Rajl

-----------------------------------------------------------
It's easy to be brave once you consider the alternatives.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Multimedia All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum