LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Installing Software ... (https://www.linuxquestions.org/questions/linux-software-2/installing-software-58538/)

DeadlySin3 05-07-2003 05:05 AM

Installing Software ...
 
Question:
Every time i've tried to install software packages straight off of my mandrake 9.1 CD - my comp ends up freezing. (all software i've tried has done this - and whenever i try to access the drive w/any type of cd it freezes as well) When I boot up, it detects the drive and mounts it - it's a samsung dvd rom. I"m thinking that maybe the fact that it's a dvd rom could be part of the problem.

Anyone else have this problem before? Or know of a fix?

Any help is appreciated!

MasterC 05-07-2003 01:21 PM

It may be due to the attempt to use scsi emulation on the drive. You have a few choices:
1. Turn off supermount on this drive in your /etc/fstab file;
2. Stop scsi emulation on this drive in your lilo.conf file

I'd personally turn off supermount. What this will mean though is that you will need to manually mount the disc each time you want to access it.

Cool

DeadlySin3 05-07-2003 07:41 PM

o.O

This is the line that appears in /etc/fstab

none /mnt/cdrom supermount dev=/dev/hdc,fs=auto,ro,--,iocharset=iso8859-1,codepage=850,umask=0 0 0

now in order to stop it from mounting automatically - what has to be done? just delete "supermount" or delete that line altogether from fstab?

BigNate 05-08-2003 06:17 AM

Google/linux

...editing fstab.
3rd entry listed...HowTo edit fstab...

"To permemently remove a filesystem, delete the line that you don't want anymore. Remember to unmount the filesystem first, by umount /mountpoint."

Nukes 05-08-2003 11:38 AM

That wasn't very helpful. He doesn't want to delete it, just make it so it doesn't supermount.
Code:

/dev/hdc /mnt/cdrom iso9660 iocharset=iso8859-1,codepage=850 0 0
should do the trick.
You will have to manually mount and unmount it now when you want to use it, there are a few nice dockapps for this and GKrellm2 does it as well if you use that.

MasterC 05-08-2003 12:16 PM

You also might want to add the users option:
/dev/hdc /mnt/cdrom iso9660 iocharset=iso8859-1,codepage=850,users,noauto,ro 0 0

This will allow users to mount/umount the cdrom device. To mount now you should be able to use:
mount /mnt/cdrom
And it will mount your cdrom at /mnt/cdrom
Then to unmount:
umount /mnt/cdrom

Make sure you aren't in the directory (/mnt/cdrom) or it's subdirectories when trying to umount, it won't allow it.

Cool

DeadlySin3 05-08-2003 09:37 PM

Thanks! That did the trick!

I appreciate all the help :)


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