<?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: drop cache file in SUSE 9.0 in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/drop-cache-file-in-suse-9-0/m-p/4661052#M41542</link>
    <description>&amp;gt; Use "ps -e |grep [p]artprobe" to find the process ID of the partprobe process. &lt;BR /&gt;&lt;BR /&gt;Additionally, it may be helpful to run:&lt;BR /&gt;$ ps -ely |grep [p]artprobe&lt;BR /&gt;&lt;BR /&gt;If the first column shows "D", you're stuck waiting on I/O for some reason. Even on a busy system, an ioctl should not take 2 days - something may be amiss here.&lt;BR /&gt;&lt;BR /&gt;Don't mess with cache unless you know why you're doing it, and you have a really good reason to do so, even more so on a production system.</description>
    <pubDate>Wed, 14 Jul 2010 22:23:46 GMT</pubDate>
    <dc:creator>macosta</dc:creator>
    <dc:date>2010-07-14T22:23:46Z</dc:date>
    <item>
      <title>drop cache file in SUSE 9.0</title>
      <link>https://community.hpe.com/t5/operating-system-linux/drop-cache-file-in-suse-9-0/m-p/4661048#M41538</link>
      <description>Dear all,&lt;BR /&gt;we are using SUSE linux 9.0 in our servers. In one of the server we want to clear the drop cache (cache memory free).But we didn't find any drop_caches file inside /proc/sys/vm.&lt;BR /&gt;&lt;BR /&gt;Would somebody help me to do this activity?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;C.Sacthivel</description>
      <pubDate>Wed, 14 Jul 2010 05:41:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/drop-cache-file-in-suse-9-0/m-p/4661048#M41538</guid>
      <dc:creator>sacthivel.C</dc:creator>
      <dc:date>2010-07-14T05:41:12Z</dc:date>
    </item>
    <item>
      <title>Re: drop cache file in SUSE 9.0</title>
      <link>https://community.hpe.com/t5/operating-system-linux/drop-cache-file-in-suse-9-0/m-p/4661049#M41539</link>
      <description>In production systems, there should never be any practical need to drop the caches. The drop_caches file was added in kernel version 2.6.16 to help kernel and storage benchmarking (performance testing).&lt;BR /&gt;&lt;BR /&gt;SuSE Linux 9.0 has an older kernel, so it does not have this feature.&lt;BR /&gt;&lt;BR /&gt;You may think the caches are preventing you from running big applications, but it isn't true. Please read this web page to find a really simple description of how the Linux caches work:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.linuxatemyram.com/" target="_blank"&gt;http://www.linuxatemyram.com/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;MK</description>
      <pubDate>Wed, 14 Jul 2010 07:17:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/drop-cache-file-in-suse-9-0/m-p/4661049#M41539</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2010-07-14T07:17:05Z</dc:date>
    </item>
    <item>
      <title>Re: drop cache file in SUSE 9.0</title>
      <link>https://community.hpe.com/t5/operating-system-linux/drop-cache-file-in-suse-9-0/m-p/4661050#M41540</link>
      <description>Hi MK,&lt;BR /&gt;Thanks for the reply and the link.&lt;BR /&gt;I will explain to you why I want to do this.&lt;BR /&gt;We ran the command "partprobe" after we add one new partition(from SAN box - iscsi).&lt;BR /&gt;After executing the partprobe (without any option),it is running for the past 2 days and it is not possible for me to check whether it is running or it get hung. I tried by killing the process also. But it was not getting killed.As this machine is a production server,the work load is always high.It is not possible for me to come to a conclusion that whether the partprobe take this much of time or whether it is an iscsi issue or storage side issue or OS side issue or resource not available.&lt;BR /&gt;&lt;BR /&gt;Would you help me to come out of this?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;C.Sacthivel&lt;BR /&gt;</description>
      <pubDate>Wed, 14 Jul 2010 08:59:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/drop-cache-file-in-suse-9-0/m-p/4661050#M41540</guid>
      <dc:creator>sacthivel.C</dc:creator>
      <dc:date>2010-07-14T08:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: drop cache file in SUSE 9.0</title>
      <link>https://community.hpe.com/t5/operating-system-linux/drop-cache-file-in-suse-9-0/m-p/4661051#M41541</link>
      <description>&amp;gt; After executing the partprobe (without any option),it is running for the past 2 days and it is not possible for me to check whether it is running or it get hung.&lt;BR /&gt;&lt;BR /&gt;Use "ps -e |grep [p]artprobe" to find the process ID of the partprobe process. Then run "ps -fp &lt;PROCESS id=""&gt;" and look at the TIME column. This indicates the amount of CPU time this process has used so far. If it has been working for 2 days, it should have used a significant amount of CPU time. But if the TIME value is very small (like 00:00:01 or so), the process is probably hung.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; I tried by killing the process also. But it was not getting killed.&lt;BR /&gt;&lt;BR /&gt;If it does not die with "kill -9", then it usually means the process is executing a system call, and the system call is hung inside the kernel code... which is pretty serious. &lt;BR /&gt;&lt;BR /&gt;If you cannot find and fix the root cause of the hang, you might have to reboot the system to clear the hung partprobe process.&lt;BR /&gt;&lt;BR /&gt;In this case, NFS filesystems are probably not an issue (since partprobe deals with actual disk devices, not with filesystems at all), but iSCSI connectivity problems might be. &lt;BR /&gt;&lt;BR /&gt;Is there anything relevant in the syslog? (Check the log files in /var/log.)&lt;BR /&gt;&lt;BR /&gt;Also please run "dmesg" and see if there is somethign that might be relevant to this problem.&lt;BR /&gt;&lt;BR /&gt;Hmm... you say it's a SUSE Linux 9.0? According to Wikipedia it was released in 2003 and uses a 2.4.21 kernel. But iSCSI support was introduced to Linux in 2005, with the 2.6.12 kernel. Something does not add up...&lt;BR /&gt;&lt;BR /&gt;SUSE Linux 9.3 was released in April 2005, and includes a 2.6.11 kernel, so it would be much more reasonable to backport iSCSI support to 9.3, than to 9.0. Still, just by looking at the release dates, I would have serious doubts about the quality and "production-readiness" of the iSCSI support in SUSE Linux 9.x.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://en.wikipedia.org/wiki/Iscsi" target="_blank"&gt;http://en.wikipedia.org/wiki/Iscsi&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://en.wikipedia.org/wiki/OpenSUSE" target="_blank"&gt;http://en.wikipedia.org/wiki/OpenSUSE&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;How new is the iSCSI SAN box? Is SUSE Linux 9.x listed as supported by the SAN box manufacturer? &lt;BR /&gt;&lt;BR /&gt;MK&lt;/PROCESS&gt;</description>
      <pubDate>Wed, 14 Jul 2010 12:11:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/drop-cache-file-in-suse-9-0/m-p/4661051#M41541</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2010-07-14T12:11:51Z</dc:date>
    </item>
    <item>
      <title>Re: drop cache file in SUSE 9.0</title>
      <link>https://community.hpe.com/t5/operating-system-linux/drop-cache-file-in-suse-9-0/m-p/4661052#M41542</link>
      <description>&amp;gt; Use "ps -e |grep [p]artprobe" to find the process ID of the partprobe process. &lt;BR /&gt;&lt;BR /&gt;Additionally, it may be helpful to run:&lt;BR /&gt;$ ps -ely |grep [p]artprobe&lt;BR /&gt;&lt;BR /&gt;If the first column shows "D", you're stuck waiting on I/O for some reason. Even on a busy system, an ioctl should not take 2 days - something may be amiss here.&lt;BR /&gt;&lt;BR /&gt;Don't mess with cache unless you know why you're doing it, and you have a really good reason to do so, even more so on a production system.</description>
      <pubDate>Wed, 14 Jul 2010 22:23:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/drop-cache-file-in-suse-9-0/m-p/4661052#M41542</guid>
      <dc:creator>macosta</dc:creator>
      <dc:date>2010-07-14T22:23:46Z</dc:date>
    </item>
  </channel>
</rss>

