LinuxQuestions.org
Review your favorite Linux distribution.
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 06-09-2005, 05:28 AM   #1
Smokey
Member
 
Registered: Jul 2004
Distribution: Slackware
Posts: 313

Rep: Reputation: 30
trying to burn an .iso


hi, I downloaded VoltaLinux.iso and I want to know the necessary commands to find out what kind of hardware I specificially have and how I can execute the mkisofs and otherwise make this a bootable cd? I am using Slackware 10.1
 
Old 06-09-2005, 06:26 AM   #2
bathory
LQ Guru
 
Registered: Jun 2004
Location: Piraeus
Distribution: Slackware
Posts: 13,163
Blog Entries: 1

Rep: Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032
You can use
Code:
cdrecord -scanbus
to find out which device you burner is (i.e. something like 0,1,0). Then run:
Code:
cdrecord -v speed=8 dev=0,1,0 /path/to/VoltaLinux.iso
to burn the iso. You must replace 8 with you burner speed and 0,1,0 with your actual device numbers.
 
Old 06-09-2005, 06:46 AM   #3
phil.d.g
Senior Member
 
Registered: Oct 2004
Posts: 1,272

Rep: Reputation: 154Reputation: 154
you may need to use scsi emulation if you use an IDE cd writer and your using the 2.4.x kernel

you already have a iso image so you do not need to make use of mkisofs

Last edited by phil.d.g; 06-09-2005 at 06:49 AM.
 
Old 06-09-2005, 07:38 AM   #4
reddazz
LQ Guru
 
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298

Rep: Reputation: 77
If you are using the 2.6 kernel do,
Code:
#cdrecord -v dev=/dev/hdc filename.iso
Replace "hdc" with your own cd writing device. You don't need scsi emulation if using the 2.6 kernel.
 
Old 06-09-2005, 02:21 PM   #5
dennisk
Member
 
Registered: May 2004
Location: Southwestern USA
Distribution: CentOS
Posts: 279

Rep: Reputation: 30
A couple of useful options you might add are -eject -sao driveropts=burnfree. Eject will eject the CD when done, SAO closes the session which sometimes helps other (older?) drives to read the CD and Burnfree works with drives that support Buffer Underrun Free technology. So your command might look like this:

Code:
cdrecord -v -eject -sao driveropts=burnfree dev=0,0,0 some.iso
Dennisk
 
Old 06-09-2005, 07:10 PM   #6
Smokey
Member
 
Registered: Jul 2004
Distribution: Slackware
Posts: 313

Original Poster
Rep: Reputation: 30
#umount /mnt/cdrom
#cdrecord -scanbus
Cdrecord-Clone 2.01 (i686-pc-linux-gnu) Copyright (C) 1995-2004 Jorg Schilling
cdrecord: No such file or directory. Cannot open '/dev/pg*'. Cannot open SCSI driver.
cdrecord: For possible targets try 'cdrecord -scanbus'.
cdrecord: For possible transport specifiers try 'cdrecord dev=help'.

I'm using Slackware 10.1 with kernel 2.4.29

Last edited by Smokey; 06-09-2005 at 07:12 PM.
 
Old 06-09-2005, 07:57 PM   #7
mrcheeks
Senior Member
 
Registered: Mar 2004
Location: far enough
Distribution: OS X 10.6.7
Posts: 1,690

Rep: Reputation: 52
Quote:
Originally posted by phil.d.g
you may need to use scsi emulation if you use an IDE cd writer and your using the 2.4.x kernel

you already have a iso image so you do not need to make use of mkisofs
 
Old 06-09-2005, 08:12 PM   #8
egag
Senior Member
 
Registered: Jul 2004
Location: Netherlands
Distribution: Slackware
Posts: 2,721

Rep: Reputation: 53
add a line to /etc/lilo.conf like this :

-------------
# Linux bootable partition config begins
image = ....
root = ....
label = ....
append="hd<yourdrive>=scsi" <---add this line
read-only
# Linux bootable partition config ends
-------------

hd<yourdrive> should be hdb or whatever is your cd drive.
then run " lilo" and reboot...

egag
 
Old 06-09-2005, 11:08 PM   #9
Smokey
Member
 
Registered: Jul 2004
Distribution: Slackware
Posts: 313

Original Poster
Rep: Reputation: 30
Quote:
Originally posted by egag
add a line to /etc/lilo.conf like this :

-------------
# Linux bootable partition config begins
image = ....
root = ....
label = ....
append="hd<yourdrive>=scsi" <---add this line
read-only
# Linux bootable partition config ends
-------------

hd<yourdrive> should be hdb or whatever is your cd drive.
then run " lilo" and reboot...

egag
append=hd /dev/hdb=scsi << thats how I do it?

How can I find out where specifically my cd/dvd drive is? I mean as far as /dev/whatever

Last edited by Smokey; 06-09-2005 at 11:11 PM.
 
Old 06-10-2005, 01:58 AM   #10
bathory
LQ Guru
 
Registered: Jun 2004
Location: Piraeus
Distribution: Slackware
Posts: 13,163
Blog Entries: 1

Rep: Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032
The correct syntax is:
Code:
append= "hdX=ide-scsi"
where hdX is your CD writer. To find out what X is, run;
Code:
dmesg|grep CD  or dmesg|grep hd
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
i just want to burn an iso? xk00zx Linux - Newbie 14 03-06-2005 11:50 AM
iso burn? ndog42 Linux - Software 20 06-13-2004 10:09 PM
k3b error with audio cd burn (no prob with iso burn) bluem Linux - Newbie 1 04-16-2004 08:05 AM
I downloaded the gentoo iso in mandrake, what program do i burn the iso with backflippin General 4 04-05-2004 10:20 AM
Do I burn the ISO, or burn what's contained in it? Borg Swarm Linux - General 1 02-06-2004 05:30 PM

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

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