<?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: if is possible in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/if-is-possible/m-p/4371299#M668669</link>
    <description>There was facility to setup loopback devices in earlier releases of HP-UX but now it is not there :-(. &lt;BR /&gt;I really miss losetup(linux)/lofiadm(sol) on HP sometimes.</description>
    <pubDate>Wed, 04 Mar 2009 14:54:36 GMT</pubDate>
    <dc:creator>Srimalik</dc:creator>
    <dc:date>2009-03-04T14:54:36Z</dc:date>
    <item>
      <title>if is possible</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/if-is-possible/m-p/4371297#M668667</link>
      <description>I have question&lt;BR /&gt;&lt;BR /&gt;if is possible create on HPUX about ~500 or artificial/fake disks devies?I need prepare to test system with 500 or more disks, but I havn't enough luns on storage systems.Thanks a lot for help.&lt;BR /&gt;&lt;BR /&gt;Slawek</description>
      <pubDate>Wed, 04 Mar 2009 12:28:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/if-is-possible/m-p/4371297#M668667</guid>
      <dc:creator>Slawek Ksiazek</dc:creator>
      <dc:date>2009-03-04T12:28:01Z</dc:date>
    </item>
    <item>
      <title>Re: if is possible</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/if-is-possible/m-p/4371298#M668668</link>
      <description>You can create the device files with the "mknod" command but you cannot use these in LVM to create volume groups and logical volumes. I know of now way to actually present fake disks and use them for LVM. Unless there is something like this in the intergrity virtual machine environment, similar to what VMware is doing.</description>
      <pubDate>Wed, 04 Mar 2009 13:48:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/if-is-possible/m-p/4371298#M668668</guid>
      <dc:creator>TTr</dc:creator>
      <dc:date>2009-03-04T13:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: if is possible</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/if-is-possible/m-p/4371299#M668669</link>
      <description>There was facility to setup loopback devices in earlier releases of HP-UX but now it is not there :-(. &lt;BR /&gt;I really miss losetup(linux)/lofiadm(sol) on HP sometimes.</description>
      <pubDate>Wed, 04 Mar 2009 14:54:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/if-is-possible/m-p/4371299#M668669</guid>
      <dc:creator>Srimalik</dc:creator>
      <dc:date>2009-03-04T14:54:36Z</dc:date>
    </item>
    <item>
      <title>Re: if is possible</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/if-is-possible/m-p/4371300#M668670</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;Loopback file systems are still supported&lt;BR /&gt;and available (even in HP-UX 11.31).&lt;BR /&gt;&lt;BR /&gt;Example:&lt;BR /&gt;&lt;BR /&gt;# mount -F lofs /usr/sbin /tmp/sbin&lt;BR /&gt;&lt;BR /&gt;More details in mount_lofs(1M).&lt;BR /&gt;&lt;BR /&gt;This creates "additional" file systems but not&lt;BR /&gt;LUNs or physical volumes, so LOFS is not going&lt;BR /&gt;to help you.&lt;BR /&gt;&lt;BR /&gt;If you want to do some load testing, refer to&lt;BR /&gt;several other references in this forum that&lt;BR /&gt;discuss various tools for it (some free&lt;BR /&gt;and some commercial).&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;VK2COT</description>
      <pubDate>Thu, 05 Mar 2009 02:16:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/if-is-possible/m-p/4371300#M668670</guid>
      <dc:creator>VK2COT</dc:creator>
      <dc:date>2009-03-05T02:16:51Z</dc:date>
    </item>
    <item>
      <title>Re: if is possible</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/if-is-possible/m-p/4371301#M668671</link>
      <description>Thanks all for help,but still i seek solution where i can create fake disks devices.I need only it discover trough ioscan.&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;&lt;BR /&gt;Sk</description>
      <pubDate>Thu, 05 Mar 2009 05:45:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/if-is-possible/m-p/4371301#M668671</guid>
      <dc:creator>Slawek Ksiazek</dc:creator>
      <dc:date>2009-03-05T05:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: if is possible</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/if-is-possible/m-p/4371302#M668672</link>
      <description>&amp;gt;mount -F lofs /usr/sbin /tmp/sbin&lt;BR /&gt;it is more similar to the --bind option available in linux. But there seem to be nothing like losetup. &lt;BR /&gt;&lt;BR /&gt;you can use losetup to make files(usually sparse files with very large holes) appear as block devices in /dev/ which can be used by LVM. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Mar 2009 06:13:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/if-is-possible/m-p/4371302#M668672</guid>
      <dc:creator>Srimalik</dc:creator>
      <dc:date>2009-03-05T06:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: if is possible</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/if-is-possible/m-p/4371303#M668673</link>
      <description>If you have 11.23 or 11.31 you can use iSCSI. Use another box to create many small "LUN's" and present it to your box.&lt;BR /&gt;&lt;BR /&gt;My 2 cents,&lt;BR /&gt;Armin&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Mar 2009 12:48:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/if-is-possible/m-p/4371303#M668673</guid>
      <dc:creator>Armin Kunaschik</dc:creator>
      <dc:date>2009-03-05T12:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: if is possible</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/if-is-possible/m-p/4371304#M668674</link>
      <description>How can I use iscsi to do it? How looks like configuration iscsi on HP?Thanks for info.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Slawek</description>
      <pubDate>Fri, 06 Mar 2009 05:42:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/if-is-possible/m-p/4371304#M668674</guid>
      <dc:creator>Slawek Ksiazek</dc:creator>
      <dc:date>2009-03-06T05:42:05Z</dc:date>
    </item>
    <item>
      <title>Re: if is possible</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/if-is-possible/m-p/4371305#M668675</link>
      <description>&amp;gt; Use another box to create many small "LUN's" and present it to your box.&lt;BR /&gt;&lt;BR /&gt;You still need a iSCSI storage server for this. The HP-UX iSCSI software is available only in initiator mode and NOT in target mode. At least I have not seen any iSCSI software to allow iSCSI target configuration in HP-UX.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/T1452-90011/T1452-90011.pdf" target="_blank"&gt;http://docs.hp.com/en/T1452-90011/T1452-90011.pdf&lt;/A&gt;</description>
      <pubDate>Fri, 06 Mar 2009 12:51:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/if-is-possible/m-p/4371305#M668675</guid>
      <dc:creator>TTr</dc:creator>
      <dc:date>2009-03-06T12:51:48Z</dc:date>
    </item>
    <item>
      <title>Re: if is possible</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/if-is-possible/m-p/4371306#M668676</link>
      <description>I think you need to invest on some hardware here to provide the disks to your server. Even a small RAID card with 1-3 disks would be sufficient. But you should check the RAID card, they have a limit on the maximum number of LUNs you can create in them.&lt;BR /&gt;&lt;BR /&gt;What exactly are you trying to do with that many LUNs on your server?</description>
      <pubDate>Fri, 06 Mar 2009 12:56:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/if-is-possible/m-p/4371306#M668676</guid>
      <dc:creator>TTr</dc:creator>
      <dc:date>2009-03-06T12:56:44Z</dc:date>
    </item>
    <item>
      <title>Re: if is possible</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/if-is-possible/m-p/4371307#M668677</link>
      <description>There are many possibilities... check your favourite OS for iSCSI target support. Current Windows and Linux versions should be able to present iSCSI-LUN's. Netapp Filers are able to present iSCSI LUN's... also some EMC or HP boxes.&lt;BR /&gt;&lt;BR /&gt;My 2 cents,&lt;BR /&gt;Armin&lt;BR /&gt;</description>
      <pubDate>Fri, 06 Mar 2009 13:03:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/if-is-possible/m-p/4371307#M668677</guid>
      <dc:creator>Armin Kunaschik</dc:creator>
      <dc:date>2009-03-06T13:03:03Z</dc:date>
    </item>
  </channel>
</rss>

