HP-UX UNIX Mount CDROM ( CDFS ) Filesystem Command
Q. How do I mount CDROM media under HP-UX UNIX System from a shell prompt? How do I automount CDFS file system using /etc/fstab file?
A. You need to use standard mount command to mount the CD (data CD or ISO9600 format cd). You must login as the root user to perform following operations.
Step # 1: Find CDROM device name
Ypu need to use ioscan command to find out the block device file name located at /dev/dsk directory. Without the block device name, you will not able to use CDROM. Type the following command to view CD-ROM device name:
# isoscan -funC disk
Where,
- -F : Generate a full listing, displaying the module's class, instance number, hardware path, driver, software state, hardware type, and a brief description.
- -u : Scan and list usable I/O system devices instead of the actual hardware.
- -n : List device file names in the output. Only special files in the /dev directory and its subdirectories are listed.
- -C disk : Scan the system hardware and list all the devices belonging to the disk device class.
Step # 2: Create a mount point
Next create a mount point for CD-ROM such as /cddisk, enter:
# mkdir /cddisk
Step # 3: Mount the CD
Mount the cd, enter:
# mount -o ro /dev/dsk/cXtYdZ /cddisk
Replace /dev/dsk/cXtYdZ with actual device name such as /dev/dsk/c1t3d0:
# mount -o ro /dev/dsk/c1t3d0 /cddisk
To access file use normal UNIX cd, ls, cp commands, enter:
# cd /cddisk
# ls
# cp file /somewhere/else
Step # 4: Update /etc/fstab
Update your /etc/fstab file for automatic mounting, enter:
# vi /etc/fstab
Append following line, enter:
/dev/dsk/c1t3d0 /cddisk cdfs ro 0 0
Save and close the file. Use mountall command to mount all file system listed in /etc/fstab, enter:
# mountall
Above will mount all unmounted file systems listed in /etc/fstab.
Step # 5: Unmount the CD
To unmount the cd, enter:
# umount /cddisk
Further readings:
- man pages mount, ioscan, mountall
Subscribe to our free e-mail newsletter or RSS feed to get all updates.
You can Email this page to a friend.
Related Other Helpful FAQs:
- FreeBSD Mount CDROM / DVD Drive From The Command Prompt
- How do I force IDE CD-ROM drive detecting during the Linux installation?
- Linux copy data from a floppy to hard disk
- OpenBSD Install Ports Collection
- FreeBSD: Forcefully unmount a disk partition to get rid of device busy error
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!
Tags: /etc/fstab, cdfs, cdrom media, dev directory, disk scan, fstab cdrom, hardware type, hp ux mount cdrom, hpux access cdrom, hpux file system, hpux mount cdrom, ioscan command, mount cdrom in hpux, mount cdrom on hp ux, mount command, mountall command, umount command, unix cd



Recent Comments
Today ~ 32 Comments
Yesterday ~ 1 Comment
Yesterday ~ 3 Comments
Yesterday ~ 2 Comments
Yesterday ~ 3 Comments