<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Mountime CD-ROM in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/mountime-cd-rom/m-p/3766186#M260421</link>
    <description>make sure pfs_mountd and pfsd daemons are running&lt;BR /&gt;Issuethe command&lt;BR /&gt;&lt;BR /&gt;pfs_mountd &lt;DEVICE&gt; &lt;MOUNT location=""&gt;&lt;BR /&gt;&lt;BR /&gt;ex. pfs_mountd /dev/rdsk/c0t0d3 /cdrom&lt;BR /&gt;&lt;BR /&gt;&lt;/MOUNT&gt;&lt;/DEVICE&gt;</description>
    <pubDate>Wed, 05 Apr 2006 06:00:30 GMT</pubDate>
    <dc:creator>BPatrick</dc:creator>
    <dc:date>2006-04-05T06:00:30Z</dc:date>
    <item>
      <title>Mountime CD-ROM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mountime-cd-rom/m-p/3766181#M260416</link>
      <description>Dear Friends,&lt;BR /&gt;&lt;BR /&gt;I have mount the CD-ROM on my 2 Sun E2900 server --- please tell me how to go abt the same.&lt;BR /&gt;&lt;BR /&gt;is it like follows&lt;BR /&gt;#mkdir /cdrom&lt;BR /&gt;#mount /cdrom&lt;BR /&gt;or else should i need to do any changes in /etc/mnttab &lt;BR /&gt;/etc/vfstab&lt;BR /&gt;&lt;BR /&gt;I want to mount the one cd-rom temp. and the other perment...&lt;BR /&gt;&lt;BR /&gt;thanks in adv&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;wish</description>
      <pubDate>Wed, 05 Apr 2006 05:48:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mountime-cd-rom/m-p/3766181#M260416</guid>
      <dc:creator>wish_1</dc:creator>
      <dc:date>2006-04-05T05:48:35Z</dc:date>
    </item>
    <item>
      <title>Re: Mountime CD-ROM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mountime-cd-rom/m-p/3766182#M260417</link>
      <description>You basically have the right idea.  Use ioscan to find your CD-ROM:&lt;BR /&gt;&lt;BR /&gt;root# ioscan -kfnCdisk&lt;BR /&gt;Class     I  H/W Path       Driver S/W State   H/W Type     Description&lt;BR /&gt;=======================================================================&lt;BR /&gt;disk      0  10/0/14/0.0.0  sdisk CLAIMED     DEVICE       TEAC    CD-532E-B&lt;BR /&gt;                           /dev/dsk/c0t0d0   /dev/rdsk/c0t0d0&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Then create the mount point:&lt;BR /&gt;&lt;BR /&gt;mkdir /cdrom&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;And mount the device:&lt;BR /&gt;&lt;BR /&gt;mount /dev/dsk/c0t0d0 /cdrom&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Wed, 05 Apr 2006 05:53:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mountime-cd-rom/m-p/3766182#M260417</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2006-04-05T05:53:28Z</dc:date>
    </item>
    <item>
      <title>Re: Mountime CD-ROM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mountime-cd-rom/m-p/3766183#M260418</link>
      <description>Sorry, forgot the permanent part of the question.&lt;BR /&gt;&lt;BR /&gt;To make it permanent, you would put an entry in /etc/fstab, not /etc/mnttab.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Wed, 05 Apr 2006 05:55:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mountime-cd-rom/m-p/3766183#M260418</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2006-04-05T05:55:44Z</dc:date>
    </item>
    <item>
      <title>Re: Mountime CD-ROM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mountime-cd-rom/m-p/3766184#M260419</link>
      <description>For temporay use like,&lt;BR /&gt;&lt;BR /&gt;# mkdir /cdrom1&lt;BR /&gt;# mount -F cdfs &lt;DEVICE&gt; /cdrom1&lt;BR /&gt;&lt;BR /&gt;Permanent:&lt;BR /&gt;&lt;BR /&gt;Put the entries in /etc/fstab file.&lt;BR /&gt;&lt;BR /&gt;--&lt;BR /&gt;Muthu&lt;/DEVICE&gt;</description>
      <pubDate>Wed, 05 Apr 2006 05:56:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mountime-cd-rom/m-p/3766184#M260419</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2006-04-05T05:56:55Z</dc:date>
    </item>
    <item>
      <title>Re: Mountime CD-ROM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mountime-cd-rom/m-p/3766185#M260420</link>
      <description>Hi Wish, &lt;BR /&gt;&lt;BR /&gt;You can use the following, &lt;BR /&gt;&lt;BR /&gt;# mount -F cdfs /dev/cdrom /cdrom1&lt;BR /&gt;&lt;BR /&gt;You can add entry into /etc/fstab to make it permanent. &lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Wed, 05 Apr 2006 05:59:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mountime-cd-rom/m-p/3766185#M260420</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2006-04-05T05:59:21Z</dc:date>
    </item>
    <item>
      <title>Re: Mountime CD-ROM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mountime-cd-rom/m-p/3766186#M260421</link>
      <description>make sure pfs_mountd and pfsd daemons are running&lt;BR /&gt;Issuethe command&lt;BR /&gt;&lt;BR /&gt;pfs_mountd &lt;DEVICE&gt; &lt;MOUNT location=""&gt;&lt;BR /&gt;&lt;BR /&gt;ex. pfs_mountd /dev/rdsk/c0t0d3 /cdrom&lt;BR /&gt;&lt;BR /&gt;&lt;/MOUNT&gt;&lt;/DEVICE&gt;</description>
      <pubDate>Wed, 05 Apr 2006 06:00:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mountime-cd-rom/m-p/3766186#M260421</guid>
      <dc:creator>BPatrick</dc:creator>
      <dc:date>2006-04-05T06:00:30Z</dc:date>
    </item>
    <item>
      <title>Re: Mountime CD-ROM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mountime-cd-rom/m-p/3766187#M260422</link>
      <description>dear all,&lt;BR /&gt;&lt;BR /&gt;thanks a lot to one and all...&lt;BR /&gt;&lt;BR /&gt;but i am talk about sun servers&lt;BR /&gt;&lt;BR /&gt;regards</description>
      <pubDate>Wed, 05 Apr 2006 06:17:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mountime-cd-rom/m-p/3766187#M260422</guid>
      <dc:creator>wish_1</dc:creator>
      <dc:date>2006-04-05T06:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: Mountime CD-ROM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mountime-cd-rom/m-p/3766188#M260423</link>
      <description>&lt;BR /&gt;# cd /etc/init.d&lt;BR /&gt;# ./volmgt start&lt;BR /&gt;&lt;BR /&gt;the automounter will mount the cdrom for you.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Robert-Jan</description>
      <pubDate>Wed, 05 Apr 2006 06:20:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mountime-cd-rom/m-p/3766188#M260423</guid>
      <dc:creator>Robert-Jan Goossens</dc:creator>
      <dc:date>2006-04-05T06:20:10Z</dc:date>
    </item>
  </channel>
</rss>

