LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   mounting cd drive? (https://www.linuxquestions.org/questions/linux-newbie-8/mounting-cd-drive-329879/)

agryan 06-03-2005 06:32 AM

mounting cd drive?
 
Ok can someone explain to me what exactly this does?

And how to do it?


I am also in need of howto install loki installers (for games like doom3)

r_x 06-03-2005 06:45 AM

mount -t iso9600 /dev/hdc /mnt/cdrom -ro

where /dev/hdc is your cdrom drive
{put your path here instead}
your cd contents will appear in /mnt/cdrom

Linux~Powered 06-03-2005 07:22 AM

Mounting is when you want to mount a file system on a specific device. Like your game doom3. If you want to read the contents on the disk you have to mount it first. Then mount commands should be set up in your /etc/fstab. It should look something like this...

/dev/cdrom /mnt/cdrom iso9660 users,noauto,owner,ro 0 0

If you want to mount your cd, just run the command...

Code:

mount /mnt/yourdevice
To unmount it...

Code:

umount /mnt/yourdevice
You can find more information with 'man mount' from the terminal.

You can get the script for doom3 here

All you need to do is copy the pak* files from your discs to /usr/local/games/doom3/base after you executed the script.


All times are GMT -5. The time now is 07:38 PM.