Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
How to enable CD/DVD device?
View unanswered posts
View posts from last 24 hours

Goto page Previous  1, 2  
Reply to topic    Gentoo Forums Forum Index Kernel & Hardware
View previous topic :: View next topic  
Author Message
DONAHUE
Watchman
Watchman


Joined: 09 Dec 2006
Posts: 7651
Location: Goose Creek SC

PostPosted: Tue Mar 05, 2013 4:14 am    Post subject: Reply with quote

1
Code:
dbus-launch brasero

1a
blank cd in drive
Code:
dbus-launch brasero

then
2
Code:
nano myimage.toc
edit to
Quote:

CD_ROM

TRACK MODE1
DATAFILE "The name of your iso goes here between quotes"
Put a blank cd in the drive, then run:
Code:
 cdrdao write myimage.toc

then
3
emerge gnomebaker
then
4
k3b

mayhap something will work. I have googled some items that suggest some burners and brasero have notification problems. Results of 1 will be the most interesting to me.
_________________
Defund the FCC.
Back to top
View user's profile Send private message
ONEEYEMAN
Advocate
Advocate


Joined: 01 Mar 2005
Posts: 3551

PostPosted: Tue Mar 05, 2013 8:09 pm    Post subject: Reply with quote

DONAHUE,
What is "myimage.toc"?

Thank you.
Back to top
View user's profile Send private message
DONAHUE
Watchman
Watchman


Joined: 09 Dec 2006
Posts: 7651
Location: Goose Creek SC

PostPosted: Tue Mar 05, 2013 8:16 pm    Post subject: Reply with quote

a text file of instructions for cdrdao to use when writing a cd, myimage is an arbitrary name, .toc is a required filename extension.
_________________
Defund the FCC.
Back to top
View user's profile Send private message
ONEEYEMAN
Advocate
Advocate


Joined: 01 Mar 2005
Posts: 3551

PostPosted: Tue Mar 05, 2013 8:24 pm    Post subject: Reply with quote

DONAHUE,
The only *.toc files I could find on my system are from KDE 3.5.

Isn't it suppose to be somewhere in /etc or /usr?
Back to top
View user's profile Send private message
DONAHUE
Watchman
Watchman


Joined: 09 Dec 2006
Posts: 7651
Location: Goose Creek SC

PostPosted: Tue Mar 05, 2013 8:36 pm    Post subject: Reply with quote

sorry, I meant to tell you to create a file named myimage.toc in your home directory or whatever directory your terminal was in at the time which hopefully holds your iso file
_________________
Defund the FCC.
Back to top
View user's profile Send private message
ONEEYEMAN
Advocate
Advocate


Joined: 01 Mar 2005
Posts: 3551

PostPosted: Tue Mar 05, 2013 8:43 pm    Post subject: Reply with quote

Looks like I picked up wrong driver for CD-ROM.

Code:

igor@LearningRight ~ $ cdrdao write myimage.toc
Cdrdao version 1.2.3 - (C) Andreas Mueller <andreas@daneb.de>
/dev/sr0: PBDS CDRWDVD DH-48C2S   Rev: ND12
Using driver: Generic SCSI-3/MMC - Version 2.0 (options 0x0000)

WARNING: Unit not ready, still trying...
WARNING: Unit not ready, still trying...
WARNING: Unit not ready, still trying...
WARNING: Unit not ready, still trying...
WARNING: Unit not ready, still trying...
^C

LearningRight igor # lspci
00:00.0 Host bridge: Intel Corporation 82Q35 Express DRAM Controller (rev 02)
00:01.0 PCI bridge: Intel Corporation 82Q35 Express PCI Express Root Port (rev 02)
00:03.0 Communication controller: Intel Corporation 82Q35 Express MEI Controller (rev 02)
00:03.2 IDE interface: Intel Corporation 82Q35 Express PT IDER Controller (rev 02)
00:03.3 Serial controller: Intel Corporation 82Q35 Express Serial KT Controller (rev 02)
00:19.0 Ethernet controller: Intel Corporation 82566DM-2 Gigabit Network Connection (rev 02)
00:1a.0 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #4 (rev 02)
00:1a.1 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #5 (rev 02)
00:1a.7 USB controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #2 (rev 02)
00:1b.0 Audio device: Intel Corporation 82801I (ICH9 Family) HD Audio Controller (rev 02)
00:1c.0 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 1 (rev 02)
00:1d.0 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #1 (rev 02)
00:1d.1 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #2 (rev 02)
00:1d.2 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #3 (rev 02)
00:1d.7 USB controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #1 (rev 02)
00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev 92)
00:1f.0 ISA bridge: Intel Corporation 82801IO (ICH9DO) LPC Interface Controller (rev 02)
00:1f.2 IDE interface: Intel Corporation 82801IR/IO/IH (ICH9R/DO/DH) 4 port SATA Controller [IDE mode] (rev 02)
00:1f.3 SMBus: Intel Corporation 82801I (ICH9 Family) SMBus Controller (rev 02)
00:1f.5 IDE interface: Intel Corporation 82801I (ICH9 Family) 2 port SATA Controller [IDE mode] (rev 02)
01:00.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI RV610 video device [Radeon HD 2400 PRO]
LearningRight igor #



Thank you.
Back to top
View user's profile Send private message
DONAHUE
Watchman
Watchman


Joined: 09 Dec 2006
Posts: 7651
Location: Goose Creek SC

PostPosted: Tue Mar 05, 2013 9:47 pm    Post subject: Reply with quote

looks like the cdrdao driver is not compatible with writing your PBDS CDRWDVD DH-48C2S Rev: ND12 optical drive although you can read it now, do not believe your kernel drivers are involved, but
Code:
grep -i  CONFIG_CHR_DEV_SG /usr/src/linux/.config
should produce
Quote:
CONFIG_CHR_DEV_SG=y
if not rebuild kernel with
Quote:
-> Device Drivers -> SCSI device support-> <*> SCSI generic support
enabled in menuconfig

else see if gnomebaker or k3b will do better, if already installed re-emerge them first
_________________
Defund the FCC.
Back to top
View user's profile Send private message
ONEEYEMAN
Advocate
Advocate


Joined: 01 Mar 2005
Posts: 3551

PostPosted: Tue Mar 05, 2013 10:02 pm    Post subject: Reply with quote

DONAHUE wrote:

looks like the cdrdao driver is not compatible with writing your PBDS CDRWDVD DH-48C2S Rev: ND12 optical drive although you can read it now, do not believe your kernel drivers are involved, but
Code:

grep -i  CONFIG_CHR_DEV_SG /usr/src/linux/.config

should produce
[quote
]CONFIG_CHR_DEV_SG=y

[/quote]

Yes, it does produce such an output.

DONAHUE wrote:

else see if gnomebaker or k3b will do better, if already installed re-emerge them first


Well GnomeBaker also fails. It just tried to add my files to the disk image.

Anything else to try?

Thank you.
Back to top
View user's profile Send private message
DONAHUE
Watchman
Watchman


Joined: 09 Dec 2006
Posts: 7651
Location: Goose Creek SC

PostPosted: Wed Mar 06, 2013 1:10 am    Post subject: Reply with quote

xcdroast? k3b? most of the frontends use cdrdao ....
put your iso's on a flash drive and find a friend ..
better yet a linux friend with a usb optical drive
this has been strange
_________________
Defund the FCC.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Kernel & Hardware All times are GMT
Goto page Previous  1, 2
Page 2 of 2

 
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