LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   cd rom (https://www.linuxquestions.org/questions/linux-newbie-8/cd-rom-207578/)

andox 07-20-2004 05:30 PM

cd rom
 
how would u access the cd rom?

I have a dell laptop with red hat enterprise... i also have some source code cds for red hat.. n' i need to access my cd's but unlike windows where u click on the cd drive icon linux is a lil confusing for me..

yes im a noob and anyone's help would be greatly apreciated. thank you.

robertnysi 07-20-2004 05:41 PM

Once you put it in cd into the drive the icon of that cd will show up on your desktop.This how much i know.I use the same redhat 9 and i am not happy with it at all.I am planing to go with mandrake discovery 10.0

andox 07-20-2004 05:41 PM

wait scratch the first post..
i know i have to somehow mount the cd drive.. useing "mount"
.. well actually that's all i know.. how do i find the cd drive to mount? i can't seem to find it anywhere.. and if i dont have one how would i add one?
and once it's mounted how can i view and copy the contents of the cd?

win32sux 07-20-2004 05:41 PM

you need to mount the cd (actually, the cd's filesystem to be exact) in order to access it...

you need to know the device location for your drive and you need a directory to use as a mount point...

example:

mount -t iso9660 /dev/hdb /mnt/cdrom

now you can access the cd by going into /mnt/cdrom...

in this example the cd-rom drive is the primary slave device...

the "-t iso9660" just says the filesystem you want to mount is the standard cd filesystem (iso9660)...

/mnt/cdrom is a typical, commonly used mount point for cd-roms...

/dev/hda = primary master

/dev/hdb = primary slave

/dev/hdc = secondary master

/dev/hdd = secondary slave




andox 07-20-2004 05:42 PM

oh thanx.. i guess i didn't notice the cd icon earlier..


All times are GMT -5. The time now is 07:50 AM.