Mounting a CD/DVD Device: Difference between revisions

From UNIX Systems Administration
Jump to navigation Jump to search
No edit summary
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
== AIX ==
== AIX ==
* <tt>'''# mount -v cdrfs -r /dev/cd0  /cdrom'''</tt>
:<tt>'''# mount -v cdrfs -r /dev/cd0  /cdrom'''</tt>
-- Alternatively --
::::-- Alternatively --
* <tt>'''# mount -V cdrfs -o ro /dev/cd0  /cdrom'''</tt>
:<tt>'''# mount -V cdrfs -o ro /dev/cd0  /cdrom'''</tt>


== Linux ==
== Linux ==
* <tt>'''# mount -t iso9660 /dev/cdrom /cdrom'''</tt>
:<tt>'''# mount -t iso9660 /dev/cdrom /cdrom'''</tt>


== Further Reading ==
== Further Reading ==
# [http://publib.boulder.ibm.com/infocenter/pseries/v5r3/index.jsp IBM pSeries and AIX Information Center]
# [http://publib.boulder.ibm.com/infocenter/pseries/v5r3/index.jsp IBM pSeries and AIX Information Center]
 
# [http://www-01.ibm.com/support/docview.wss?uid=isg3T1010951 IBM Creating a mksysb backup to DVD]
[[Category:AIX]]
[[Category:AIX]]
[[Category:Linux]]
[[Category:Linux]]

Latest revision as of 18:59, 1 March 2017

AIX

# mount -v cdrfs -r /dev/cd0 /cdrom
-- Alternatively --
# mount -V cdrfs -o ro /dev/cd0 /cdrom

Linux

# mount -t iso9660 /dev/cdrom /cdrom

Further Reading

  1. IBM pSeries and AIX Information Center
  2. IBM Creating a mksysb backup to DVD