On 9/26/07, <b class="gmail_sendername">alan</b> &lt;<a href="mailto:alan@crabbnet.com">alan@crabbnet.com</a>&gt; wrote:<div><span class="gmail_quote"></span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
I got several errors when I tried running the command, andno luck so far<br>trying to search dpms on google.<br><br>On Fri, 21 Sep 2007 12:42:11 -0500, &quot;Craig Huff&quot; &lt;<a href="mailto:huffcslists@gmail.com">huffcslists@gmail.com
</a>&gt;<br>wrote:<br>&gt; Alan and Jim,<br>&gt;<br>&gt; I don&#39;t recall where I found it, or I&#39;d give you more specifics, but<br>there<br>&gt; was another place that was turning dpms on despite the settings<br>&gt; recommended
<br>&gt; in Jarod&#39;s HOWTO.&nbsp;&nbsp;Try running this on your system:<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # find / -type f -exec grep -l dpms {} \;<br>&gt; and then check the files that are not binaries to see what matched the<br>&gt; &quot;dpms&quot; pattern.
<br>&gt;<br>&gt; You could try googling &quot;dpms&quot;, too.<br>&gt;<br>&gt; Craig.<br></blockquote></div><br>Alan,<br><br>You probably ran the find command as a plain user and got a lot of messages <br>saying something about &quot;Permission denied&quot; or something similar.&nbsp; You can
<br>weed out such cruft like so: (all on one line in case the next line gets wrapped)<br><br>&nbsp;&nbsp;&nbsp; # find / -type f -exec grep -l dpms {} \; 2&gt;&amp;1 | egrep -v &quot;Permission denied&quot;<br><br>If you get more than one kind of complaint, just expand the last part with pipe-
<br>characters and the strings to be ignored, like so:<br><br>&nbsp;&nbsp;&nbsp; # find / -type f -exec grep -l dpms {} \; 2&gt;&amp;1 | egrep -v &quot;Permission denied|Second type|Third type&quot;<br><br>That will get you down to just the list of files that are worth looking into.&nbsp; Then
<br>you&#39;ll need to filter out binaries and such with a command on each of<br>the file names similar to:<br><br>&nbsp;&nbsp;&nbsp; # file /path/to/candidate/file<br><br>and stick with ones that don&#39;t have descriptions mentioning &quot;binary&quot; (kinda hard 
<br>for us mere mortals to read ;-).<br><br>HTH,<br>Craig.<br>