Re: External DVD-burner

2004-03-05 Thread Hamid Gh

echo scsi add-single-device 0 0 0 0  /proc/scsi/scsi
assuming, You have no other SCSI Hostadapter in Your system.
Thanks Jonathan

It worked and I could mount the drive (obviously I had to install two 
packages: scsiadd scsitools).
And also I had to say:
echo scsi add-single-device 1 0 0 0  /proc/scsi/scsi
(I have two ieee1394 controllers)

Now, how do I tell debian to configure my drive automatically in each boot ?
and also right now, just root can see the drive and no one else, how can I 
change that ?

I should mention that I have added this line to my fstab file:

/dev/sr0/burner autorw,user,noauto  0 0

Thanks to all that helped me to solve this problem

Hamid

_
Store more e-mails with MSN Hotmail Extra Storage – 4 plans to choose from! 
http://click.atdmt.com/AVE/go/onm00200362ave/direct/01/

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: External DVD-burner

2004-03-04 Thread Hamid Gh
From: Warren Dodge [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: External DVD-burner
Date: Wed, 3 Mar 2004 19:26:07 -0800
On Mar 3, 2004, at 12:36 PM, Antonio Rodriguez wrote:

On Wed, Mar 03, 2004 at 02:45:19AM -0500, Hamid wrote:
Hi

I have an external DVD burner which is connected to ieee1394 port.

I guess that I need to load ieee1394.o and raw1394.o modules as the first
step.
But I don't know how to create something like /dev/hdc in order to mount
it.
Any input is appreciated.
Thanks
Hamid
 Did you try /dev/raw1394 ?
ohci1394 and sbp2 are the missing keys to the puzzle. The device name would 
be something like /dev/sda

Thanks.

I tried different /dev/sda* but none worked. Is there any message in the 
kernel log that says which /dev I should use ?

Hamid

_
One-click access to Hotmail from any Web page – download MSN Toolbar now! 
http://clk.atdmt.com/AVE/go/onm00200413ave/direct/01/

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: External DVD-burner

2004-03-04 Thread Rodney D. Myers
On Thu, 04 Mar 2004 11:20:12 -0500
Hamid Gh [EMAIL PROTECTED] wrote:

 From: Warren Dodge [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: Re: External DVD-burner
 Date: Wed, 3 Mar 2004 19:26:07 -0800
 
 
 On Mar 3, 2004, at 12:36 PM, Antonio Rodriguez wrote:
 
 On Wed, Mar 03, 2004 at 02:45:19AM -0500, Hamid wrote:
 Hi
 
 I have an external DVD burner which is connected to ieee1394 port.
 
 I guess that I need to load ieee1394.o and raw1394.o modules as the
 firststep.
 But I don't know how to create something like /dev/hdc in order to
 mountit.
 Any input is appreciated.
 
 Thanks
 Hamid
 
   Did you try /dev/raw1394 ?
 
 ohci1394 and sbp2 are the missing keys to the puzzle. The device name
 would be something like /dev/sda
 
 
 Thanks.
 
 I tried different /dev/sda* but none worked. Is there any message in
 the kernel log that says which /dev I should use ?
 
 Hamid

When you unplug and plug back in the drive what is the output of dmesg?

-- 
Rodney D. Myers [EMAIL PROTECTED] Registered Linux User #96112
ICQ#: AIM#:   YAHOO:
18002350  mailman452  mailman42_5

They that can give up essential liberty to obtain a 
little temporary safety deserve neither liberty nor safety.
Ben Franklin - 1759


pgp0.pgp
Description: PGP signature


Re: External DVD-burner

2004-03-04 Thread Jonathan Schmitt
 I have an external DVD burner which is connected to ieee1394 port.
Hallo,
You have to have the following components compiled in Your kernel (or loaded 
as modules)
- ieee1394 support
- sbp2 support (firewire menu)
- ohci support (also firewire menu, I'm not sure, whether this is a must)
- scsi support
- scsi disk support (or maybe cdrom support? never worked with Firewire cds, 
sorry)

When all these are ready, attaching the device should give You some output to 
dmesg, some two liner, telling You, a device is found.
If that happens, You have to manually tell the scsi driver to search for a new 
device (unless this is done by debian, I'm not quite sure about this). This 
can be done by
echo scsi add-single-device 0 0 0 0  /proc/scsi/scsi
assuming, You have no other SCSI Hostadapter in Your system.
If successful, You'll find some message in Your dmesg output, telling You the 
device was identified correctly. If not, You'll simply get no result.
try a different combination of these 0 0 0 0 then.
First number is (zero based) number of SCSI adapter in System
Second one is the channel on the SCSI adapter
Third is SCSI id
Fourth is LUN

Number two and four are almost always zero, first might be a different one if 
You had another SCSI adapter or a usb storage device, thrid might differ if 
You had more than one ieee1394 device.
Hope that helps,
   js
-- 
A little retrospection shows that although many fine, useful software systems
have been designed by committees and built as part of multipart projects,
those software systems that have excited passionate fans are those that are
the products of one or a few designing minds, great designers.  Consider Unix,
APL, Pascal, Modula, the Smalltalk interface, even Fortran; and contrast them
with Cobol, PL/I, Algol, MVS/370, and MS-DOS.
- Fred Brooks, Jr.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: External DVD-burner

2004-03-04 Thread Rob Sims
On Thursday 04 March 2004 09:20 am, Hamid Gh wrote:

 On Wed, Mar 03, 2004 at 02:45:19AM -0500, Hamid wrote:

 I have an external DVD burner which is connected to ieee1394 port.

 ohci1394 and sbp2 are the missing keys to the puzzle. The device name would 
 be something like /dev/sda

 I tried different /dev/sda* but none worked. Is there any message in the 
 kernel log that says which /dev I should use ?

DVD devices are CD devices, not disks.  Try /dev/scd0.  You need 
sr_mod on top of sbp2.
--
Rob


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: External DVD-burner

2004-03-03 Thread Rodney D. Myers
On Wed, 03 Mar 2004 02:45:19 -0500
Hamid [EMAIL PROTECTED] wrote:

 Hi
 
 I have an external DVD burner which is connected to ieee1394 port.
 
 I guess that I need to load ieee1394.o and raw1394.o modules as the
 first step.
 But I don't know how to create something like /dev/hdc in order to
 mount it.
 Any input is appreciated.
 
 Thanks
 Hamid
 
 

Firewire should should show up as SCSI devices. My other machine, that
has the firewire card in it is down, bad power supply, so I can't help
with the extra modules.

Did you go through modconf as well, to try and get it configured?

-- 
Rodney D. Myers [EMAIL PROTECTED] Registered Linux User #96112
ICQ#: AIM#:   YAHOO:
18002350  mailman452  mailman42_5

They that can give up essential liberty to obtain a 
little temporary safety deserve neither liberty nor safety.
Ben Franklin - 1759


pgp0.pgp
Description: PGP signature


Re: External DVD-burner

2004-03-03 Thread Antonio Rodriguez
On Wed, Mar 03, 2004 at 02:45:19AM -0500, Hamid wrote:
 Hi
 
 I have an external DVD burner which is connected to ieee1394 port.
 
 I guess that I need to load ieee1394.o and raw1394.o modules as the first 
 step.
 But I don't know how to create something like /dev/hdc in order to mount 
 it.
 Any input is appreciated.
 
 Thanks
 Hamid
 
 Did you try /dev/raw1394 ?


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: External DVD-burner

2004-03-03 Thread Warren Dodge
On Mar 3, 2004, at 12:36 PM, Antonio Rodriguez wrote:

On Wed, Mar 03, 2004 at 02:45:19AM -0500, Hamid wrote:
Hi

I have an external DVD burner which is connected to ieee1394 port.

I guess that I need to load ieee1394.o and raw1394.o modules as the 
first
step.
But I don't know how to create something like /dev/hdc in order to 
mount
it.
Any input is appreciated.

Thanks
Hamid
 Did you try /dev/raw1394 ?
ohci1394 and sbp2 are the missing keys to the puzzle. The device name 
would be something like /dev/sda

HTH,
Warren
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



External DVD-burner

2004-03-02 Thread Hamid
Hi

I have an external DVD burner which is connected to ieee1394 port.

I guess that I need to load ieee1394.o and raw1394.o modules as the first 
step.
But I don't know how to create something like /dev/hdc in order to mount 
it.
Any input is appreciated.

Thanks
Hamid
--
Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]