<?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: error in creating volume group in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912183#M623265</link>
    <description>hi,&lt;BR /&gt;&lt;BR /&gt;aiyoh, never mind.&lt;BR /&gt;&lt;BR /&gt;first, do this to check if vg02 exists:&lt;BR /&gt;# vgdisplay -v vg02&lt;BR /&gt;&lt;BR /&gt;secondly, would like to know what other volume group exists:&lt;BR /&gt;# ls -ld /dev/vg*&lt;BR /&gt;&lt;BR /&gt;please reply with output.&lt;BR /&gt;&lt;BR /&gt;u may have to rm the /dev/vg02 and re-do the steps i send earlier.&lt;BR /&gt;&lt;BR /&gt;regards.</description>
    <pubDate>Tue, 12 Jul 2005 22:23:13 GMT</pubDate>
    <dc:creator>Joseph Loo</dc:creator>
    <dc:date>2005-07-12T22:23:13Z</dc:date>
    <item>
      <title>error in creating volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912173#M623255</link>
      <description>hi all,&lt;BR /&gt;&lt;BR /&gt;i have this particular error when i create a volume group.&lt;BR /&gt;how can i over come it?&lt;BR /&gt;&lt;BR /&gt;root@smtp1:/&amp;gt;vgcreate /dev/vg02 /dev/dsk/c5t10d0&lt;BR /&gt;Increased the number of physical extents per physical volume to 17501.&lt;BR /&gt;vgcreate: Volume group "/dev/vg02" could not be created:&lt;BR /&gt;A volume group is already using this major and minor number.&lt;BR /&gt;Please check the minor number of the "group" device file.&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;Calvin</description>
      <pubDate>Tue, 12 Jul 2005 20:14:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912173#M623255</guid>
      <dc:creator>twtandigi.com.my</dc:creator>
      <dc:date>2005-07-12T20:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: error in creating volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912174#M623256</link>
      <description>Hi Calvin,&lt;BR /&gt;&lt;BR /&gt;you are using a minor number for vg02 which already is being used by another. Check all the volume groups to see what minor number they have and use the one thats not being used. Do something linke this&lt;BR /&gt;# ll /dev/vg*/group&lt;BR /&gt;crw-r-----   1 root       sys         64 0x000000 Sep 22  2004 /dev/vg00/group&lt;BR /&gt;crw-r-----   1 root       sys         64 0x090000 Oct 28  2004 /dev/vg02/group&lt;BR /&gt;crw-r-----   1 root       sys         64 0x050000 Oct 25  2004 /dev/vgxx/group&lt;BR /&gt;crw-r-----   1 root       sys         64 0x0a0000 Oct  5  2004 /dev/vgyy/group&lt;BR /&gt;crw-r-----   1 root       sys         64 0x030000 Dec 29  2004 /dev/vgzz/group&lt;BR /&gt;&lt;BR /&gt;So as you see in column 6 which is the minor number, use the one that is not listed in your ll command.&lt;BR /&gt;say 0x010000 (in my case)&lt;BR /&gt;mkdir /dev/vg02&lt;BR /&gt;mknod /dev/vg02/group c 64 0x010000&lt;BR /&gt;then try doing vgcreate &lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;Rajeev</description>
      <pubDate>Tue, 12 Jul 2005 20:20:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912174#M623256</guid>
      <dc:creator>Rajeev  Shukla</dc:creator>
      <dc:date>2005-07-12T20:20:55Z</dc:date>
    </item>
    <item>
      <title>Re: error in creating volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912175#M623257</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;r u extending or creating a new volume group?&lt;BR /&gt;&lt;BR /&gt;if vg02 already exist, u should be extending. so, u may check:&lt;BR /&gt;&lt;BR /&gt;# ls -ld /dev/vg* &lt;BR /&gt; whether vg02 exists, if so:&lt;BR /&gt;# vgextend /dev/vgr02 /dev/dsk/c5t10d0&lt;BR /&gt;&lt;BR /&gt;if u r creating a new volume group:&lt;BR /&gt;&lt;BR /&gt;# pvcreate -f /dev/rdsk/c5t10d0&lt;BR /&gt;# mkdir /dev/vgXX&lt;BR /&gt;# mknod /dev/vgXX/group c 64 0x0#0000&lt;BR /&gt; where # is a minor number which does not exist in /dev/vg*&lt;BR /&gt;# vgcreate vgXX /dev/dsk/c5t10d0&lt;BR /&gt;&lt;BR /&gt;subsequently, u may create the logical volumes whether u have vgextend or vgcreate.&lt;BR /&gt;&lt;BR /&gt;regards.</description>
      <pubDate>Tue, 12 Jul 2005 20:30:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912175#M623257</guid>
      <dc:creator>Joseph Loo</dc:creator>
      <dc:date>2005-07-12T20:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: error in creating volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912176#M623258</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;While you create a VG , the minor number of the group file of the VG should be unique.&lt;BR /&gt;&lt;BR /&gt;Find out the minor number which exists in your server by executing the below command&lt;BR /&gt;&lt;BR /&gt;ll /dev/vg*/group|awk '{print $6,$10}'&lt;BR /&gt;&lt;BR /&gt;The minor number should be 0xNN0000 where NN should be unique within a server.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;CS&lt;BR /&gt;</description>
      <pubDate>Tue, 12 Jul 2005 20:35:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912176#M623258</guid>
      <dc:creator>saju_2</dc:creator>
      <dc:date>2005-07-12T20:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: error in creating volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912177#M623259</link>
      <description>i am still getting another error &lt;BR /&gt;vgcreate: "/dev/vg02/group": not a character device.&lt;BR /&gt;&lt;BR /&gt;what do should i do next?</description>
      <pubDate>Tue, 12 Jul 2005 21:01:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912177#M623259</guid>
      <dc:creator>twtandigi.com.my</dc:creator>
      <dc:date>2005-07-12T21:01:05Z</dc:date>
    </item>
    <item>
      <title>Re: error in creating volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912178#M623260</link>
      <description>Few things&lt;BR /&gt;1. can you post your output of&lt;BR /&gt;ll /dev/vg02/group&lt;BR /&gt;2. Does vg02 already exist or its a new VG you are trying to create.&lt;BR /&gt;</description>
      <pubDate>Tue, 12 Jul 2005 21:28:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912178#M623260</guid>
      <dc:creator>Rajeev  Shukla</dc:creator>
      <dc:date>2005-07-12T21:28:50Z</dc:date>
    </item>
    <item>
      <title>Re: error in creating volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912179#M623261</link>
      <description>ll /dev/vg02/group&lt;BR /&gt;crw-r--r--   1 root       sys         64 0x090000 Jul 13 12:10 /dev/vg02/group&lt;BR /&gt;</description>
      <pubDate>Tue, 12 Jul 2005 22:13:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912179#M623261</guid>
      <dc:creator>twtandigi.com.my</dc:creator>
      <dc:date>2005-07-12T22:13:08Z</dc:date>
    </item>
    <item>
      <title>Re: error in creating volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912180#M623262</link>
      <description>i was trying to create a new vg group but i seem to hit a few setbacks</description>
      <pubDate>Tue, 12 Jul 2005 22:14:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912180#M623262</guid>
      <dc:creator>twtandigi.com.my</dc:creator>
      <dc:date>2005-07-12T22:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: error in creating volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912181#M623263</link>
      <description>1. strings /etc/lvmtab       : to see all the existing volume groups and devices. select an unused volume group name. Assume vg_new&lt;BR /&gt;&lt;BR /&gt;2. mkdir /dev/vg_new&lt;BR /&gt;&lt;BR /&gt;3. ll /dev/vg*/group        : to list all the group files. Select an unused minor number for the new vg. Assume 0x050000.&lt;BR /&gt;&lt;BR /&gt;4. mknod group c 64 0x050000  : create group file.&lt;BR /&gt;&lt;BR /&gt;5. vgcreate /dev/vg_new /dev/dsk/c#d#t# &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Sudeesh&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 12 Jul 2005 22:21:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912181#M623263</guid>
      <dc:creator>Sudeesh</dc:creator>
      <dc:date>2005-07-12T22:21:28Z</dc:date>
    </item>
    <item>
      <title>Re: error in creating volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912182#M623264</link>
      <description>now i have a problem to rename the lvol of the new hard disk that i have placed on the system.&lt;BR /&gt;do you have any suggestion on what should i do to get the things to work?&lt;BR /&gt;lvol1            vg02           VxFS         69904   0        /tempimail&lt;BR /&gt;to &lt;BR /&gt;imail            vg02           VxFS         69904   0        /tempimail</description>
      <pubDate>Tue, 12 Jul 2005 22:22:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912182#M623264</guid>
      <dc:creator>twtandigi.com.my</dc:creator>
      <dc:date>2005-07-12T22:22:09Z</dc:date>
    </item>
    <item>
      <title>Re: error in creating volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912183#M623265</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;aiyoh, never mind.&lt;BR /&gt;&lt;BR /&gt;first, do this to check if vg02 exists:&lt;BR /&gt;# vgdisplay -v vg02&lt;BR /&gt;&lt;BR /&gt;secondly, would like to know what other volume group exists:&lt;BR /&gt;# ls -ld /dev/vg*&lt;BR /&gt;&lt;BR /&gt;please reply with output.&lt;BR /&gt;&lt;BR /&gt;u may have to rm the /dev/vg02 and re-do the steps i send earlier.&lt;BR /&gt;&lt;BR /&gt;regards.</description>
      <pubDate>Tue, 12 Jul 2005 22:23:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912183#M623265</guid>
      <dc:creator>Joseph Loo</dc:creator>
      <dc:date>2005-07-12T22:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: error in creating volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912184#M623266</link>
      <description>Seems like it does not recognize the device file or is corrupted.&lt;BR /&gt;Ok before we proceed plz reconfirm that you dont have any group file with the major number as 0x090000 and then remove the whole /dev/vg02 directory&lt;BR /&gt;and then follow the steps&lt;BR /&gt;mkdir /dev/vg02&lt;BR /&gt;mknod /dev/vg02/group c 64 0x090000 &lt;BR /&gt;pvcreate /dev/dsk/c5t10d0&lt;BR /&gt;vgcreate /dev/vg02 /dev/dsk/c5t10d0</description>
      <pubDate>Tue, 12 Jul 2005 22:25:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912184#M623266</guid>
      <dc:creator>Rajeev  Shukla</dc:creator>
      <dc:date>2005-07-12T22:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: error in creating volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912185#M623267</link>
      <description>hi Joseph,&lt;BR /&gt;&lt;BR /&gt;here is the information as required&lt;BR /&gt;what should i do next?&lt;BR /&gt;&lt;BR /&gt;root@smtp1:/&amp;gt;vgdisplay -v vg02&lt;BR /&gt;--- Volume groups ---&lt;BR /&gt;VG Name                     /dev/vg02&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                      1&lt;BR /&gt;Open LV                     1&lt;BR /&gt;Max PV                      16&lt;BR /&gt;Cur PV                      1&lt;BR /&gt;Act PV                      1&lt;BR /&gt;Max PE per PV               17501&lt;BR /&gt;VGDA                        2&lt;BR /&gt;PE Size (Mbytes)            4&lt;BR /&gt;Total PE                    17499&lt;BR /&gt;Alloc PE                    17476&lt;BR /&gt;Free PE                     23&lt;BR /&gt;Total PVG                   1&lt;BR /&gt;Total Spare PVs             0&lt;BR /&gt;Total Spare PVs in use      0&lt;BR /&gt;&lt;BR /&gt;   --- Logical volumes ---&lt;BR /&gt;   LV Name                     /dev/vg02/lvol1&lt;BR /&gt;   LV Status                   available/syncd&lt;BR /&gt;   LV Size (Mbytes)            69904&lt;BR /&gt;   Current LE                  17476&lt;BR /&gt;   Allocated PE                17476&lt;BR /&gt;   Used PV                     1&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;   --- Physical volumes ---&lt;BR /&gt;   PV Name                     /dev/dsk/c5t10d0&lt;BR /&gt;   PV Status                   available&lt;BR /&gt;   Total PE                    17499&lt;BR /&gt;   Free PE                     23&lt;BR /&gt;   Autoswitch                  On&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;   --- Physical volume groups ---&lt;BR /&gt;   PVG Name                    imail&lt;BR /&gt;   PV Name                     /dev/dsk/c5t10d0&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;root@smtp1:/&amp;gt; ls -ld /dev/vg*&lt;BR /&gt;drwxr-xr-x   2 root       root          1024 Sep  1  2000 /dev/vg00&lt;BR /&gt;drwxrwxrwx   2 root       sys             96 Aug 30  2000 /dev/vg01&lt;BR /&gt;drwxr-xr-x   2 root       sys             96 Jul 13 12:14 /dev/vg02&lt;BR /&gt;</description>
      <pubDate>Tue, 12 Jul 2005 22:30:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912185#M623267</guid>
      <dc:creator>twtandigi.com.my</dc:creator>
      <dc:date>2005-07-12T22:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: error in creating volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912186#M623268</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;i am confused but after going thru the thread, i realise u have created vg02 with minor number 0x090000 and major number 64, correct me if I am wrong.&lt;BR /&gt;&lt;BR /&gt;so, now your problem is how to rename /dev/vg02/lvol1 to /dev/vg02/imail? is that right?&lt;BR /&gt;&lt;BR /&gt;besides this, i notice u have created Physical Volume Groups, imail as well.&lt;BR /&gt;&lt;BR /&gt;regards.</description>
      <pubDate>Tue, 12 Jul 2005 22:56:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912186#M623268</guid>
      <dc:creator>Joseph Loo</dc:creator>
      <dc:date>2005-07-12T22:56:15Z</dc:date>
    </item>
    <item>
      <title>Re: error in creating volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912187#M623269</link>
      <description>yup you got all the facts right.&lt;BR /&gt;that is the problem that i am currently encoutering.&lt;BR /&gt;do you have any idea how to over come it?</description>
      <pubDate>Tue, 12 Jul 2005 23:01:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912187#M623269</guid>
      <dc:creator>twtandigi.com.my</dc:creator>
      <dc:date>2005-07-12T23:01:59Z</dc:date>
    </item>
    <item>
      <title>Re: error in creating volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912188#M623270</link>
      <description>Instead of renaming, you can create another device file with new name having same minor number. See the example below:&lt;BR /&gt;&lt;BR /&gt;I am creating new device file 'sudhi' for /dev/vg00/lvol9&lt;BR /&gt;&lt;BR /&gt;#bdf&lt;BR /&gt;Filesystem          kbytes    used   avail %used Mounted on&lt;BR /&gt;/dev/vg00/lvol3     229376  162736   66184   71% /&lt;BR /&gt;/dev/vg00/lvol1     327680  106360  219648   33% /stand&lt;BR /&gt;/dev/vg00/lvol8    2621440  106432 2495408    4% /var&lt;BR /&gt;/dev/vg00/lvol7    2686976 2017160  664640   75% /usr&lt;BR /&gt;/dev/vg00/lvol4     229376    8688  219032    4% /tmp&lt;BR /&gt;/dev/vg00/lvol6    2523136 1581224  934608   63% /opt&lt;BR /&gt;/dev/vg00/lvol5      32768    8432   24160   26% /home&lt;BR /&gt;/dev/vg00/lvol9     229376    1165  213955    1% /sudhi&lt;BR /&gt;&lt;BR /&gt;#cd /dev/vg00&lt;BR /&gt;&lt;BR /&gt;#mknod sudhi b 64 0x000009   : creating block device&lt;BR /&gt;&lt;BR /&gt;#mknod rsudhi c 64 0x000009  : creating charector device&lt;BR /&gt;&lt;BR /&gt;#umount /sudhi&lt;BR /&gt;&lt;BR /&gt;#mount /dev/vg00/sudhi /sudhi&lt;BR /&gt;&lt;BR /&gt;#bdf&lt;BR /&gt;Filesystem          kbytes    used   avail %used Mounted on&lt;BR /&gt;/dev/vg00/lvol3     229376  162736   66184   71% /&lt;BR /&gt;/dev/vg00/lvol1     327680  106360  219648   33% /stand&lt;BR /&gt;/dev/vg00/lvol8    2621440  106440 2495400    4% /var&lt;BR /&gt;/dev/vg00/lvol7    2686976 2017160  664640   75% /usr&lt;BR /&gt;/dev/vg00/lvol4     229376    8688  219032    4% /tmp&lt;BR /&gt;/dev/vg00/lvol6    2523136 1581224  934608   63% /opt&lt;BR /&gt;/dev/vg00/lvol5      32768    8432   24160   26% /home&lt;BR /&gt;/dev/vg00/sudhi     229376    1165  213955    1% /sudhi&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps&lt;BR /&gt;&lt;BR /&gt;Sudeesh&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 12 Jul 2005 23:25:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912188#M623270</guid>
      <dc:creator>Sudeesh</dc:creator>
      <dc:date>2005-07-12T23:25:18Z</dc:date>
    </item>
    <item>
      <title>Re: error in creating volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912189#M623271</link>
      <description>This how the new files look:&lt;BR /&gt;&lt;BR /&gt;#ll *sudhi&lt;BR /&gt;crw-rw-rw-   1 root       sys         64 0x000009 Jul 13 11:15 rsudhi&lt;BR /&gt;brw-rw-rw-   1 root       sys         64 0x000009 Jul 13 11:14 sudhi&lt;BR /&gt;#ll *lvol9&lt;BR /&gt;brw-r-----   1 root       sys         64 0x000009 Jul 10 12:54 lvol9&lt;BR /&gt;crw-r-----   1 root       sys         64 0x000009 Jul 10 12:54 rlvol9&lt;BR /&gt;&lt;BR /&gt;Sudeesh</description>
      <pubDate>Tue, 12 Jul 2005 23:29:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912189#M623271</guid>
      <dc:creator>Sudeesh</dc:creator>
      <dc:date>2005-07-12T23:29:06Z</dc:date>
    </item>
    <item>
      <title>Re: error in creating volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912190#M623272</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;two ways; either u lvremove the existing logical volume and re-lvcreate but this time naming it imail or u may rename this way:&lt;BR /&gt;&lt;BR /&gt;# mv /dev/vg02/lvol1 /dev/vg02/imail&lt;BR /&gt;# mv /dev/vg02/rlvol1 /dev/vg02/rimail&lt;BR /&gt;&lt;BR /&gt;remember that in both cases, u have to amend /etc/fstab accordingly.&lt;BR /&gt;&lt;BR /&gt;regards.</description>
      <pubDate>Tue, 12 Jul 2005 23:47:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912190#M623272</guid>
      <dc:creator>Joseph Loo</dc:creator>
      <dc:date>2005-07-12T23:47:53Z</dc:date>
    </item>
    <item>
      <title>Re: error in creating volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912191#M623273</link>
      <description>Thank you very much for all the help and advice.</description>
      <pubDate>Tue, 12 Jul 2005 23:58:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912191#M623273</guid>
      <dc:creator>twtandigi.com.my</dc:creator>
      <dc:date>2005-07-12T23:58:59Z</dc:date>
    </item>
    <item>
      <title>Re: error in creating volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912192#M623274</link>
      <description>hi all,&lt;BR /&gt;&lt;BR /&gt;Thank you for all your help and encouragement.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 13 Jul 2005 00:01:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-in-creating-volume-group/m-p/4912192#M623274</guid>
      <dc:creator>twtandigi.com.my</dc:creator>
      <dc:date>2005-07-13T00:01:27Z</dc:date>
    </item>
  </channel>
</rss>

