<?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 set variables in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/how-to-set-variables/m-p/3549228#M70386</link>
    <description>&lt;BR /&gt;I believe this is what you did to to install glib&lt;BR /&gt;&lt;BR /&gt;* untarred glib to /root&lt;BR /&gt;* change directory to /root/glib-2.0.0 &lt;BR /&gt;* did configure and make and make install&lt;BR /&gt;&lt;BR /&gt;if so, then your glib is installed with PREFIX /usr/local whic is default and which also is not in path by default. or did you run configure --prefix=/root/ if so then glib is installed in /root&lt;BR /&gt;&lt;BR /&gt;to avoid this problem there are two methods, either you add /usr/local/lib /usr/local/bin /usr/local/share in search path for binary, libraries and include. or simply recompile glib as follows&lt;BR /&gt;&lt;BR /&gt;* delete existing /root/glib-2.0.0&lt;BR /&gt;* untar glib freshly, it will create in /root/glib-2.0.0&lt;BR /&gt;* change to this directory&lt;BR /&gt;* run, configure --prefix=/usr&lt;BR /&gt;* make&lt;BR /&gt;* make install&lt;BR /&gt;* ldconfig (just to refresh libraries database)&lt;BR /&gt;&lt;BR /&gt;After this try compiling xmms and it should find glib this time&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Gopi&lt;BR /&gt;</description>
    <pubDate>Mon, 23 May 2005 08:13:46 GMT</pubDate>
    <dc:creator>Gopi Sekar</dc:creator>
    <dc:date>2005-05-23T08:13:46Z</dc:date>
    <item>
      <title>how to set variables</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-set-variables/m-p/3549225#M70383</link>
      <description>Hi ! all&lt;BR /&gt;      I am trying to install xmms-1.2.10 .&lt;BR /&gt;&lt;BR /&gt;when I ./configure it , it shows that I have to upgrade my glib version to 1.2.2 . as i have glib-1.2.10.&lt;BR /&gt;&lt;BR /&gt;I downloaded glib-2.0.0 in the /root directory.&lt;BR /&gt;&amp;amp; installed it there in the /root/glib-2.0.0 directory.&lt;BR /&gt;&lt;BR /&gt;Now when i try to install xmms-1.2.10 it shows me the following error&lt;BR /&gt;&lt;BR /&gt;checking for GLIB - version &amp;gt;= 1.2.2... no&lt;BR /&gt;*** The glib-config script installed by GLIB could not be found&lt;BR /&gt;*** If GLIB was installed in PREFIX, make sure PREFIX/bin is in&lt;BR /&gt;*** your path, or set the GLIB_CONFIG environment variable to the&lt;BR /&gt;*** full path to glib-config.&lt;BR /&gt;configure: error: *** GLIB &amp;gt;= 1.2.2 not installed - please install first ***&lt;BR /&gt;&lt;BR /&gt;ANY KIND OF HELP WILL BE APPRECIATED.&lt;BR /&gt; &lt;BR /&gt;THANKS &amp;amp; REGARDS&lt;BR /&gt;&lt;BR /&gt;Shyam Singh Bisht&lt;BR /&gt;</description>
      <pubDate>Sat, 21 May 2005 06:04:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-set-variables/m-p/3549225#M70383</guid>
      <dc:creator>shyam singh bisht</dc:creator>
      <dc:date>2005-05-21T06:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: how to set variables</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-set-variables/m-p/3549226#M70384</link>
      <description>If GLIB is installed in /root/glib-2.0.0, then I guess bin of glib is located in "/root/glib-2.0.0/bin", so, before you run configure of xmms, do the following:&lt;BR /&gt;&lt;BR /&gt;export PATH=$PATH:/root/glib-2.0.0/bin&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Let us know if it works.&lt;BR /&gt;&lt;BR /&gt;Alex.</description>
      <pubDate>Sat, 21 May 2005 06:21:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-set-variables/m-p/3549226#M70384</guid>
      <dc:creator>Alex Lavrov.</dc:creator>
      <dc:date>2005-05-21T06:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: how to set variables</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-set-variables/m-p/3549227#M70385</link>
      <description>Hi ! Alex&lt;BR /&gt;&lt;BR /&gt;Thanks for the reply&lt;BR /&gt;&lt;BR /&gt;I have checked the directory /root/glib-2.0.0&lt;BR /&gt;but there is no bin there.&lt;BR /&gt;&lt;BR /&gt;any other suggetion !&lt;BR /&gt;</description>
      <pubDate>Mon, 23 May 2005 06:18:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-set-variables/m-p/3549227#M70385</guid>
      <dc:creator>shyam singh bisht</dc:creator>
      <dc:date>2005-05-23T06:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: how to set variables</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-set-variables/m-p/3549228#M70386</link>
      <description>&lt;BR /&gt;I believe this is what you did to to install glib&lt;BR /&gt;&lt;BR /&gt;* untarred glib to /root&lt;BR /&gt;* change directory to /root/glib-2.0.0 &lt;BR /&gt;* did configure and make and make install&lt;BR /&gt;&lt;BR /&gt;if so, then your glib is installed with PREFIX /usr/local whic is default and which also is not in path by default. or did you run configure --prefix=/root/ if so then glib is installed in /root&lt;BR /&gt;&lt;BR /&gt;to avoid this problem there are two methods, either you add /usr/local/lib /usr/local/bin /usr/local/share in search path for binary, libraries and include. or simply recompile glib as follows&lt;BR /&gt;&lt;BR /&gt;* delete existing /root/glib-2.0.0&lt;BR /&gt;* untar glib freshly, it will create in /root/glib-2.0.0&lt;BR /&gt;* change to this directory&lt;BR /&gt;* run, configure --prefix=/usr&lt;BR /&gt;* make&lt;BR /&gt;* make install&lt;BR /&gt;* ldconfig (just to refresh libraries database)&lt;BR /&gt;&lt;BR /&gt;After this try compiling xmms and it should find glib this time&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Gopi&lt;BR /&gt;</description>
      <pubDate>Mon, 23 May 2005 08:13:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-set-variables/m-p/3549228#M70386</guid>
      <dc:creator>Gopi Sekar</dc:creator>
      <dc:date>2005-05-23T08:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: how to set variables</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-set-variables/m-p/3549229#M70387</link>
      <description>I think you just opened the tar there and it was installed somewhere else.&lt;BR /&gt;&lt;BR /&gt;To locate the installation:&lt;BR /&gt;updatedb&lt;BR /&gt;locate glib&lt;BR /&gt;&lt;BR /&gt;You will get all the files with glib in them, try to locate the bin directory and set it in PATH variable.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Alex.</description>
      <pubDate>Mon, 23 May 2005 10:12:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-set-variables/m-p/3549229#M70387</guid>
      <dc:creator>Alex Lavrov.</dc:creator>
      <dc:date>2005-05-23T10:12:20Z</dc:date>
    </item>
  </channel>
</rss>

