View previous topic :: View next topic |
Author |
Message |
Piratetrader Apprentice
Joined: 25 Dec 2003 Posts: 156 Location: Wasilla, Alaska
|
Posted: Thu Feb 19, 2004 9:58 pm Post subject: cdrom mounting problem |
|
|
Need help to mount my cdrom. I have read all the docs and tryied all the things I can find in them. I am trying to get on too the ISO cd two of the live cd set to emerge some files. this is my fstab
Code: |
/dev/hda1 /boot ext2 noauto,noatime
/dev/hda2 / reiserfs noatime
/dev/hda3 none swap sw
/dev/cdroms/cdrom0 /mnt/cdrom iso9660 noauto,ro,users |
any ideas on how to mount my cdrom
Pirate. _________________ The Bark is worse then the Bite! |
|
Back to top |
|
|
michaelb l33t
Joined: 06 Jun 2002 Posts: 686 Location: Ann Arbor, MI
|
Posted: Thu Feb 19, 2004 10:04 pm Post subject: |
|
|
doesnot work? What is the error? _________________ Behold, The power of SEARCH! |
|
Back to top |
|
|
Piratetrader Apprentice
Joined: 25 Dec 2003 Posts: 156 Location: Wasilla, Alaska
|
Posted: Thu Feb 19, 2004 10:21 pm Post subject: |
|
|
michaelb wrote: | doesnot work? What is the error? |
mount: mount point /mnt/cdrom does not exist.
pirate _________________ The Bark is worse then the Bite! |
|
Back to top |
|
|
daveb Tux's lil' helper
Joined: 20 Nov 2003 Posts: 137 Location: In front of my computer, duh!
|
Posted: Thu Feb 19, 2004 10:43 pm Post subject: Re: cdrom mounting problem |
|
|
Code: | mount: mount point /mnt/cdrom does not exist. |
just means that the appropriate directory hasn't been created. Try
Code: | mkdir /mnt/cdrom
mount /mnt/cdrom |
and all will be right with the world.
Note that you'll have to
before you can eject the disc when you are done. |
|
Back to top |
|
|
Piratetrader Apprentice
Joined: 25 Dec 2003 Posts: 156 Location: Wasilla, Alaska
|
Posted: Thu Feb 19, 2004 10:58 pm Post subject: Re: cdrom mounting problem |
|
|
daveb wrote: | Code: | mount: mount point /mnt/cdrom does not exist. |
just means that the appropriate directory hasn't been created. Try
Code: | mkdir /mnt/cdrom
mount /mnt/cdrom |
and all will be right with the world.
Note that you'll have to
before you can eject the disc when you are done. |
Tried that and no go this is what that says.
mkdir: cannot create directory '/mnt/cdrom': No such file or directory.
Pirate _________________ The Bark is worse then the Bite! |
|
Back to top |
|
|
daveb Tux's lil' helper
Joined: 20 Nov 2003 Posts: 137 Location: In front of my computer, duh!
|
Posted: Thu Feb 19, 2004 11:02 pm Post subject: |
|
|
Hmmm. I would think that /mnt would already exist, but try
then the other 2 steps from the previous post. |
|
Back to top |
|
|
Piratetrader Apprentice
Joined: 25 Dec 2003 Posts: 156 Location: Wasilla, Alaska
|
Posted: Thu Feb 19, 2004 11:21 pm Post subject: |
|
|
daveb wrote: | Hmmm. I would think that /mnt would already exist, but try
then the other 2 steps from the previous post. |
That was it! funny I would of thought that it was there to but was not.
Hmmmmmmm. but got it now thanks.
Pirate _________________ The Bark is worse then the Bite! |
|
Back to top |
|
|
|