<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Hi Mike,<br>
<br>
You are going to have to do a bit of detective work.&nbsp; The brute force
way might be to just do "find / -type p" as root and see what comes up.<br>
<br>
[root]# find / -type p -exec ls -l {} \;<br>
prw-------&nbsp;&nbsp;&nbsp; 1 root&nbsp;&nbsp;&nbsp;&nbsp; root&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0 Nov 18 15:20 /dev/initctl<br>
...<br>
<br>
There will be more, I don't know how long the find command will take,
but it may take a long time depending on your system.&nbsp; As for which
process is using it, try 'lsof -n" to see what filehandles each process
has open.<br>
<br>
Hope this helps,<br>
Jim<br>
<br>
Mike Jensen wrote:
<blockquote cite="mid:4B7429C4.2060206@afkfoo.com" type="cite">
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
That is VERY helpful.&nbsp; I did not know that previously.<br>
  <br>
But that does beg the question, how can I find out which file
acpi_fakekey is trying to use and does not have the proper permissions
for?<br>
  <br>
Jim Ockers wrote:
  <blockquote cite="mid:4B7411CD.7060905@ockers.net" type="cite">
    <pre wrap="">Hi Mike,

FIFOs are usually unix pipe special files. Here is an example:

[root@agadez tmp]# touch this_is_a_normal_file
[root@agadez tmp]# mknod this_is_a_fifo p
[root@agadez tmp]# ls -al this*
prw-r--r-- 1 root root 0 Feb 11 07:16 this_is_a_fifo
-rw-r--r-- 1 root root 0 Feb 11 07:16 this_is_a_normal_file

As you can see the FIFO has permissions associated with it just like any 
other file. Please check the permissions on your FIFO using ls -al and 
see who has permission to write to it and read from it. Here is an 
example of me changing the permissions on my FIFO file:

[root@agadez tmp]# chmod 666 this_is_a_fifo
[root@agadez tmp]# ls -al this_is_a_fifo
prw-rw-rw- 1 root root 0 Feb 11 07:16 this_is_a_fifo

I hope this helps,
Jim

Mike Jensen wrote:
  </pre>
    <blockquote type="cite">
      <pre wrap="">Been lurking around for a while, but never posted before.  Sorry to have 
my first post be a help request.

I am trying to get the volume up/down/mute key to work on my Lenovo 
T400.  The distro is Debian Squeeze, fully updated, amd64.  My volume 
keys don't seem to work, so I traced down /etc/acpi/volupbtn.sh (and 
others), and noticed that it was using acpi_fakekey....when I run it as 
such in root, there is no problems, it returns fine.  But when I run the 
same thing as a normal user I get: fifo: Permission denied

Let me know if there is any more information I can provide.  I have 
searched around but have not seen this percise problem before.  Thanks 
in advanced.
_______________________________________________
clue-tech mailing list
<a moz-do-not-send="true" class="moz-txt-link-abbreviated"
 href="mailto:clue-tech@cluedenver.org">clue-tech@cluedenver.org</a>
<a moz-do-not-send="true" class="moz-txt-link-freetext"
 href="http://cluedenver.org/mailman/listinfo/clue-tech">http://cluedenver.org/mailman/listinfo/clue-tech</a>
  
    </pre>
    </blockquote>
    <pre wrap=""><!---->
_______________________________________________
clue-tech mailing list
<a moz-do-not-send="true" class="moz-txt-link-abbreviated"
 href="mailto:clue-tech@cluedenver.org">clue-tech@cluedenver.org</a>
<a moz-do-not-send="true" class="moz-txt-link-freetext"
 href="http://cluedenver.org/mailman/listinfo/clue-tech">http://cluedenver.org/mailman/listinfo/clue-tech</a>
  </pre>
  </blockquote>
  <br>
  <pre wrap="">
<hr size="4" width="90%">
_______________________________________________
clue-tech mailing list
<a class="moz-txt-link-abbreviated" href="mailto:clue-tech@cluedenver.org">clue-tech@cluedenver.org</a>
<a class="moz-txt-link-freetext" href="http://cluedenver.org/mailman/listinfo/clue-tech">http://cluedenver.org/mailman/listinfo/clue-tech</a></pre>
</blockquote>
<br>
</body>
</html>