<?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: How to ignore the CD-ROM in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-ignore-the-cd-rom/m-p/2906381#M936330</link>
    <description>Paul,&lt;BR /&gt;What is your script doing?&lt;BR /&gt;&lt;BR /&gt;If you use ioscan -fnC disk, the cd-rom will appear like the following with cd-rom in the description:&lt;BR /&gt;disk     11  8/16/5.2.0  sdisk       CLAIMED   DEVICE    TOSHIBA CD-ROM XM-5701T&lt;BR /&gt;A&lt;BR /&gt;&lt;BR /&gt;Your script should test if the description has CD-ROM and skip that line if it does.&lt;BR /&gt;Cheryl</description>
    <pubDate>Mon, 17 Feb 2003 18:58:52 GMT</pubDate>
    <dc:creator>Cheryl Griffin</dc:creator>
    <dc:date>2003-02-17T18:58:52Z</dc:date>
    <item>
      <title>How to ignore the CD-ROM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-ignore-the-cd-rom/m-p/2906380#M936329</link>
      <description>Greetings from snowed in Cleveland,&lt;BR /&gt;.&lt;BR /&gt;I'm looking for some help on a short script I'm writing.  I'm trying to get a total of the disk space on a system, internal and external.  The problem is it keeps hanging trying to get information from the CD-ROM.  I'm using ioscan to find the disks, then diskinfo for the size.&lt;BR /&gt;.&lt;BR /&gt;Any ideas would be greatly appreciated.&lt;BR /&gt;.&lt;BR /&gt;Paul Middleton</description>
      <pubDate>Mon, 17 Feb 2003 18:55:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-ignore-the-cd-rom/m-p/2906380#M936329</guid>
      <dc:creator>Paul Middleton</dc:creator>
      <dc:date>2003-02-17T18:55:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to ignore the CD-ROM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-ignore-the-cd-rom/m-p/2906381#M936330</link>
      <description>Paul,&lt;BR /&gt;What is your script doing?&lt;BR /&gt;&lt;BR /&gt;If you use ioscan -fnC disk, the cd-rom will appear like the following with cd-rom in the description:&lt;BR /&gt;disk     11  8/16/5.2.0  sdisk       CLAIMED   DEVICE    TOSHIBA CD-ROM XM-5701T&lt;BR /&gt;A&lt;BR /&gt;&lt;BR /&gt;Your script should test if the description has CD-ROM and skip that line if it does.&lt;BR /&gt;Cheryl</description>
      <pubDate>Mon, 17 Feb 2003 18:58:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-ignore-the-cd-rom/m-p/2906381#M936330</guid>
      <dc:creator>Cheryl Griffin</dc:creator>
      <dc:date>2003-02-17T18:58:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to ignore the CD-ROM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-ignore-the-cd-rom/m-p/2906382#M936331</link>
      <description>If you are reading from ioscan :&lt;BR /&gt;#  ioscan -fnC disk |more&lt;BR /&gt;Class     I  H/W Path      Driver   S/W State   H/W Type     Description&lt;BR /&gt;=========================================================================&lt;BR /&gt;disk      0  0/0/1/1.2.0   sdisk    CLAIMED     DEVICE       SEAGATE ST39103LC&lt;BR /&gt;                          /dev/dsk/c1t2d0   /dev/rdsk/c1t2d0&lt;BR /&gt;disk      1  0/0/2/1.2.0   sdisk    CLAIMED     DEVICE       HP      DVD-ROM 304&lt;BR /&gt;                          /dev/dsk/c3t2d0   /dev/rdsk/c3t2d0&lt;BR /&gt;&lt;BR /&gt;#  ioscan -fnC disk |grep -v DVD-ROM &lt;BR /&gt;   will ignore the DVD-ROM&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;T??</description>
      <pubDate>Mon, 17 Feb 2003 19:02:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-ignore-the-cd-rom/m-p/2906382#M936331</guid>
      <dc:creator>T. M. Louah</dc:creator>
      <dc:date>2003-02-17T19:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to ignore the CD-ROM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-ignore-the-cd-rom/m-p/2906383#M936332</link>
      <description>Cheryl &amp;amp; T.M.&lt;BR /&gt;.&lt;BR /&gt;You solved my problem, now I'm using ioscan -kC disk | grep -v CD-ROM &lt;BR /&gt;.&lt;BR /&gt;The -kC disk is  looking at the kernel info so I won't disturb the operation by accidently causing any forced attachments, and by not using the -f, I don't get the full display.&lt;BR /&gt;.&lt;BR /&gt;Actually, I found my biggest problem was misspelling a command.  (Think in unix, type in English).&lt;BR /&gt;.&lt;BR /&gt;Thanks for your time.&lt;BR /&gt;.&lt;BR /&gt;Paul Middleton &lt;BR /&gt;By the way, we have 6 inches of "Partly Cloudy with a chance of blowing snow" here in Cleveland.&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Feb 2003 19:32:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-ignore-the-cd-rom/m-p/2906383#M936332</guid>
      <dc:creator>Paul Middleton</dc:creator>
      <dc:date>2003-02-17T19:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to ignore the CD-ROM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-ignore-the-cd-rom/m-p/2906384#M936333</link>
      <description>Good job.&lt;BR /&gt;&lt;BR /&gt;That was one massive storm system that moved across the states.  Last week we had spring like temps.  Sunday we had a light dusting of snow.  Try to stay warm. &lt;BR /&gt;Cheryl</description>
      <pubDate>Mon, 17 Feb 2003 19:42:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-ignore-the-cd-rom/m-p/2906384#M936333</guid>
      <dc:creator>Cheryl Griffin</dc:creator>
      <dc:date>2003-02-17T19:42:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to ignore the CD-ROM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-ignore-the-cd-rom/m-p/2906385#M936334</link>
      <description>Hey Paul, &lt;BR /&gt;Cheryl &amp;amp; I were talking about how we gonna split the points .. I think u r a fair dude!&lt;BR /&gt;PAP! (a.k.a pliz assign points)</description>
      <pubDate>Mon, 17 Feb 2003 21:23:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-ignore-the-cd-rom/m-p/2906385#M936334</guid>
      <dc:creator>T. M. Louah</dc:creator>
      <dc:date>2003-02-17T21:23:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to ignore the CD-ROM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-ignore-the-cd-rom/m-p/2906386#M936335</link>
      <description>Hi Paul,&lt;BR /&gt;&lt;BR /&gt;Greetings from sunny Sydney....&lt;BR /&gt;no snow here....&lt;BR /&gt;&lt;BR /&gt;Have a look at some of the offerings from the two sysadmin scripts postings. You'll be surprised how many scripts there are already on this subject.&lt;BR /&gt;&lt;BR /&gt;scripts 1&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x026250011d20d6118ff40090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x026250011d20d6118ff40090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;scripts 2&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x836cc1c4ceddd61190050090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x836cc1c4ceddd61190050090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;Michael</description>
      <pubDate>Mon, 17 Feb 2003 21:28:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-ignore-the-cd-rom/m-p/2906386#M936335</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2003-02-17T21:28:39Z</dc:date>
    </item>
  </channel>
</rss>

