Mounting a CD-ROM
This chapter describes how to mount a CD-ROM for each platform.
AIX
The method for mounting a CD-ROM in AIX is as follows:
Log in as the root user.
Create a mount point to which a CD-ROM drive will be mounted.
# mkdir /cdrom
Run the mount command.
mount <option><device_name><mount_point>
Linux
The method for mounting a CD-ROM on Linux is as follows:
Check whether automounting is working.
$ ps -aux | grep automount
Switch to a root user using the root account password.
$ su -
Password : *****
Run the mount command
# mount <option><device_name><mount_point>
Run the unmount command.
# umount <mount_point>
Solaris
The method for mounting a CD-ROM in Solaris is as follows:
1. Check the volume manager to verify whether a CD is recognized automatically.
$ ps -e | grep vold
If there is an existing CD, eject the CD.
$ eject
3. Insert a CD and mount it with the following commands.
# mkdir <mount_point>
# mount <options> <device_name><mount_point>
Last updated