<?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 change kernel parameter linux in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/how-to-change-kernel-parameter-linux/m-p/4046003#M29529</link>
    <description>As Stuart said is also true, I forgot to mention, you've also got "kernel parameters" at boot time such as noacpi or irqpoll and you've got the dynamic system variable type: specifics for kernel/driver reactions such as the scheduler or speedstepping to use (on laptop) and several others, these last ones are changed in /etc/sysctl.conf.</description>
    <pubDate>Mon, 30 Jul 2007 04:15:49 GMT</pubDate>
    <dc:creator>Van den Broeck Tijl</dc:creator>
    <dc:date>2007-07-30T04:15:49Z</dc:date>
    <item>
      <title>how to change kernel parameter linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-change-kernel-parameter-linux/m-p/4045999#M29525</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt; How to change the Kernel parameter in liunx operating systems</description>
      <pubDate>Mon, 30 Jul 2007 02:30:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-change-kernel-parameter-linux/m-p/4045999#M29525</guid>
      <dc:creator>Ping problem</dc:creator>
      <dc:date>2007-07-30T02:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: how to change kernel parameter linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-change-kernel-parameter-linux/m-p/4046000#M29526</link>
      <description>Hey&lt;BR /&gt;&lt;BR /&gt;check the documentation of your distribution.&lt;BR /&gt;I'm sure there will be a chapter about your subject.&lt;BR /&gt;&lt;BR /&gt;Regards</description>
      <pubDate>Mon, 30 Jul 2007 03:20:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-change-kernel-parameter-linux/m-p/4046000#M29526</guid>
      <dc:creator>Oviwan</dc:creator>
      <dc:date>2007-07-30T03:20:10Z</dc:date>
    </item>
    <item>
      <title>Re: how to change kernel parameter linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-change-kernel-parameter-linux/m-p/4046001#M29527</link>
      <description>What parameter are you trying to add/change?&lt;BR /&gt;&lt;BR /&gt;Usually it's done by modifying '/boot/grub/grub.conf' in some manner.</description>
      <pubDate>Mon, 30 Jul 2007 04:10:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-change-kernel-parameter-linux/m-p/4046001#M29527</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2007-07-30T04:10:33Z</dc:date>
    </item>
    <item>
      <title>Re: how to change kernel parameter linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-change-kernel-parameter-linux/m-p/4046002#M29528</link>
      <description>The common place for changing kernel parameters is /etc/sysctl.conf but this is by default a pretty small &amp;amp; not-so-verbose file. So consult your documentation as Oviwan said to see which parameters to add/change.&lt;BR /&gt;&lt;BR /&gt;After updating the file, run sysctl -p to load the changes.</description>
      <pubDate>Mon, 30 Jul 2007 04:10:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-change-kernel-parameter-linux/m-p/4046002#M29528</guid>
      <dc:creator>Van den Broeck Tijl</dc:creator>
      <dc:date>2007-07-30T04:10:44Z</dc:date>
    </item>
    <item>
      <title>Re: how to change kernel parameter linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-change-kernel-parameter-linux/m-p/4046003#M29529</link>
      <description>As Stuart said is also true, I forgot to mention, you've also got "kernel parameters" at boot time such as noacpi or irqpoll and you've got the dynamic system variable type: specifics for kernel/driver reactions such as the scheduler or speedstepping to use (on laptop) and several others, these last ones are changed in /etc/sysctl.conf.</description>
      <pubDate>Mon, 30 Jul 2007 04:15:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-change-kernel-parameter-linux/m-p/4046003#M29529</guid>
      <dc:creator>Van den Broeck Tijl</dc:creator>
      <dc:date>2007-07-30T04:15:49Z</dc:date>
    </item>
    <item>
      <title>Re: how to change kernel parameter linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-change-kernel-parameter-linux/m-p/4046004#M29530</link>
      <description>Many kernel parameters of Linux can be changed while the system is running, using the /proc pseudo-filesystem. The configurable settings are generally in the sub-directories of /proc/sys.&lt;BR /&gt;&lt;BR /&gt;Many Linux distributions have a tool named "sysctl". It is used to manipulate kernel parameters. If you just change some parameter, the change will only last until the system is rebooted. That's why the sysctl tool has a configuration file /etc/sysctl.conf: if you list your kernel parameter changes there, they will automatically take effect when Linux is started.&lt;BR /&gt;&lt;BR /&gt;Information about the various kernel parameters is in the documentation that comes with the kernel source code, in the sub-directory "linux-&lt;VERSION&gt;/Documentation/sysctl/" of the source code package. &lt;BR /&gt;&lt;BR /&gt;In some distributions, this documentation is packaged separately in a package named something like "kernel-doc". If your Linux distribution has a package named like this, install it and read the package description and/or use your distribution's package tools to find out where the documentation files are installed.&lt;BR /&gt;&lt;BR /&gt;MK&lt;/VERSION&gt;</description>
      <pubDate>Mon, 30 Jul 2007 04:37:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-change-kernel-parameter-linux/m-p/4046004#M29530</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2007-07-30T04:37:20Z</dc:date>
    </item>
    <item>
      <title>Re: how to change kernel parameter linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-change-kernel-parameter-linux/m-p/4046005#M29531</link>
      <description>For redhat see the below link.&lt;BR /&gt;&lt;BR /&gt;see "To modify kernel parameters using the /proc file system"&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.akadia.com/services/ora_linux_install_9i.html" target="_blank"&gt;http://www.akadia.com/services/ora_linux_install_9i.html&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://www.puschitz.com/InstallingOracle10g.shtml#CheckingKernelParameters" target="_blank"&gt;http://www.puschitz.com/InstallingOracle10g.shtml#CheckingKernelParameters&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Asif Sharif</description>
      <pubDate>Mon, 30 Jul 2007 05:31:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-change-kernel-parameter-linux/m-p/4046005#M29531</guid>
      <dc:creator>Asif Sharif</dc:creator>
      <dc:date>2007-07-30T05:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: how to change kernel parameter linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-change-kernel-parameter-linux/m-p/4046006#M29532</link>
      <description>vi /etc/sysctl.conf and run &lt;BR /&gt;sysctl -p  to apply the chnages&lt;BR /&gt;sysctl -a  to see the new values&lt;BR /&gt;&lt;BR /&gt;Sysctl keeps the kernel values on reboot. &lt;BR /&gt;&lt;BR /&gt;Other way as listed as an example. But after the reboot is switch to default values zero.&lt;BR /&gt;&lt;BR /&gt;To enable it, run: &lt;BR /&gt;# echo 1 &amp;gt; /proc/sys/kernel/sysrq&lt;BR /&gt;To disable it:  &lt;BR /&gt;# echo 0 &amp;gt; /proc/sys/kernel/sysrq&lt;BR /&gt;</description>
      <pubDate>Mon, 30 Jul 2007 21:24:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-change-kernel-parameter-linux/m-p/4046006#M29532</guid>
      <dc:creator>skt_skt</dc:creator>
      <dc:date>2007-07-30T21:24:34Z</dc:date>
    </item>
  </channel>
</rss>

