<?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: vgchange -- no volume groups found in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/vgchange-no-volume-groups-found/m-p/3534312#M17291</link>
    <description>Thanks again Dear Stuart Browne.&lt;BR /&gt;&lt;BR /&gt;plz clear one more thing, the diff b/w the messeges in /var/log/boot.log and dmesg &lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Maaz</description>
    <pubDate>Fri, 29 Apr 2005 14:12:57 GMT</pubDate>
    <dc:creator>Maaz</dc:creator>
    <dc:date>2005-04-29T14:12:57Z</dc:date>
    <item>
      <title>vgchange -- no volume groups found</title>
      <link>https://community.hpe.com/t5/operating-system-linux/vgchange-no-volume-groups-found/m-p/3534306#M17285</link>
      <description>Hello Gurus,&lt;BR /&gt;I created the volume groups to create lvm, and then delete lvm(s) and volume groups. Now I received the "vgchange -- no volume groups found" message at system startup.&lt;BR /&gt;Remounting root filesystem in read-write mode:  [  OK  ]&lt;BR /&gt;Setting up Logical Volume Management: [ OK  ]&lt;BR /&gt;vgchange -- no volume groups found&lt;BR /&gt;&lt;BR /&gt;Activating swap partitions:    [ OK  ]&lt;BR /&gt;Finding module dependencies:   [ OK  ]&lt;BR /&gt;Setting up Logical Volume Management: [ OK  ]&lt;BR /&gt;vgchange -- no volume groups found&lt;BR /&gt;&lt;BR /&gt;What should I do .. so that this message doesnt come/appear &lt;BR /&gt;&lt;BR /&gt;and Althoug i received the above mentioned message during system startup, but when I issue "dmesg |less", or "less /var/log/messages" i didnt find the "vgchange -- no volume groups found" .. why ?&lt;BR /&gt;&lt;BR /&gt;Any Help will be highly appreciated.&lt;BR /&gt;&lt;BR /&gt;Thanks n Regards&lt;BR /&gt;Maaz&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 28 Apr 2005 14:02:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/vgchange-no-volume-groups-found/m-p/3534306#M17285</guid>
      <dc:creator>Maaz</dc:creator>
      <dc:date>2005-04-28T14:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: vgchange -- no volume groups found</title>
      <link>https://community.hpe.com/t5/operating-system-linux/vgchange-no-volume-groups-found/m-p/3534307#M17286</link>
      <description>This is an order issue.&lt;BR /&gt;&lt;BR /&gt;Trying to do the vgchange before the system startup reecognizes that LVM is installed.&lt;BR /&gt;&lt;BR /&gt;Move the vgchange process after the LVM start process.&lt;BR /&gt;</description>
      <pubDate>Thu, 28 Apr 2005 15:43:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/vgchange-no-volume-groups-found/m-p/3534307#M17286</guid>
      <dc:creator>Rick Garland</dc:creator>
      <dc:date>2005-04-28T15:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: vgchange -- no volume groups found</title>
      <link>https://community.hpe.com/t5/operating-system-linux/vgchange-no-volume-groups-found/m-p/3534308#M17287</link>
      <description>strings /etc/lvmtab&lt;BR /&gt;&lt;BR /&gt;get the name of the volume group and try this:&lt;BR /&gt;&lt;BR /&gt;vgchange -a y /dev/vg01&lt;BR /&gt;&lt;BR /&gt;or -n&lt;BR /&gt;&lt;BR /&gt;It should work.&lt;BR /&gt;&lt;BR /&gt;There may be a daemon running for lvm on Linux that must be running before any lvm commands run.&lt;BR /&gt;&lt;BR /&gt;LVM is a features port, not a code port of HP-UX LVM. The later is a proprietary HP product and few ever see the source code.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 28 Apr 2005 17:09:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/vgchange-no-volume-groups-found/m-p/3534308#M17287</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-04-28T17:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: vgchange -- no volume groups found</title>
      <link>https://community.hpe.com/t5/operating-system-linux/vgchange-no-volume-groups-found/m-p/3534309#M17288</link>
      <description>That looks like a RedHat or Fedora boot up.&lt;BR /&gt;&lt;BR /&gt;LVM is initlized about a 3rd of the way through of 'rc.sysinit'.  There's a few lines which look like this:&lt;BR /&gt;&lt;BR /&gt;# LVM initialization&lt;BR /&gt;if [ -f /etc/lvmtab ]; then&lt;BR /&gt;    [ -e /proc/lvm ] || modprobe lvm-mod &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;    if [ -e /proc/lvm -a -x /sbin/vgchange ]; then&lt;BR /&gt;        action $"Setting up Logical Volume Management:" /sbin/vgscan &amp;amp;&amp;amp; /sbin/vgchange -a y&lt;BR /&gt;    fi&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;Simply put, if '/etc/lvmtab' exists, poke LVM stuff.  Otherwise, don't.  So, move '/etc/lvmtab' out of the way if you no longer have any LVM's.</description>
      <pubDate>Thu, 28 Apr 2005 20:40:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/vgchange-no-volume-groups-found/m-p/3534309#M17288</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2005-04-28T20:40:30Z</dc:date>
    </item>
    <item>
      <title>Re: vgchange -- no volume groups found</title>
      <link>https://community.hpe.com/t5/operating-system-linux/vgchange-no-volume-groups-found/m-p/3534310#M17289</link>
      <description>Millions of Thanks Dear Rick Garland, Steven E Protter, Stuart Browne, for the support/reply.&lt;BR /&gt;Yes Dear Stuart Browne u r right this is a RHL system.&lt;BR /&gt;&lt;BR /&gt;one thing still remain ... why 'dmesg' didnt show me the "vgchange -- no volume groups found" I mean all startup messeges could be check via dmesg command.. but why not this message ?&lt;BR /&gt;&lt;BR /&gt;I m highly grateful to u all.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Maaz</description>
      <pubDate>Thu, 28 Apr 2005 21:15:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/vgchange-no-volume-groups-found/m-p/3534310#M17289</guid>
      <dc:creator>Maaz</dc:creator>
      <dc:date>2005-04-28T21:15:38Z</dc:date>
    </item>
    <item>
      <title>Re: vgchange -- no volume groups found</title>
      <link>https://community.hpe.com/t5/operating-system-linux/vgchange-no-volume-groups-found/m-p/3534311#M17290</link>
      <description>That's not quite accurate..&lt;BR /&gt;&lt;BR /&gt;'dmesg' shows kernel logging messages, of which may or may not have a tty to show themselves on.&lt;BR /&gt;&lt;BR /&gt;'vgchange' is a shell-level command which has stdout.  This is why it doesn't show up in 'dmesg', because it executes in user-space, not at the kernel-level.</description>
      <pubDate>Thu, 28 Apr 2005 22:20:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/vgchange-no-volume-groups-found/m-p/3534311#M17290</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2005-04-28T22:20:20Z</dc:date>
    </item>
    <item>
      <title>Re: vgchange -- no volume groups found</title>
      <link>https://community.hpe.com/t5/operating-system-linux/vgchange-no-volume-groups-found/m-p/3534312#M17291</link>
      <description>Thanks again Dear Stuart Browne.&lt;BR /&gt;&lt;BR /&gt;plz clear one more thing, the diff b/w the messeges in /var/log/boot.log and dmesg &lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Maaz</description>
      <pubDate>Fri, 29 Apr 2005 14:12:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/vgchange-no-volume-groups-found/m-p/3534312#M17291</guid>
      <dc:creator>Maaz</dc:creator>
      <dc:date>2005-04-29T14:12:57Z</dc:date>
    </item>
    <item>
      <title>Re: vgchange -- no volume groups found</title>
      <link>https://community.hpe.com/t5/operating-system-linux/vgchange-no-volume-groups-found/m-p/3534313#M17292</link>
      <description>'/var/log/boot.log' on a RH/Fedora system is created by 'syslogd'.&lt;BR /&gt;&lt;BR /&gt;From my '/etc/syslog.conf':&lt;BR /&gt;&lt;BR /&gt;local7.*   /var/log/boot.log&lt;BR /&gt;&lt;BR /&gt;The messages are sent there from a command called 'initlog' (which has it's faculty set in '/etc/initlog.conf'), which gets called from '/etc/init.d/functions' by the startup routines.&lt;BR /&gt;&lt;BR /&gt;On RH/Fedora machines, one of the the last things that gets done from '/etc/rc.d/rc.sysinit' is to dump the content of the 'dmesg' buffer to '/var/log/dmesg', so that the 'dmesg' output from the boot-cycle isn't lost over time.</description>
      <pubDate>Fri, 29 Apr 2005 18:48:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/vgchange-no-volume-groups-found/m-p/3534313#M17292</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2005-04-29T18:48:43Z</dc:date>
    </item>
    <item>
      <title>Re: vgchange -- no volume groups found</title>
      <link>https://community.hpe.com/t5/operating-system-linux/vgchange-no-volume-groups-found/m-p/3534314#M17293</link>
      <description>thank a million for reply.&lt;BR /&gt;&lt;BR /&gt;i just wana know the "nature/type" or the diff b/w the "info" save in /var/log/dmesg, and /var/log/boot.log.&lt;BR /&gt;I mean which "type" of messages saved in /var/log/dmesg, and /var/log/boot.log &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks &lt;BR /&gt;Maaz</description>
      <pubDate>Fri, 29 Apr 2005 23:41:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/vgchange-no-volume-groups-found/m-p/3534314#M17293</guid>
      <dc:creator>Maaz</dc:creator>
      <dc:date>2005-04-29T23:41:40Z</dc:date>
    </item>
    <item>
      <title>Re: vgchange -- no volume groups found</title>
      <link>https://community.hpe.com/t5/operating-system-linux/vgchange-no-volume-groups-found/m-p/3534315#M17294</link>
      <description>As I said before, it has to do with who's spitting the message out.&lt;BR /&gt;&lt;BR /&gt;Daemons, and other user-space launched binaries have the ability to log either directly to the filesystem, or open TTY's, or to 'syslog'.  They can write to their own log files, spit stuff to STDOUT or STDERR, or use the syslog systems to log to a 'facility.level' (i.e. mail.info).  Also note that 'syslogd' is a process which runs a long time after the kernel first starts up.&lt;BR /&gt;&lt;BR /&gt;The kernel isn't so lucky.  The kernel will display things even before there's a filesystems available, possibly before there's any TTY's of any kind, and much before any processes are launched.  So the kernel's output gets logged to the 'dmesg' buffer.</description>
      <pubDate>Sat, 30 Apr 2005 00:43:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/vgchange-no-volume-groups-found/m-p/3534315#M17294</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2005-04-30T00:43:57Z</dc:date>
    </item>
  </channel>
</rss>

