分类: LINUX
2015-02-02 11:19:43
The device file for CD would exist under /dev directory. For example, a CD-ROM device will be mounted as shown below.
# mount -t iso9660 -o ro /dev/cdrom /mntIn the above example, the option “-o ro” indicates that the cdrom should be mounted with read-only access. Also, make sure that the destination directory (in the above example, /mnt) exist before you execute the mount command.