<?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 create disk partiton in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427825#M355331</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Want to clarify few things to give you support.&lt;BR /&gt;&lt;BR /&gt;1) One disk you already added to vg00 (having OS filesystems) and want to add one more.&lt;BR /&gt;&lt;BR /&gt;2) Is this new disk is going to use for any new filesystem or to mirror the OS filesystem?&lt;BR /&gt;&lt;BR /&gt;To include the disk into vg00, follow below steps:&lt;BR /&gt;&lt;BR /&gt;# ioscan -fnC disk&lt;BR /&gt;&lt;BR /&gt;---- Identify your newly assignded disk and it path (cXtXdX)&lt;BR /&gt;&lt;BR /&gt;# pvcreate /dev/rdsk/cXdXtX&lt;BR /&gt;&lt;BR /&gt;It will create LVM resident structure.&lt;BR /&gt;&lt;BR /&gt;# vgextend /dev/vg00 /dev/dsk/cXdXtX&lt;BR /&gt;&lt;BR /&gt;It will add the disk to the Volume Group&lt;BR /&gt;&lt;BR /&gt;# lvcreate -L 120 -n lvname /dev/vg00&lt;BR /&gt;&lt;BR /&gt;Note: this will create a logical volume of 120 MB.&lt;BR /&gt;&lt;BR /&gt;# newfs -F vxfs /dev/vg00/rlvname&lt;BR /&gt;&lt;BR /&gt;Note: to create an hfs filesystem change vxfs to hfs in the previous command.&lt;BR /&gt;&lt;BR /&gt;# mkdir /home&lt;BR /&gt;&lt;BR /&gt;# mount /dev/vg00/lvname /home&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;&lt;BR /&gt;Vikas</description>
    <pubDate>Wed, 27 May 2009 13:34:18 GMT</pubDate>
    <dc:creator>Vikas Thorat</dc:creator>
    <dc:date>2009-05-27T13:34:18Z</dc:date>
    <item>
      <title>How to create disk partiton</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427820#M355326</link>
      <description>Hi there,&lt;BR /&gt;&lt;BR /&gt;I have a Itanium workstation with HPUX 11.23 with one disk and want to create a second disk partition from the disk, so I can include that one into volume group vg00.&lt;BR /&gt;&lt;BR /&gt;How do I create that partiton?&lt;BR /&gt;&lt;BR /&gt;Thanx in advance.</description>
      <pubDate>Wed, 27 May 2009 13:22:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427820#M355326</guid>
      <dc:creator>Chris2005</dc:creator>
      <dc:date>2009-05-27T13:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to create disk partiton</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427821#M355327</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;as i understood there is another disk and you want to include it in vg00, so:&lt;BR /&gt;&lt;BR /&gt;vgextend /dev/vg00 /dev/dsk/cxtxtx(your second disk)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 27 May 2009 13:27:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427821#M355327</guid>
      <dc:creator>Kenan Erdey</dc:creator>
      <dc:date>2009-05-27T13:27:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to create disk partiton</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427822#M355328</link>
      <description>you use idisk to partition disks:&lt;BR /&gt;&lt;BR /&gt;man idisk</description>
      <pubDate>Wed, 27 May 2009 13:29:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427822#M355328</guid>
      <dc:creator>likid0</dc:creator>
      <dc:date>2009-05-27T13:29:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to create disk partiton</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427823#M355329</link>
      <description>No there is one disk with one partition. Now I want to use the spare space on that disk for creating a second partition.</description>
      <pubDate>Wed, 27 May 2009 13:30:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427823#M355329</guid>
      <dc:creator>Chris2005</dc:creator>
      <dc:date>2009-05-27T13:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to create disk partiton</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427824#M355330</link>
      <description>pvcreate /dev/rdsk/cXtXdXsX&lt;BR /&gt;vgextend vg00 /dev/rdsk/cXtXdXsX&lt;BR /&gt;&lt;BR /&gt;hope this helps&lt;BR /&gt;&lt;BR /&gt;PS. Partition term is generally used by Windoze systems and does not apply, and generally confuse everybody, when mentioned in the context of hpux.</description>
      <pubDate>Wed, 27 May 2009 13:31:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427824#M355330</guid>
      <dc:creator>Mel Burslan</dc:creator>
      <dc:date>2009-05-27T13:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to create disk partiton</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427825#M355331</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Want to clarify few things to give you support.&lt;BR /&gt;&lt;BR /&gt;1) One disk you already added to vg00 (having OS filesystems) and want to add one more.&lt;BR /&gt;&lt;BR /&gt;2) Is this new disk is going to use for any new filesystem or to mirror the OS filesystem?&lt;BR /&gt;&lt;BR /&gt;To include the disk into vg00, follow below steps:&lt;BR /&gt;&lt;BR /&gt;# ioscan -fnC disk&lt;BR /&gt;&lt;BR /&gt;---- Identify your newly assignded disk and it path (cXtXdX)&lt;BR /&gt;&lt;BR /&gt;# pvcreate /dev/rdsk/cXdXtX&lt;BR /&gt;&lt;BR /&gt;It will create LVM resident structure.&lt;BR /&gt;&lt;BR /&gt;# vgextend /dev/vg00 /dev/dsk/cXdXtX&lt;BR /&gt;&lt;BR /&gt;It will add the disk to the Volume Group&lt;BR /&gt;&lt;BR /&gt;# lvcreate -L 120 -n lvname /dev/vg00&lt;BR /&gt;&lt;BR /&gt;Note: this will create a logical volume of 120 MB.&lt;BR /&gt;&lt;BR /&gt;# newfs -F vxfs /dev/vg00/rlvname&lt;BR /&gt;&lt;BR /&gt;Note: to create an hfs filesystem change vxfs to hfs in the previous command.&lt;BR /&gt;&lt;BR /&gt;# mkdir /home&lt;BR /&gt;&lt;BR /&gt;# mount /dev/vg00/lvname /home&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;&lt;BR /&gt;Vikas</description>
      <pubDate>Wed, 27 May 2009 13:34:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427825#M355331</guid>
      <dc:creator>Vikas Thorat</dc:creator>
      <dc:date>2009-05-27T13:34:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to create disk partiton</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427826#M355332</link>
      <description>It seems I already have some partitons on my disk device:&lt;BR /&gt;&lt;BR /&gt;# ioscan -funC disk&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/2/2/0.1.0.0  sdisk      CLAIMED     DEVICE       HL-DT-STDVD-ROM GDR8163B&lt;BR /&gt;                           /dev/dsk/c1t0d0   /dev/rdsk/c1t0d0&lt;BR /&gt;disk      1  0/3/1/0.8.0    sdisk      CLAIMED     DEVICE       FUJITSU MAU3073NP&lt;BR /&gt;                           /dev/dsk/c2t8d0     /dev/dsk/c2t8d0s2   /dev/rdsk/c2t8d0    /dev/rdsk/c2t8d0s2&lt;BR /&gt;                           /dev/dsk/c2t8d0s1   /dev/dsk/c2t8d0s3   /dev/rdsk/c2t8d0s1  /dev/rdsk/c2t8d0s3&lt;BR /&gt;--&lt;BR /&gt;&lt;BR /&gt;vgdisplay shows I'm using /dev/dsk/c2t8d0s2 now. How can I check which one is empty?</description>
      <pubDate>Wed, 27 May 2009 13:42:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427826#M355332</guid>
      <dc:creator>Chris2005</dc:creator>
      <dc:date>2009-05-27T13:42:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to create disk partiton</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427827#M355333</link>
      <description>I have one disk device only</description>
      <pubDate>Wed, 27 May 2009 13:43:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427827#M355333</guid>
      <dc:creator>Chris2005</dc:creator>
      <dc:date>2009-05-27T13:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to create disk partiton</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427828#M355334</link>
      <description>Dear Chris&lt;BR /&gt;&lt;BR /&gt;what i understand is u need to create one more physical volume and u want to add that disk in the volume group&lt;BR /&gt;for that purpose&lt;BR /&gt;first u have to create physical volume&lt;BR /&gt;by using pvcreate command&lt;BR /&gt;pvcreate /dev/rdsk/c#t#d#&lt;BR /&gt;once u created physical volume u can add this physical volume in volume group by extending the volume group&lt;BR /&gt;vgextend vg00 /dev/rdsk/c#t#d#&lt;BR /&gt;&lt;BR /&gt;thanks and regards&lt;BR /&gt;&lt;BR /&gt;Sajjad Sahir&lt;BR /&gt;</description>
      <pubDate>Wed, 27 May 2009 13:46:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427828#M355334</guid>
      <dc:creator>Sajjad Sahir</dc:creator>
      <dc:date>2009-05-27T13:46:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to create disk partiton</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427829#M355335</link>
      <description>Again, I have only 1 disk drive (when I open the machine there is only 1 disk drive).&lt;BR /&gt;&lt;BR /&gt;/dev/dsk/c2t8d0s2 is the only disk (partition) that is included in vg00.&lt;BR /&gt;&lt;BR /&gt;I wanted to know how to create another disk (partition). Like /dev/dsk/c2t8d0s3 for instance.&lt;BR /&gt;&lt;BR /&gt;Now it seems I already have multiple disks (partitons of one disk drive)&lt;BR /&gt;&lt;BR /&gt;# ioscan -funC disk&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/2/2/0.1.0.0  sdisk      CLAIMED     DEVICE       HL-DT-STDVD-ROM GDR8163B&lt;BR /&gt;                           /dev/dsk/c1t0d0   /dev/rdsk/c1t0d0&lt;BR /&gt;disk      1  0/3/1/0.8.0    sdisk      CLAIMED     DEVICE       FUJITSU MAU3073NP&lt;BR /&gt;                           /dev/dsk/c2t8d0     /dev/dsk/c2t8d0s2   /dev/rdsk/c2t8d0    /dev/rdsk/c2t8d0s2&lt;BR /&gt;                           /dev/dsk/c2t8d0s1   /dev/dsk/c2t8d0s3   /dev/rdsk/c2t8d0s1  /dev/rdsk/c2t8d0s3&lt;BR /&gt;--&lt;BR /&gt;&lt;BR /&gt;How do I chech which one is empty?</description>
      <pubDate>Wed, 27 May 2009 14:05:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427829#M355335</guid>
      <dc:creator>Chris2005</dc:creator>
      <dc:date>2009-05-27T14:05:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to create disk partiton</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427830#M355336</link>
      <description>yes &lt;BR /&gt;if u want one more disk like this one u have to present the disk from storage, once u added disk from storage&lt;BR /&gt;u have to find the lun number.&lt;BR /&gt;evainfo -i &lt;BR /&gt;xpinfo -i it dependes  on storage&lt;BR /&gt;once u got lun number &lt;BR /&gt;u have to create device files&lt;BR /&gt;by using insf -C disk&lt;BR /&gt;then  u can create new physical volume based on that lun, please tell us which storage u are using&lt;BR /&gt;&lt;BR /&gt;thanks and regards&lt;BR /&gt;&lt;BR /&gt;Sajjad Sahir</description>
      <pubDate>Wed, 27 May 2009 14:09:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427830#M355336</guid>
      <dc:creator>Sajjad Sahir</dc:creator>
      <dc:date>2009-05-27T14:09:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to create disk partiton</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427831#M355337</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;disk partitioning is only for boot disks. and it's up to three.&lt;BR /&gt;&lt;BR /&gt;have a look at thread:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1110904" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1110904&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 27 May 2009 14:11:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427831#M355337</guid>
      <dc:creator>Kenan Erdey</dc:creator>
      <dc:date>2009-05-27T14:11:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to create disk partiton</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427832#M355338</link>
      <description>As stated before there is spare space on that disk drive to create a second disk (partition).&lt;BR /&gt;&lt;BR /&gt;I still would like to know how to do that. Furthermore I noticed via ioscan (look above) that there are already multiple other disks (partitions) available. How do I check which one is empty?</description>
      <pubDate>Wed, 27 May 2009 14:24:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427832#M355338</guid>
      <dc:creator>Chris2005</dc:creator>
      <dc:date>2009-05-27T14:24:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to create disk partiton</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427833#M355339</link>
      <description>Hi &lt;BR /&gt; &lt;BR /&gt;Use pvdisplay {disk path} to see the info of PV</description>
      <pubDate>Wed, 27 May 2009 14:32:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427833#M355339</guid>
      <dc:creator>Sunny123_1</dc:creator>
      <dc:date>2009-05-27T14:32:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to create disk partiton</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427834#M355340</link>
      <description>Chris2005&lt;BR /&gt;&lt;BR /&gt;Partition1 example(c1t0d1s1) is for efi you need it to boot you system &lt;BR /&gt;&lt;BR /&gt;And Partition3 example(c1t0d1s3) is for hp support tools normally it has 500 megs only.&lt;BR /&gt;&lt;BR /&gt;and you can have 3 partions tops, so you it's complicated</description>
      <pubDate>Wed, 27 May 2009 14:44:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427834#M355340</guid>
      <dc:creator>likid0</dc:creator>
      <dc:date>2009-05-27T14:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to create disk partiton</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427835#M355341</link>
      <description>You seem quite convinced that there is empty space on the disk, even though that would be a highly abnormal configuration for any modern HP-UX system. What makes you so certain that you have empty space on the disk that you could use?&lt;BR /&gt;</description>
      <pubDate>Wed, 27 May 2009 15:56:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427835#M355341</guid>
      <dc:creator>Heironimus</dc:creator>
      <dc:date>2009-05-27T15:56:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to create disk partiton</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427836#M355342</link>
      <description>Ok I have 2720 of free PE.&lt;BR /&gt;&lt;BR /&gt;# vgdisplay&lt;BR /&gt;--- Volume groups ---&lt;BR /&gt;VG Name                     /dev/vg00&lt;BR /&gt;VG Write Access             read/write&lt;BR /&gt;VG Status                   available&lt;BR /&gt;Max LV                      255&lt;BR /&gt;Cur LV                      9&lt;BR /&gt;Open LV                     9&lt;BR /&gt;Max PV                      16&lt;BR /&gt;Cur PV                      2&lt;BR /&gt;Act PV                      2&lt;BR /&gt;Max PE per PV               4328&lt;BR /&gt;VGDA                        4&lt;BR /&gt;PE Size (Mbytes)            16&lt;BR /&gt;Total PE                    4342&lt;BR /&gt;Alloc PE                    1622&lt;BR /&gt;Free PE                     2720&lt;BR /&gt;Total PVG                   0&lt;BR /&gt;Total Spare PVs             0&lt;BR /&gt;Total Spare PVs in use      0&lt;BR /&gt;&lt;BR /&gt;But when extending it says there is not enough:&lt;BR /&gt;&lt;BR /&gt;# lvextend -L 304 /dev/vg00/lvol3&lt;BR /&gt;lvextend: Not enough free physical extents available.&lt;BR /&gt;Logical volume "/dev/vg00/lvol3" could not be extended.&lt;BR /&gt;Failure possibly caused by contiguous allocation policy.&lt;BR /&gt;Failure possibly caused by strict allocation policy&lt;BR /&gt;&lt;BR /&gt;What could be the problem?</description>
      <pubDate>Wed, 27 May 2009 16:08:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427836#M355342</guid>
      <dc:creator>Chris2005</dc:creator>
      <dc:date>2009-05-27T16:08:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to create disk partiton</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427837#M355343</link>
      <description>If lvol3 is configured to require contiguous allocation (which it probably is, check in lvdisplay) then you won't be able to extend it because lvol4 is right behind it on the disk. Contiguous allocation for stuff in vg00 is one of those little nuisances in HP-UX.</description>
      <pubDate>Wed, 27 May 2009 16:51:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427837#M355343</guid>
      <dc:creator>Heironimus</dc:creator>
      <dc:date>2009-05-27T16:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to create disk partiton</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427838#M355344</link>
      <description>Ok I've made a lvol10 now and mounted that to the point in the file system tree that needed the extra space.&lt;BR /&gt;&lt;BR /&gt;Thanx for helping.&lt;BR /&gt;&lt;BR /&gt;Still I'm wondering how to make another disk (partition) from the space left on that disk drive. Anyone?</description>
      <pubDate>Wed, 27 May 2009 17:23:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427838#M355344</guid>
      <dc:creator>Chris2005</dc:creator>
      <dc:date>2009-05-27T17:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to create disk partiton</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427839#M355345</link>
      <description>OK, I'll ask it again: why are you so sure that there is free space on the underlying disk? A typical configuration for an Integrity boot disk would be a small EFI slice, a small utility slice, and a slice with the entire rest of the disk assigned to vg00. Slices (partitions) aren't really supported in modern HP-UX, using them in a very specific manner on Itanium boot disks is a special case.</description>
      <pubDate>Wed, 27 May 2009 18:39:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-disk-partiton/m-p/4427839#M355345</guid>
      <dc:creator>Heironimus</dc:creator>
      <dc:date>2009-05-27T18:39:25Z</dc:date>
    </item>
  </channel>
</rss>

