FAQ Search Today's Posts Mark Forums Read
» Video Reviews

» Linux Archive

Linux-archive is a website aiming to archive linux email lists and to make them easily accessible for linux users/developers.


» Sponsor

» Partners

» Sponsor

Go Back   Linux Archive > Gentoo > Gentoo User

 
 
LinkBack Thread Tools
 
Old 06-30-2008, 05:19 PM
"Ricardo Bevilacqua"
 
Default Problem mounting cdrom,cdrw,usb

2008/6/30 Norman Hakim <desprado_mariachi@yahoo.com>:
> Cristian Gary,
> i've grouped it into plugdev.
>
> Richard,
>
> After i type this command "/dev/cdrom /mnt/cdrom auto noauto,ro,user 0 0" it shows:
>
> bash: /dev/cdrom: Permission denied

Actually, the line

/dev/cdrom /mnt/cdrom auto noauto,ro,user 0 0

is what you need to add to "/etc/fstab" to get your cdrom working.
Sorry if I did not express myself correctly.


> i've login using root account. i've right clicked at the cdrom to see the properties and under Permissions tab the Owner column stated unknown and i tried to change the Access column to Read and Write it popup "The permisions could not be changed"
>

Well, you can not change permissions to read and write, because the
cdrom is a read-only media. Yes, I know you are able to burn a CD or a
DVD, but it is not considered as writable media and it is mounted as a
read-only file system.

Just try by adding that line to your fstab, and if that does not work,
then try to mount it manually as Eduardo Otubo says:

# mount /dev/cdrom /mnt/cdrom

And post the output here.

>
> Regards,
> Norman

Regards,

Richard.
--
gentoo-user@lists.gentoo.org mailing list
 
Old 06-30-2008, 09:50 PM
Mick
 
Default Problem mounting cdrom,cdrw,usb

On Monday 30 June 2008, Eduardo Otubo wrote:
> Hi again,
>
> In fact, just like Ricardo said, my congrats to a person who wants to
> learn Linux starting by Gentoo :-)
> But, back to the problem:
>
> Then, I insist at the point: As root, try to mount it manually and
> paste the output here:
>
> # mount /dev/cdrom /mnt/cdrom
>
> Certify that /mnt/cdrom exists. :-)

Or:

$ dmesg | grep CD

and:

$ ls -la /dev/cd*

--
Regards,
Mick
 
Old 07-02-2008, 11:29 AM
Norman Hakim
 
Default Problem mounting cdrom,cdrw,usb

NORMAN HAKIM YAHYA


--- On Mon, 6/30/08, Mick <michaelkintzios@gmail.com> wrote:

> From: Mick <michaelkintzios@gmail.com>
> Subject: Re: [gentoo-user] Problem mounting cdrom,cdrw,usb
> To: gentoo-user@lists.gentoo.org
> Date: Monday, June 30, 2008, 4:50 PM
> On Monday 30 June 2008, Eduardo Otubo wrote:
> > Hi again,
> >
> > In fact, just like Ricardo said, my congrats to a
> person who wants to
> > learn Linux starting by Gentoo :-)
> > But, back to the problem:
> >
> > Then, I insist at the point: As root, try to mount it
> manually and
> > paste the output here:
> >
> > # mount /dev/cdrom /mnt/cdrom
> >
> > Certify that /mnt/cdrom exists. :-)
>
> Or:
>
> $ dmesg | grep CD
>
> and:
>
> $ ls -la /dev/cd*
>
> --
> Regards,
> Mick

Dear Mick & Richard,

This is the output after i mount it manually:

mount: block device /dev/cdrom is write-proctected, mounting read-only

Regards,
Norman



--
gentoo-user@lists.gentoo.org mailing list
 
Old 07-02-2008, 04:30 PM
"Eduardo Otubo"
 
Default Problem mounting cdrom,cdrw,usb

Well,

I think you did it, man!
Just check out your /mnt/cdrom and see if your files are there :-)

[]'s

On Wed, Jul 2, 2008 at 8:29 AM, Norman Hakim
<desprado_mariachi@yahoo.com> wrote:
>
>
> NORMAN HAKIM YAHYA
>
>
> --- On Mon, 6/30/08, Mick <michaelkintzios@gmail.com> wrote:
>
>> From: Mick <michaelkintzios@gmail.com>
>> Subject: Re: [gentoo-user] Problem mounting cdrom,cdrw,usb
>> To: gentoo-user@lists.gentoo.org
>> Date: Monday, June 30, 2008, 4:50 PM
>> On Monday 30 June 2008, Eduardo Otubo wrote:
>> > Hi again,
>> >
>> > In fact, just like Ricardo said, my congrats to a
>> person who wants to
>> > learn Linux starting by Gentoo :-)
>> > But, back to the problem:
>> >
>> > Then, I insist at the point: As root, try to mount it
>> manually and
>> > paste the output here:
>> >
>> > # mount /dev/cdrom /mnt/cdrom
>> >
>> > Certify that /mnt/cdrom exists. :-)
>>
>> Or:
>>
>> $ dmesg | grep CD
>>
>> and:
>>
>> $ ls -la /dev/cd*
>>
>> --
>> Regards,
>> Mick
>
> Dear Mick & Richard,
>
> This is the output after i mount it manually:
>
> mount: block device /dev/cdrom is write-proctected, mounting read-only
>
> Regards,
> Norman
>
>
>
> --
> gentoo-user@lists.gentoo.org mailing list
>
>



--
Eduardo Otubo
Linux Registered User #424252
http://otubo.net

|_|0|_|
|_|_|0|
|0|0|0|
--
gentoo-user@lists.gentoo.org mailing list
 
Old 07-02-2008, 04:49 PM
"Ricardo Bevilacqua"
 
Default Problem mounting cdrom,cdrw,usb

2008/7/2 Norman Hakim <desprado_mariachi@yahoo.com>:
>
>
> NORMAN HAKIM YAHYA
>
> Dear Mick & Richard,
>
> This is the output after i mount it manually:
>
> mount: block device /dev/cdrom is write-proctected, mounting read-only
>
> Regards,
> Norman

Norman,

Good, you did it, you mounted your cdrom. That message is just a
warning, and it is only extra information that the "mount" command
shows you, so you do not have to face any surprises.

That warning is only telling you (as I said before) that your cdrom is
a read-only media.

If you want cdrom to automatically mount when you insert a cd, just
add this line to your /etc/fstab:

/dev/cdrom /mnt/cdrom auto noauto,ro,user 0 0

And that should work just fine.

Regards,

Richard.
--
gentoo-user@lists.gentoo.org mailing list
 
Old 07-02-2008, 05:05 PM
Dirk Heinrichs
 
Default Problem mounting cdrom,cdrw,usb

Am Mittwoch, 2. Juli 2008 schrieb Ricardo Bevilacqua:
> If you want cdrom to automatically mount when you insert a cd, just
> add this line to your /etc/fstab:
>
> /dev/cdrom /mnt/cdrom * * *auto * * *noauto,ro,user * * 0 0

Sorry, but that's nonsense. It tells the mount command that it should try to
guess the filesystem type.

Bye...

Dirk
 
Old 07-02-2008, 05:23 PM
"Ricardo Bevilacqua"
 
Default Problem mounting cdrom,cdrw,usb

2008/7/2 Dirk Heinrichs <dirk.heinrichs@online.de>:
> Am Mittwoch, 2. Juli 2008 schrieb Ricardo Bevilacqua:
>> If you want cdrom to automatically mount when you insert a cd, just
>> add this line to your /etc/fstab:
>>
>> /dev/cdrom /mnt/cdrom auto noauto,ro,user 0 0
>
> Sorry, but that's nonsense. It tells the mount command that it should try to
> guess the filesystem type.
>
> Bye...
>
> Dirk
>

Dirk,

Yes, I know. That is how it is explained as an example in the Gentoo
Linux Handbook Chapter 8 [1] and it has worked for me so far. I am
sure that you could specify one file system type, but I am not too
sure if this really works at any case because a DVD could not follow
the ISO 9660 standard. As far as I know, some DVD's use the UDF
format.


Regards,

Richard.

[1] http://www.gentoo.org/doc/en/handbook/handbook-x86.xml?part=1&chap=8
--
gentoo-user@lists.gentoo.org mailing list
 
Old 07-02-2008, 05:31 PM
Dirk Heinrichs
 
Default Problem mounting cdrom,cdrw,usb

Am Mittwoch, 2. Juli 2008 schrieb Ricardo Bevilacqua:
> I am
> sure that you could specify one file system type, but I am not too
> sure if this really works at any case because a DVD could not follow
> the ISO 9660 standard. As far as I know, some DVD's use the UDF

Yes, what I wrote what "auto" is for. "mount" will find out wether the media
is iso9660 or udf, but it will _not_ cause the media to be mounted
automatically when inserted, as you wrote previously.

Bye...

Dirk
 
Old 07-02-2008, 06:13 PM
"Eduardo Otubo"
 
Default Problem mounting cdrom,cdrw,usb

In fact,

To we get those things really automactly mounted, we need to install
and configure 'ivman' and 'hald'. For those who speaks portuguese I
have a great tutorial writen by a friend of mine:
http://nottooamused.wordpress.com/2007/02/27/montando-dispositivos-automaticamente-no-gnulinux/

[]'s

On Wed, Jul 2, 2008 at 2:31 PM, Dirk Heinrichs <dirk.heinrichs@online.de> wrote:
> Am Mittwoch, 2. Juli 2008 schrieb Ricardo Bevilacqua:
>> I am
>> sure that you could specify one file system type, but I am not too
>> sure if this really works at any case because a DVD could not follow
>> the ISO 9660 standard. As far as I know, some DVD's use the UDF
>
> Yes, what I wrote what "auto" is for. "mount" will find out wether the media
> is iso9660 or udf, but it will _not_ cause the media to be mounted
> automatically when inserted, as you wrote previously.
>
> Bye...
>
> Dirk
>



--
Eduardo Otubo
Linux Registered User #424252
http://otubo.net

|_|0|_|
|_|_|0|
|0|0|0|
--
gentoo-user@lists.gentoo.org mailing list
 
Old 07-02-2008, 10:24 PM
"Ricardo Bevilacqua"
 
Default Problem mounting cdrom,cdrw,usb

2008/7/2 Dirk Heinrichs <dirk.heinrichs@online.de>:
> Am Mittwoch, 2. Juli 2008 schrieb Ricardo Bevilacqua:
>> I am
>> sure that you could specify one file system type, but I am not too
>> sure if this really works at any case because a DVD could not follow
>> the ISO 9660 standard. As far as I know, some DVD's use the UDF
>
> Yes, what I wrote what "auto" is for. "mount" will find out wether the media
> is iso9660 or udf, but it will _not_ cause the media to be mounted
> automatically when inserted, as you wrote previously.
>
> Bye...
>
> Dirk
>

Dirk,

Sorry, I had misunderstood.

But believe it or not, that way works fine for me. I insert a cdrom
and gets automatically (or automagically maybe) mounted.

I do not know, maybe is something about Gnome, but have no idea.

Regards,

Richard.
--
gentoo-user@lists.gentoo.org mailing list
 

Thread Tools




All times are GMT. The time now is 02:57 PM.

VBulletin, Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.
Copyright ©2007 - 2008, www.linux-archive.org