Link to home
Start Free TrialLog in
Avatar of wzimmerl
wzimmerl

asked on

how do i mount a cd in runlevel 3

how do i mount a cd in runlevel 3 on fedora core 6
ASKER CERTIFIED SOLUTION
Avatar of evilrix
evilrix
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
If this doesn't work try looking in the /etc/fstab file to see where it should be mounted.
$ cat /etc/fstab
# This file is edited by fstab-sync - see 'man fstab-sync' for details
...
/dev/hda                /media/cdrom            auto    pamconsole,fscontext=system_u:object_r:removable_t,exec,noauto,managed 0 0
 
 
$ mount /media/cdrom

Open in new window

You can find out what device you CD-ROM is on like this: -

$ dmesg | grep CD-ROM

hda: ATAPI 24X CD-ROM drive, 128kB Cache, UDMA(33)
Uniform CD-ROM driver Revision: 3.20

-- So the cdrom is on /dev/hda

OR

find /proc/ide -name media -exec cat {} \; -exec echo {} \;

cdrom
/proc/ide/ide0/hda/media

-- So the cdrom is on /dev/hda